diff options
author | Karl Berry <karl@freefriends.org> | 2019-05-11 21:30:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-05-11 21:30:51 +0000 |
commit | 91fbd846a19a9fa95dc49d749ff382dee0610e4a (patch) | |
tree | aa210d6b55cdd5612ecc1159fdb382fd741a1831 /Master | |
parent | bf6e72221f852238d27b67e5d01c6c9401ea4e7f (diff) |
fontools (11may19)
git-svn-id: svn://tug.org/texlive/trunk@51089 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/man/man1/afm2afm.man1.pdf | bin | 27076 -> 27076 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/autoinst.1 | 6 | ||||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/autoinst.man1.pdf | bin | 67851 -> 68123 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/ot2kpx.man1.pdf | bin | 27939 -> 27939 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/support/fontools/README | 2 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/fontools/autoinst | 9 |
6 files changed, 13 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/man/man1/afm2afm.man1.pdf b/Master/texmf-dist/doc/man/man1/afm2afm.man1.pdf Binary files differindex 6ddcdb60f60..0804775c5ab 100644 --- a/Master/texmf-dist/doc/man/man1/afm2afm.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/afm2afm.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/autoinst.1 b/Master/texmf-dist/doc/man/man1/autoinst.1 index 41f97828c3a..4892027d7f7 100644 --- a/Master/texmf-dist/doc/man/man1/autoinst.1 +++ b/Master/texmf-dist/doc/man/man1/autoinst.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "AUTOINST 1" -.TH AUTOINST 1 "2019-04-22" "fontools" "Marc Penninga" +.TH AUTOINST 1 "2019-05-11" "fontools" "Marc Penninga" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -714,6 +714,10 @@ but \s-1WITHOUT ANY WARRANTY\s0; without even the implied warranty of .SH "RECENT CHANGES" .IX Header "RECENT CHANGES" (See the source for the full story, all the way back to 2005.) +.IP "\fI2019\-05\-11\fR" 12 +.IX Item "2019-05-11" +Separate small caps families are now also recognised when the family name +ends with \*(L"\s-1SC\*(R"\s0 (previously \fBautoinst\fR only looked for \*(L"SmallCaps\*(R"). .IP "\fI2019\-04\-22\fR" 12 .IX Item "2019-04-22" Fixed a bug in the generation of swash shapes. diff --git a/Master/texmf-dist/doc/man/man1/autoinst.man1.pdf b/Master/texmf-dist/doc/man/man1/autoinst.man1.pdf Binary files differindex 7b6a5425ef6..56eeb557a3d 100644 --- a/Master/texmf-dist/doc/man/man1/autoinst.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/autoinst.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/ot2kpx.man1.pdf b/Master/texmf-dist/doc/man/man1/ot2kpx.man1.pdf Binary files differindex e3154e52388..58c0503160c 100644 --- a/Master/texmf-dist/doc/man/man1/ot2kpx.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/ot2kpx.man1.pdf diff --git a/Master/texmf-dist/doc/support/fontools/README b/Master/texmf-dist/doc/support/fontools/README index 9326d83099c..62e113bb027 100644 --- a/Master/texmf-dist/doc/support/fontools/README +++ b/Master/texmf-dist/doc/support/fontools/README @@ -69,4 +69,4 @@ the terms of the GNU General Public Licence; see the file GPLv2.txt for the license conditions. - Marc Penninga, 2019/04/22 + Marc Penninga, 2019/05/11 diff --git a/Master/texmf-dist/scripts/fontools/autoinst b/Master/texmf-dist/scripts/fontools/autoinst index 5e5969dec6d..7abd34c9fdd 100755 --- a/Master/texmf-dist/scripts/fontools/autoinst +++ b/Master/texmf-dist/scripts/fontools/autoinst @@ -600,14 +600,14 @@ sub cleanup { = @{$item}{qw(font style shape encoding)}; # make unique copy of fontdata, since we're modifying it; - # otherwise, the mergesmallcaps only works for + # otherwise, the mergesmallcaps option only works for # the first encoding in the list my %font = %$font; $font = $item->{font} = \%font; # handle fonts that put small caps fonts into separate family if ($ARGV{mergesmallcaps}) { - if ($font->{family} =~ s/smallcaps$//xmsi) { + if ($font->{family} =~ s/(?: smallcaps | sc )$//xmsi) { $shape = $item->{shape} = 'smallcaps'; } } @@ -2534,6 +2534,11 @@ GNU General Public License for more details. =over 12 +=item I<2019-05-11> + +Separate small caps families are now also recognised when the family name +ends with "SC" (previously B<autoinst> only looked for "SmallCaps"). + =item I<2019-04-22> Fixed a bug in the generation of swash shapes. |