X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/13f64783b1e5ed763a85912e7129d58791de8340..675221b52b08ff40fa91f38fe2eae05a4ef155bc:/tools/mkfontinfo diff --git a/tools/mkfontinfo b/tools/mkfontinfo index 09cc4d2..85fa914 100755 --- a/tools/mkfontinfo +++ b/tools/mkfontinfo @@ -18,6 +18,12 @@ for my $fontfile (glob 'ttfsupport/*'.$incsuffix) { my ($fontid) = basename($fontfile, $incsuffix); my ($fontmeta, @fontrange) = do $fontfile or next; $fontmeta->{file} = $fontid; + my $year = substr $fontmeta->{date}, 0, 4; + $fontmeta->{description} = join(' ', + (map { "version $_" } $fontmeta->{version} || ()), + $fontmeta->{version} && $fontmeta->{version} =~ /\Q$year/ ? () : + (map { "($_)" } $year || ()), + ); push @fontlist, $fontmeta; $cover{$fontid} = { map { (chr $_ => 1) } @fontrange }; } @@ -35,6 +41,7 @@ if ($chartables) { next if /^[.-]/; next if $_ eq '>' or $_ eq '='; s/^\\//; # escape + length $_ == 1 or next; # multiple characters lost in query push @{ $charlist{table}->{"$tablegroup/$tablename"} }, $_; push @{ $charlist{table}->{$tablegroup} }, $_; } @@ -56,13 +63,16 @@ eval { 1; } or warn "Could not include count for html entities: $@"; -use Unicode::UCD 'charinfo'; -for my $code (0 .. 256**2) { - my $charinfo = charinfo($code) or next; - next if $charinfo->{category} =~ /^[MC]/; # ignore Marks and "other" Control chars - push @{ $charlist{$_}->{ $charinfo->{$_} } }, chr $code - for qw( script category block ); -} +eval { + use Unicode::UCD 'charinfo'; + for my $code (0 .. 256**2) { + my $charinfo = charinfo($code) or next; + next if $charinfo->{category} =~ /^[MC]/; # ignore Marks and "other" Control chars + push @{ $charlist{$_}->{ $charinfo->{$_} } }, chr $code + for qw( script category block ); + } + 1; +} or warn "Could not include unicode groups: $@"; for (values %charlist) { for my $chars (values %{$_}) { @@ -99,7 +109,7 @@ for my $chars (values %{$_}) { $charlist{fonts} = \@fontlist; my %osfonts = ( - win95 => [qw( arial arialuni lucidau verdana times courier )], # microsoft + win95 => [qw( arial arialuni lucidau verdana timesnew couriernew )], # microsoft mac10 => [qw( helvetica lucida times garamond palatino )], # apple android => [qw( roboto noto )], # google oss => [qw( dvsans c2k unifont opensans )],