git clone https://git.lucas.co/Myna.git
add .ttf to fix #14
Myna-NerdFont-alt_l.otf | Bin 2284724 -> 2284724 bytes
Myna-NerdFont.otf | Bin 2284760 -> 2284760 bytes
Myna-alt_l.otf | Bin 200260 -> 200260 bytes
Myna-alt_l.ttf | Bin 0 -> 90320 bytes
Myna.ttf | Bin 0 -> 90316 bytes
build.py | 2 ++
6 files changed, 2 insertions(+)
diff --git a/Myna-NerdFont-alt_l.otf b/Myna-NerdFont-alt_l.otf
index 5bf6a71..5756bcf 100644
Binary files a/Myna-NerdFont-alt_l.otf and b/Myna-NerdFont-alt_l.otf differ
diff --git a/Myna-NerdFont.otf b/Myna-NerdFont.otf
index 2e17537..00c10b8 100644
Binary files a/Myna-NerdFont.otf and b/Myna-NerdFont.otf differ
diff --git a/Myna-alt_l.otf b/Myna-alt_l.otf
index e226350..2b4c511 100644
Binary files a/Myna-alt_l.otf and b/Myna-alt_l.otf differ
diff --git a/Myna-alt_l.ttf b/Myna-alt_l.ttf
new file mode 100644
index 0000000..8f8143d
Binary files /dev/null and b/Myna-alt_l.ttf differ
diff --git a/Myna.ttf b/Myna.ttf
new file mode 100644
index 0000000..17722d4
Binary files /dev/null and b/Myna.ttf differ
diff --git a/build.py b/build.py
index 7787e4c..c9f126e 100644
--- a/build.py
+++ b/build.py
@@ -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()