add .ttf to fix #14

This commit is contained in:
sayyadirfanali
2025-11-13 07:06:21 +05:30
parent 0f39e4fd94
commit 3f698f683a
6 changed files with 2 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Myna-alt_l.ttf Normal file

Binary file not shown.

BIN
Myna.ttf Normal file

Binary file not shown.

View File

@@ -3,6 +3,7 @@ import fontforge
font = fontforge.open("Myna.sfd")
font.generate("Myna.otf")
font.generate("Myna.ttf")
if "alt_l" in font:
font.selection.select("alt_l")
@@ -11,4 +12,5 @@ if "alt_l" in font:
font.paste()
font.generate("Myna-alt_l.otf")
font.generate("Myna-alt_l.ttf")
font.close()