Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/liberationfonts/liberation-fonts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorप्रविण सातपुते <psatpute@redhat.com>2012-10-03 18:50:54 +0400
committerप्रविण सातपुते <psatpute@redhat.com>2012-10-03 18:50:54 +0400
commit70efa453a1489b8a9c5c128d769808e9b409fcd4 (patch)
treecff632f143289c50ab33abf2728584ae5aede111
parent607af724740a2daf868b4d2b731d58bf1f5b46a7 (diff)
Disabled anti-aliasing as per Old Liberation. Added script for patching Liberation Mono
-rw-r--r--ChangeLog4
-rw-r--r--Makefile5
-rw-r--r--TODO1
-rw-r--r--scripts/setisFixedPitch-fonttools.py58
-rw-r--r--src/LiberationMono-Bold.sfd4
-rw-r--r--src/LiberationMono-BoldItalic.sfd31
-rw-r--r--src/LiberationMono-Italic.sfd4
-rw-r--r--src/LiberationMono-Regular.sfd6
-rw-r--r--src/LiberationSans-Bold.sfd6
-rw-r--r--src/LiberationSans-BoldItalic.sfd30
-rw-r--r--src/LiberationSans-Italic.sfd26
-rw-r--r--src/LiberationSans-Regular.sfd6
-rw-r--r--src/LiberationSerif-Bold.sfd4
-rw-r--r--src/LiberationSerif-BoldItalic.sfd31
-rw-r--r--src/LiberationSerif-Italic.sfd30
-rw-r--r--src/LiberationSerif-Regular.sfd6
16 files changed, 157 insertions, 95 deletions
diff --git a/ChangeLog b/ChangeLog
index 29a2efb..842c15d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,9 @@
+* Wed Oct 03 2012 Pravin Satpute <psatpute AT redhat DOT com>
- Resolved "Glyphs with multiple unicode encodings inhibit subsetting" #851790
- Resolved #851791, #854601 and #851825
-- Following GASP table version 1 as per Croscore fonts
+- Following GASP table version as per Liberation old version. (Anti-aliasing disabled)
- Added support for Serbian glyphs for wikipedia #657849
+- In Monospace fonts, isFixedPitch bit set via script for getting it recognized as Monospace in putty.exe
* Fri Jul 06 2012 Pravin Satpute <psatpute AT redhat DOT com>
- Initial version of Liberation fonts based on croscore fonts version 1.21.0
diff --git a/Makefile b/Makefile
index 29b63ad..144ff84 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,7 @@
# 4web: dtto for TTF, WOFF, SVG, and EOT
FONTFORGE = fontforge
+PYTHON = python
FONTLINT = fontlint
# TTF->EOT converters in fallback order
@@ -24,13 +25,14 @@ else
endif
EXPORTSCRIPT = scripts/fontexport.pe
+FONTTOOLSCRIPT = scripts/setisFixedPitch-fonttools.py
SCRIPTS = $(EXPORTSCRIPT) scripts/sfd2ttf.pe scripts/ttf2sfd.pe
MISCFILES = AUTHORS ChangeLog LICENSE README TODO
SRCDIR = src
EXPORTDIR = export
CHECK_PREFIX = check
-VER = 2.00.0
+VER = 2.00.1
NAME = Liberation
VARIANTS = \
Mono-Regular Mono-Bold Mono-Italic Mono-BoldItalic \
@@ -54,6 +56,7 @@ $(EXPORTDIR):
FORMATS = ttf
ttf-dir:: $(SFDFILES)
$(FONTFORGE) -script $(EXPORTSCRIPT) -ttf $^
+ $(PYTHON) $(FONTTOOLSCRIPT) src/LiberationMono-*.ttf
mkdir -p $(DISTPREFIX_TTF)
mv $(addsuffix .ttf,$(basename $^)) $(DISTPREFIX_TTF)
diff --git a/TODO b/TODO
index 4e0e747..efc0177 100644
--- a/TODO
+++ b/TODO
@@ -2,3 +2,4 @@ Here are todo for next release
1) Serbian glyph for wikipedia https://bugzilla.redhat.com/show_bug.cgi?id=657849
- Improving shape of S_BE https://bugzilla.redhat.com/show_bug.cgi?id=657849#c96
2) Liberation Mono not recognizing as Mono in Windows application #861003
+ - presently it is patch, we have to update zero width characters to fixed width
diff --git a/scripts/setisFixedPitch-fonttools.py b/scripts/setisFixedPitch-fonttools.py
new file mode 100644
index 0000000..5bc8f7c
--- /dev/null
+++ b/scripts/setisFixedPitch-fonttools.py
@@ -0,0 +1,58 @@
+#!/usr/bin/env python
+#
+# setisFixedPitch-fonttools.py
+#
+# Copyright (c) 2012 Pravin Satpute <psatpute@redhat.com>
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# This program takes a TTF font and set isFixedPitch bit used to detect font as a Monospace.
+#
+# This script depends on fontTools Python library, available
+# in most packaging systems and sf.net/projects/fonttools/
+#
+# Usage:
+#
+# $ ./setisFixedPitch-fonttools.py FontIn.ttf
+# input font will be overwriten and backup will be created for input font
+
+# Import our system library and fontTools ttLib
+import os, sys
+from fontTools import ttLib
+from fontTools.ttLib.tables import ttProgram
+
+for i in range(1, len(sys.argv)):
+# Open the font file supplied as the first argument on the command line
+ fontfile = sys.argv[i]
+ print fontfile
+ font = ttLib.TTFont(fontfile)
+
+# Print the Post table
+ if font.has_key('post'):
+ if font["post"].isFixedPitch == 0:
+ font["post"].isFixedPitch = 1
+ print "isFixedPitch is now: ", font["post"].isFixedPitch
+ else:
+ print "Post table not found"
+
+# Save the new file with the name of the input file
+ newfont = fontfile[0:-4] + '-fixed' + fontfile[-4:]
+ font.save(newfont)
+ print newfont, "saved."
+
+os.system("mv" + " " + "src/LiberationMono-Regular-fixed.ttf" + " " + "src/LiberationMono-Regular.ttf")
+os.system("mv" + " " + "src/LiberationMono-Italic-fixed.ttf" + " " + "src/LiberationMono-Italic.ttf")
+os.system("mv" + " " + "src/LiberationMono-Bold-fixed.ttf" + " " + "src/LiberationMono-Bold.ttf")
+os.system("mv" + " " + "src/LiberationMono-BoldItalic-fixed.ttf" + " " + "src/LiberationMono-BoldItalic.ttf")
+
+
diff --git a/src/LiberationMono-Bold.sfd b/src/LiberationMono-Bold.sfd
index 90c8464..76d5e96 100644
--- a/src/LiberationMono-Bold.sfd
+++ b/src/LiberationMono-Bold.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277890270
-ModificationTime: 1348655045
+ModificationTime: 1349275460
PfmFamily: 17
TTFWeight: 700
TTFWidth: 5
@@ -3968,7 +3968,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "" "Ascender - Liberation Mono" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Cousine, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Courier New+ISIA. Cousine offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15
+GaspTable: 3 8 2 15 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
diff --git a/src/LiberationMono-BoldItalic.sfd b/src/LiberationMono-BoldItalic.sfd
index 7921c9d..4b48bd9 100644
--- a/src/LiberationMono-BoldItalic.sfd
+++ b/src/LiberationMono-BoldItalic.sfd
@@ -13,14 +13,13 @@ Descent: 410
LayerCount: 2
Layer: 0 1 "Back" 1
Layer: 1 1 "Fore" 0
-NeedsXUIDChange: 1
XUID: [1021 445 290132255 6927612]
FSType: 0
OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277899326
-ModificationTime: 1348730022
+ModificationTime: 1349275546
PfmFamily: 17
TTFWeight: 700
TTFWidth: 5
@@ -3699,7 +3698,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "Bold Italic" "Ascender - Liberation Mono" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Cousine, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Courier New+ISIA. Cousine offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15
+GaspTable: 3 8 2 15 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -127183,7 +127182,7 @@ EndChar
StartChar: S_BE
Encoding: 65653 -1 2391
Width: 1229
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
@@ -127231,15 +127230,15 @@ EndChar
StartChar: S_TE
Encoding: 65654 -1 2392
Width: 1229
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-249 1371 m 5
- 1255 1371 l 5
- 1223 1203 l 5
- 217 1203 l 5
- 249 1371 l 5
+249 1371 m 5,0,-1
+ 1255 1371 l 5,1,-1
+ 1223 1203 l 5,2,-1
+ 217 1203 l 5,3,-1
+ 249 1371 l 5,0,-1
EndSplineSet
Refer: 624 1096 N 1 0 0 1 0 0 2
EndChar
@@ -127247,15 +127246,15 @@ EndChar
StartChar: S_PE
Encoding: 65655 -1 2393
Width: 1229
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-299 1371 m 1
- 1205 1371 l 1
- 1173 1203 l 1
- 267 1203 l 1
- 299 1371 l 1
+299 1371 m 1,0,-1
+ 1205 1371 l 1,1,-1
+ 1173 1203 l 1,2,-1
+ 267 1203 l 1,3,-1
+ 299 1371 l 1,0,-1
EndSplineSet
Refer: 88 117 N 1 0 0 1 0 0 2
EndChar
diff --git a/src/LiberationMono-Italic.sfd b/src/LiberationMono-Italic.sfd
index fd1bf91..be8a4aa 100644
--- a/src/LiberationMono-Italic.sfd
+++ b/src/LiberationMono-Italic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277886966
-ModificationTime: 1348730337
+ModificationTime: 1349275498
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@@ -4111,7 +4111,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "" "Ascender - Liberation Mono" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Cousine, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Courier New+ISIA. Cousine offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15
+GaspTable: 3 8 2 17 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
diff --git a/src/LiberationMono-Regular.sfd b/src/LiberationMono-Regular.sfd
index afaf321..d3718da 100644
--- a/src/LiberationMono-Regular.sfd
+++ b/src/LiberationMono-Regular.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277020711
-ModificationTime: 1348652029
+ModificationTime: 1349275412
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@@ -3933,7 +3933,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "Regular" "Ascender - Liberation Mono" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Cousine, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Courier New+ISIA. Cousine offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15
+GaspTable: 3 8 2 17 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -168714,7 +168714,7 @@ EndChar
StartChar: S_BE
Encoding: 65653 -1 2391
Width: 1229
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
diff --git a/src/LiberationSans-Bold.sfd b/src/LiberationSans-Bold.sfd
index 69a84c1..83ed5da 100644
--- a/src/LiberationSans-Bold.sfd
+++ b/src/LiberationSans-Bold.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277409190
-ModificationTime: 1348651568
+ModificationTime: 1349271436
PfmFamily: 17
TTFWeight: 700
TTFWidth: 5
@@ -3743,7 +3743,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "" "Ascender - Liberation Sans" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial+ISIA. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15
+GaspTable: 3 8 2 10 3 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -189765,7 +189765,7 @@ EndChar
StartChar: S_BE
Encoding: 65828 -1 2586
Width: 1242
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
diff --git a/src/LiberationSans-BoldItalic.sfd b/src/LiberationSans-BoldItalic.sfd
index cad7208..4b77968 100644
--- a/src/LiberationSans-BoldItalic.sfd
+++ b/src/LiberationSans-BoldItalic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277744832
-ModificationTime: 1348662641
+ModificationTime: 1349271530
PfmFamily: 17
TTFWeight: 700
TTFWidth: 5
@@ -3665,7 +3665,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "Bold Italic" "Ascender - Liberation Sans" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial+ISIA. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 2 8 14 65535 15
+GaspTable: 3 8 2 10 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -179661,7 +179661,7 @@ EndChar
StartChar: S_BE
Encoding: 65828 -1 2586
Width: 1242
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
@@ -179709,15 +179709,15 @@ EndChar
StartChar: S_TE
Encoding: 65829 -1 2587
Width: 1821
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-1763 1203 m 5
- 297 1203 l 5
- 330 1371 l 5
- 1800 1371 l 5
- 1763 1203 l 5
+1763 1203 m 5,0,-1
+ 297 1203 l 5,1,-1
+ 330 1371 l 5,2,-1
+ 1800 1371 l 5,3,-1
+ 1763 1203 l 5,0,-1
EndSplineSet
Refer: 621 1096 N 1 0 0 1 0 0 2
EndChar
@@ -179725,15 +179725,15 @@ EndChar
StartChar: S_PE
Encoding: 65830 -1 2588
Width: 1251
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-1203 1203 m 1
- 284 1203 l 1
- 317 1371 l 1
- 1240 1371 l 1
- 1203 1203 l 1
+1203 1203 m 1,0,-1
+ 284 1203 l 1,1,-1
+ 317 1371 l 1,2,-1
+ 1240 1371 l 1,3,-1
+ 1203 1203 l 1,0,-1
EndSplineSet
Refer: 88 117 N 1 0 0 1 0 0 2
EndChar
diff --git a/src/LiberationSans-Italic.sfd b/src/LiberationSans-Italic.sfd
index e07274c..d7b432f 100644
--- a/src/LiberationSans-Italic.sfd
+++ b/src/LiberationSans-Italic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277743413
-ModificationTime: 1348660701
+ModificationTime: 1349271481
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@@ -3779,7 +3779,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "" "Ascender - Liberation Sans" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial+ISIA. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15
+GaspTable: 3 8 2 17 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -184491,11 +184491,11 @@ Flags: W
LayerCount: 2
Fore
SplineSet
-287 1239 m 5
- 312 1369 l 5
- 1684 1369 l 5
- 1659 1239 l 5
- 287 1239 l 5
+287 1239 m 5,0,-1
+ 312 1369 l 5,1,-1
+ 1684 1369 l 5,2,-1
+ 1659 1239 l 5,3,-1
+ 287 1239 l 5,0,-1
EndSplineSet
Refer: 621 1096 N 1 0 0 1 0 0 2
EndChar
@@ -184503,15 +184503,15 @@ EndChar
StartChar: S_PE
Encoding: 65830 -1 2588
Width: 1139
-Flags: HWO
+Flags: W
LayerCount: 2
Fore
SplineSet
-307 1239 m 1
- 332 1369 l 1
- 1094 1369 l 1
- 1069 1239 l 1
- 307 1239 l 1
+307 1239 m 1,0,-1
+ 332 1369 l 1,1,-1
+ 1094 1369 l 1,2,-1
+ 1069 1239 l 1,3,-1
+ 307 1239 l 1,0,-1
EndSplineSet
Refer: 88 117 N 1 0 0 1 0 0 2
EndChar
diff --git a/src/LiberationSans-Regular.sfd b/src/LiberationSans-Regular.sfd
index ade6af6..53259a9 100644
--- a/src/LiberationSans-Regular.sfd
+++ b/src/LiberationSans-Regular.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1276856602
-ModificationTime: 1348739631
+ModificationTime: 1349271145
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@@ -3501,14 +3501,14 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "Regular" "Ascender - Liberation Sans" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial+ISIA. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 8 14 14 15 65535 15 1
+GaspTable: 3 8 2 17 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
DisplaySize: -36
AntiAlias: 1
FitToEm: 1
-WinInfo: 65541 21 14
+WinInfo: 63 21 14
BeginPrivate: 0
EndPrivate
AnchorClass2: "Anchor-0" "'mark' Mark Positioning in Hebrew lookup 1 subtable" "Anchor-1" "'mark' Mark Positioning in Hebrew lookup 3 subtable" "Anchor-2" "'mark' Mark Positioning in Hebrew lookup 4 subtable" "Anchor-3" "'mark' Mark Positioning in Hebrew lookup 5 subtable" "Anchor-4" "'mark' Mark Positioning in Hebrew lookup 5 subtable" "Anchor-5" "'mark' Mark Positioning in Hebrew lookup 6 subtable" "Anchor-6" "'mark' Mark Positioning in Hebrew lookup 6 subtable" "Anchor-7" "'mark' Mark Positioning in Hebrew lookup 11 subtable" "Anchor-8" "'mark' Mark Positioning in Hebrew lookup 12 subtable" "Anchor-9" "'mark' Mark Positioning in Hebrew lookup 13 subtable" "Anchor-10" "Mark to base attachment lookup 19 subtable" "Anchor-11" "Mark to base attachment lookup 20 subtable" "Anchor-12" "Mark to base attachment lookup 21 subtable" "Anchor-13" "Mark to base attachment lookup 22 subtable"
diff --git a/src/LiberationSerif-Bold.sfd b/src/LiberationSerif-Bold.sfd
index 8d0e8c8..97bb76b 100644
--- a/src/LiberationSerif-Bold.sfd
+++ b/src/LiberationSerif-Bold.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1123398000
-ModificationTime: 1348654954
+ModificationTime: 1349275041
PfmFamily: 17
TTFWeight: 700
TTFWidth: 5
@@ -3474,7 +3474,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "" "Ascender - Liberation Serif" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman+ISIA. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 2 8 14 65535 15
+GaspTable: 3 8 2 13 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
diff --git a/src/LiberationSerif-BoldItalic.sfd b/src/LiberationSerif-BoldItalic.sfd
index 4a20109..c33e4c3 100644
--- a/src/LiberationSerif-BoldItalic.sfd
+++ b/src/LiberationSerif-BoldItalic.sfd
@@ -13,14 +13,13 @@ Descent: 410
LayerCount: 2
Layer: 0 1 "Back" 1
Layer: 1 1 "Fore" 0
-NeedsXUIDChange: 1
XUID: [1021 445 290132255 4198436]
FSType: 0
OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1123398000
-ModificationTime: 1348727522
+ModificationTime: 1349275153
PfmFamily: 17
TTFWeight: 700
TTFWidth: 5
@@ -3894,7 +3893,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "Bold Italic" "Ascender - Liberation Serif" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman+ISIA. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 2 8 14 65535 15
+GaspTable: 3 8 2 17 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -191423,7 +191422,7 @@ EndChar
StartChar: S_BE
Encoding: 65815 -1 2575
Width: 1063
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
@@ -191482,15 +191481,15 @@ EndChar
StartChar: S_TE
Encoding: 65816 -1 2576
Width: 1706
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-229 1151 m 5
- 255 1301 l 5
- 1693 1301 l 5
- 1667 1151 l 5
- 229 1151 l 5
+229 1151 m 5,0,-1
+ 255 1301 l 5,1,-1
+ 1693 1301 l 5,2,-1
+ 1667 1151 l 5,3,-1
+ 229 1151 l 5,0,-1
EndSplineSet
Refer: 623 1096 N 1 0 0 1 0 0 2
EndChar
@@ -191498,15 +191497,15 @@ EndChar
StartChar: S_PE
Encoding: 65817 -1 2577
Width: 1139
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-229 1151 m 1
- 255 1301 l 1
- 1113 1301 l 1
- 1087 1151 l 1
- 229 1151 l 1
+229 1151 m 1,0,-1
+ 255 1301 l 1,1,-1
+ 1113 1301 l 1,2,-1
+ 1087 1151 l 1,3,-1
+ 229 1151 l 1,0,-1
EndSplineSet
Refer: 88 117 N 1 0 0 1 0 0 2
EndChar
diff --git a/src/LiberationSerif-Italic.sfd b/src/LiberationSerif-Italic.sfd
index f2fbdfe..e6a8322 100644
--- a/src/LiberationSerif-Italic.sfd
+++ b/src/LiberationSerif-Italic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1123398000
-ModificationTime: 1348727064
+ModificationTime: 1349275094
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@@ -3779,7 +3779,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "" "Ascender - Liberation Serif" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman+ISIA. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 2 8 14 65535 15
+GaspTable: 3 8 2 20 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -189911,7 +189911,7 @@ EndChar
StartChar: S_BE
Encoding: 65815 -1 2580
Width: 965
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
@@ -189973,15 +189973,15 @@ EndChar
StartChar: S_TE
Encoding: 65816 -1 2581
Width: 1546
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-298 1161 m 5
- 317 1270 l 5
- 1515 1270 l 5
- 1496 1161 l 5
- 298 1161 l 5
+298 1161 m 5,0,-1
+ 317 1270 l 5,1,-1
+ 1515 1270 l 5,2,-1
+ 1496 1161 l 5,3,-1
+ 298 1161 l 5,0,-1
EndSplineSet
Refer: 625 1096 N 1 0 0 1 0 0 2
EndChar
@@ -189989,15 +189989,15 @@ EndChar
StartChar: S_PE
Encoding: 65817 -1 2582
Width: 1024
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet
-268 1161 m 1
- 287 1270 l 1
- 1005 1270 l 5
- 986 1161 l 5
- 268 1161 l 1
+268 1161 m 1,0,-1
+ 287 1270 l 1,1,-1
+ 1005 1270 l 5,2,-1
+ 986 1161 l 5,3,-1
+ 268 1161 l 1,0,-1
EndSplineSet
Refer: 88 117 N 1 0 0 1 0 0 2
EndChar
diff --git a/src/LiberationSerif-Regular.sfd b/src/LiberationSerif-Regular.sfd
index e217111..aedab40 100644
--- a/src/LiberationSerif-Regular.sfd
+++ b/src/LiberationSerif-Regular.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1277108302
-ModificationTime: 1348653511
+ModificationTime: 1349275292
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@@ -3521,7 +3521,7 @@ ShortTable: maxp 16
1
EndShort
LangName: 1033 "" "" "Regular" "Ascender - Liberation Serif" "" "Version 2.00.0" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Tinos, which was designed by Steve Matteson as an innovative, refreshing serif design that is metrically compatible with Times New Roman+ISIA. Tinos offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL"
-GaspTable: 3 10 14 16 15 65535 15
+GaspTable: 3 10 2 17 1 65535 3 0
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
@@ -210262,7 +210262,7 @@ EndChar
StartChar: S_BE
Encoding: 65815 -1 2574
Width: 965
-Flags: HW
+Flags: W
LayerCount: 2
Fore
SplineSet