diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..46bd27b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +bak/* +!bak/.gitkeep +work/ diff --git a/bak/.gitkeep b/bak/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/build/HackGen-Bold.ttf b/build/HackGen-Bold.ttf index abb87aa..8b781da 100644 Binary files a/build/HackGen-Bold.ttf and b/build/HackGen-Bold.ttf differ diff --git a/build/HackGen-BoldOblique.ttf b/build/HackGen-BoldOblique.ttf index a4308af..47e7093 100644 Binary files a/build/HackGen-BoldOblique.ttf and b/build/HackGen-BoldOblique.ttf differ diff --git a/build/HackGen-Oblique.ttf b/build/HackGen-Oblique.ttf index 25604a3..ac33c27 100644 Binary files a/build/HackGen-Oblique.ttf and b/build/HackGen-Oblique.ttf differ diff --git a/build/HackGen-Regular.ttf b/build/HackGen-Regular.ttf index 4a33d0b..0d001d4 100644 Binary files a/build/HackGen-Regular.ttf and b/build/HackGen-Regular.ttf differ diff --git a/hackgen_generator.sh b/hackgen_generator.sh old mode 100644 new mode 100755 index 0758516..1709ed4 --- a/hackgen_generator.sh +++ b/hackgen_generator.sh @@ -676,10 +676,12 @@ while (i < SizeOf(fontstyle_list)) # Save HackGen if (fontfamilysuffix != "") Print("Save " + fontfamily + fontfamilysuffix + "-" + fontstyle_list[i] + ".ttf") - Generate(fontfamily + fontfamilysuffix + "-" + fontstyle_list[i] + ".ttf", "", 0x84) + #Generate(fontfamily + fontfamilysuffix + "-" + fontstyle_list[i] + ".ttf", "", 0x84) + Generate(fontfamily + fontfamilysuffix + "-" + fontstyle_list[i] + ".ttf", "", 4) else Print("Save " + fontfamily + "-" + fontstyle_list[i] + ".ttf") - Generate(fontfamily + "-" + fontstyle_list[i] + ".ttf", "", 0x84) + #Generate(fontfamily + "-" + fontstyle_list[i] + ".ttf", "", 0x84) + Generate(fontfamily + "-" + fontstyle_list[i] + ".ttf", "", 4) endif Close() @@ -992,7 +994,8 @@ endif # Save HackGen Discord Print("Save " + inputfamily + familysuffix + "-" + inputstyle + ".ttf") -Generate(inputfamily + familysuffix + "-" + inputstyle + ".ttf", "", 0x84) +#Generate(inputfamily + familysuffix + "-" + inputstyle + ".ttf", "", 0x84) +Generate(inputfamily + familysuffix + "-" + inputstyle + ".ttf", "", 4) Close() Quit() @@ -1061,7 +1064,8 @@ RoundToInt() RemoveOverlap() RoundToInt() -Generate(output_family + "-" + output_style + ".ttf", "", 0x84) +#Generate(output_family + "-" + output_style + ".ttf", "", 0x84) +Generate(output_family + "-" + output_style + ".ttf", "", 4) Close() i += 1 diff --git a/make_hackgen.sh b/make_hackgen.sh old mode 100644 new mode 100755 diff --git a/os2_patch.sh b/os2_patch.sh old mode 100644 new mode 100755 index d0454f4..ff76f86 --- a/os2_patch.sh +++ b/os2_patch.sh @@ -31,9 +31,9 @@ for P in ${BASE_DIR}/HackGen*.ttf; do ttx -m "${P}_orig" "${P%%.ttf}.ttx" if [ $? -eq 0 ]; then - mv "$P" "${BASE_DIR}/build" - mv "${P}_orig" "${BASE_DIR}/bak" - mv "${P%%.ttf}.ttx" "${BASE_DIR}/bak" + mv "$P" "${BASE_DIR}/build/" + mv "${P}_orig" "${BASE_DIR}/bak/" + mv "${P%%.ttf}.ttx" "${BASE_DIR}/bak/" rm "${P%%.ttf}.ttx.bak" fi done