Skip to content

Commit

Permalink
fix glyph name prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoHao committed Aug 2, 2021
1 parent 66d234d commit 8bdd5f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@


class Config:
version = "1.0.0"
fontRevision = 1 + 0x0000 / 0x10000
version = "1.0.1"
fontRevision = 1 + 0x0001 / 0x10000
vendor = "Nowar Typeface"
vendorId = "NOWR"
vendorUrl = "https://github.com/nowar-fonts"
Expand Down Expand Up @@ -1004,7 +1004,7 @@ def powerset(lst): return reduce(lambda result, x: result +
makefile["rule"][f"build/noto/{GenerateFilename(dep['Latin'])}.otz"] = {
"depend": [f"build/noto/{GenerateFilename(dep['Latin'])}.otf"],
"command": [
"otfccdump --glyph-name-prefix roman --ignore-hints $< --no-bom | zstd -o $@ --force",
"otfccdump --glyph-name-prefix latn --ignore-hints $< --no-bom | zstd -o $@ --force",
]
}
notoInstance = [['wght', AxisMapNotoWgth(dep['Latin']['weight'])],
Expand All @@ -1021,7 +1021,7 @@ def powerset(lst): return reduce(lambda result, x: result +
makefile["rule"][f"build/noto/{GenerateFilename(dep['Numeral'])}.otz"] = {
"depend": [f"build/noto/{GenerateFilename(dep['Numeral'])}.otf"],
"command": [
"otfccdump --glyph-name-prefix roman --ignore-hints $< --no-bom | zstd -o $@ --force",
"otfccdump --glyph-name-prefix latn --ignore-hints $< --no-bom | zstd -o $@ --force",
]
}
notoInstance = [['wght', AxisMapNotoWgth(dep['Numeral']['weight'])],
Expand Down

0 comments on commit 8bdd5f9

Please sign in to comment.