Skip to content

Commit 8ea42c6

Browse files
committed
fix #15
1 parent a6fc160 commit 8ea42c6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

cica.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
DIST = './dist'
2323
LICENSE = open('./LICENSE.txt').read()
2424
COPYRIGHT = open('./COPYRIGHT.txt').read()
25-
VERSION = '2.0.1'
25+
VERSION = '2.0.2'
2626

2727
fonts = [
2828
{
@@ -186,12 +186,12 @@ def set_os2_values(_font, _info):
186186
_font.os2_windescent_add = 0
187187
_font.os2_typoascent = 693
188188
_font.os2_typoascent_add = 0
189-
_font.os2_typodescent = -165
189+
_font.os2_typodescent = -141
190190
_font.os2_typodescent_add = 0
191-
_font.os2_typolinegap = 0
191+
_font.os2_typolinegap = 49
192192
_font.hhea_ascent = ASCENT
193193
_font.hhea_ascent_add = 0
194-
_font.hhea_descent = DESCENT
194+
_font.hhea_descent = -DESCENT
195195
_font.hhea_descent_add = 0
196196
_font.hhea_linegap = 0
197197
_font.os2_panose = (2, 11, weight / 100, 9, 2, 2, 3, 2, 2, 7)

0 commit comments

Comments
 (0)