forked from fonttools/fontbakery
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New designspace checks added to Universal Profile
- com.google.fonts/check/designspace_has_sources: "Check that all sources in a designspace can be loaded successfully." - com.google.fonts/check/designspace_has_default_master: "Check that a default master is defined." - com.google.fonts/check/designspace_has_consistent_glyphset: "Check that non-default masters do not contain glyphs not found in the default master." - com.google.fonts/check/designspace_has_consistent_codepoints: "Check that Unicode assignments are consistent between masters." (Follow-up to PR fonttools#3168)
- Loading branch information
1 parent
be6c042
commit 1bf1b93
Showing
18 changed files
with
376 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>ascender</key> | ||
<integer>800</integer> | ||
<key>capHeight</key> | ||
<integer>700</integer> | ||
<key>descender</key> | ||
<integer>-200</integer> | ||
<key>openTypeHeadCreated</key> | ||
<string>2021/02/05 10:10:29</string> | ||
<key>postscriptBlueValues</key> | ||
<array> | ||
<real>-16.0</real> | ||
<real>0.0</real> | ||
<real>500.0</real> | ||
<real>516.0</real> | ||
<real>700.0</real> | ||
<real>716.0</real> | ||
<real>800.0</real> | ||
<real>816.0</real> | ||
</array> | ||
<key>postscriptOtherBlues</key> | ||
<array> | ||
<real>-216.0</real> | ||
<real>-200.0</real> | ||
</array> | ||
<key>styleName</key> | ||
<string>Regular</string> | ||
<key>unitsPerEm</key> | ||
<integer>1000</integer> | ||
<key>versionMajor</key> | ||
<integer>1</integer> | ||
<key>versionMinor</key> | ||
<integer>0</integer> | ||
<key>xHeight</key> | ||
<integer>500</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<glyph name="A" format="2"> | ||
<advance width="888"/> | ||
<unicode hex="0041"/> | ||
<outline> | ||
<contour> | ||
<point x="694" y="-8" type="line"/> | ||
<point x="883" y="-8" type="line"/> | ||
<point x="549" y="728" type="line"/> | ||
<point x="339" y="728" type="line"/> | ||
<point x="5" y="-8" type="line"/> | ||
<point x="184" y="-8" type="line"/> | ||
<point x="281" y="207" type="line"/> | ||
<point x="596" y="207" type="line"/> | ||
</contour> | ||
<contour> | ||
<point x="319" y="343" type="line"/> | ||
<point x="439" y="600" type="line"/> | ||
<point x="558" y="343" type="line"/> | ||
</contour> | ||
</outline> | ||
</glyph> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<glyph name="B" format="2"> | ||
<advance width="600"/> | ||
<unicode hex="0042"/> | ||
<outline> | ||
<contour> | ||
<point x="573" y="252" type="line"/> | ||
<point x="809" y="524" type="line"/> | ||
<point x="549" y="728" type="line"/> | ||
<point x="95" y="728" type="line"/> | ||
<point x="63" y="-8" type="line"/> | ||
<point x="281" y="-8" type="line"/> | ||
<point x="399" y="163" type="line"/> | ||
<point x="728" y="-62" type="line"/> | ||
</contour> | ||
<contour> | ||
<point x="281" y="343" type="line"/> | ||
<point x="291" y="600" type="line"/> | ||
<point x="558" y="504" type="line"/> | ||
</contour> | ||
</outline> | ||
</glyph> |
10 changes: 10 additions & 0 deletions
10
data/test/stupidfont/Stupid Font Bold.ufo/glyphs/contents.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>A</key> | ||
<string>A_.glif</string> | ||
<key>B</key> | ||
<string>B_.glif</string> | ||
</dict> | ||
</plist> |
10 changes: 10 additions & 0 deletions
10
data/test/stupidfont/Stupid Font Bold.ufo/layercontents.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<array> | ||
<array> | ||
<string>public.default</string> | ||
<string>glyphs</string> | ||
</array> | ||
</array> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.schriftgestaltung.disablesAutomaticAlignment</key> | ||
<false/> | ||
<key>com.schriftgestaltung.fontMasterID</key> | ||
<string>m01</string> | ||
<key>com.schriftgestaltung.glyphOrder</key> | ||
<false/> | ||
<key>com.schriftgestaltung.useNiceNames</key> | ||
<true/> | ||
<key>public.glyphOrder</key> | ||
<array> | ||
<string>A</string> | ||
<string>B</string> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>creator</key> | ||
<string>com.schriftgestaltung.GlyphsUFOExport</string> | ||
<key>formatVersion</key> | ||
<integer>3</integer> | ||
</dict> | ||
</plist> |
40 changes: 40 additions & 0 deletions
40
data/test/stupidfont/Stupid Font Regular.ufo/fontinfo.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>ascender</key> | ||
<integer>800</integer> | ||
<key>capHeight</key> | ||
<integer>700</integer> | ||
<key>descender</key> | ||
<integer>-200</integer> | ||
<key>openTypeHeadCreated</key> | ||
<string>2021/02/05 10:10:29</string> | ||
<key>postscriptBlueValues</key> | ||
<array> | ||
<real>-16.0</real> | ||
<real>0.0</real> | ||
<real>500.0</real> | ||
<real>516.0</real> | ||
<real>700.0</real> | ||
<real>716.0</real> | ||
<real>800.0</real> | ||
<real>816.0</real> | ||
</array> | ||
<key>postscriptOtherBlues</key> | ||
<array> | ||
<real>-216.0</real> | ||
<real>-200.0</real> | ||
</array> | ||
<key>styleName</key> | ||
<string>Regular</string> | ||
<key>unitsPerEm</key> | ||
<integer>1000</integer> | ||
<key>versionMajor</key> | ||
<integer>1</integer> | ||
<key>versionMinor</key> | ||
<integer>0</integer> | ||
<key>xHeight</key> | ||
<integer>500</integer> | ||
</dict> | ||
</plist> |
22 changes: 22 additions & 0 deletions
22
data/test/stupidfont/Stupid Font Regular.ufo/glyphs/A_.glif
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<glyph name="A" format="2"> | ||
<advance width="600"/> | ||
<unicode hex="0042"/> | ||
<outline> | ||
<contour> | ||
<point x="641" y="0" type="line"/> | ||
<point x="751" y="0" type="line"/> | ||
<point x="433" y="700" type="line"/> | ||
<point x="323" y="700" type="line"/> | ||
<point x="5" y="0" type="line"/> | ||
<point x="115" y="0" type="line"/> | ||
<point x="207.67429" y="204" type="line"/> | ||
<point x="548.32571" y="204" type="line"/> | ||
</contour> | ||
<contour> | ||
<point x="244.01714" y="284" type="line"/> | ||
<point x="378" y="578.93082" type="line"/> | ||
<point x="511.98286" y="284" type="line"/> | ||
</contour> | ||
</outline> | ||
</glyph> |
8 changes: 8 additions & 0 deletions
8
data/test/stupidfont/Stupid Font Regular.ufo/glyphs/contents.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>A</key> | ||
<string>A_.glif</string> | ||
</dict> | ||
</plist> |
10 changes: 10 additions & 0 deletions
10
data/test/stupidfont/Stupid Font Regular.ufo/layercontents.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<array> | ||
<array> | ||
<string>public.default</string> | ||
<string>glyphs</string> | ||
</array> | ||
</array> | ||
</plist> |
Oops, something went wrong.