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 /Build | |
parent | bf6e72221f852238d27b67e5d01c6c9401ea4e7f (diff) |
fontools (11may19)
git-svn-id: svn://tug.org/texlive/trunk@51089 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/fontools/autoinst | 9 | ||||
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/fontools/autoinst b/Build/source/texk/texlive/linked_scripts/fontools/autoinst index 5e5969dec6d..7abd34c9fdd 100755 --- a/Build/source/texk/texlive/linked_scripts/fontools/autoinst +++ b/Build/source/texk/texlive/linked_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. diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl index 8865db2920f..82a96d4b020 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl @@ -1,12 +1,12 @@ #!/usr/bin/env perl -# $Id: tlmgr.pl 50796 2019-04-05 22:43:08Z karl $ +# $Id: tlmgr.pl 51076 2019-05-10 22:23:09Z karl $ # # Copyright 2008-2019 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. -my $svnrev = '$Revision: 50796 $'; -my $datrev = '$Date: 2019-04-06 00:43:08 +0200 (Sat, 06 Apr 2019) $'; +my $svnrev = '$Revision: 51076 $'; +my $datrev = '$Date: 2019-05-11 00:23:09 +0200 (Sat, 11 May 2019) $'; my $tlmgrrevision; my $tlmgrversion; my $prg; @@ -9798,7 +9798,7 @@ This script and its documentation were written for the TeX Live distribution (L<https://tug.org/texlive>) and both are licensed under the GNU General Public License Version 2 or later. -$Id: tlmgr.pl 50796 2019-04-05 22:43:08Z karl $ +$Id: tlmgr.pl 51076 2019-05-10 22:23:09Z karl $ =cut # test HTML version: pod2html --cachedir=/tmp tlmgr.pl >/tmp/tlmgr.html |