Adds 'Version ' prefix to nameID 5 version string, per MS OT spec (#140)
This commit is contained in:
parent
f598621096
commit
3488601548
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ def updateFontVersion(font, dummy=False):
|
|||
font.info.woffMajorVersion = versionMajor
|
||||
font.info.woffMinorVersion = versionMinor
|
||||
font.info.year = now.year
|
||||
font.info.openTypeNameVersion = "%d.%03d;git-%s" % (
|
||||
font.info.openTypeNameVersion = "Version %d.%03d;git-%s" % (
|
||||
versionMajor, versionMinor, buildtag)
|
||||
font.info.openTypeNameUniqueID = "%s %s:%d:%s" % (
|
||||
font.info.familyName, font.info.styleName, now.year, buildtag)
|
||||
|
|
|
|||
Reference in a new issue