From 0705af3c7902e4d5b99dece33dd5899f7960b3c2 Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Fri, 26 Jan 2018 21:36:47 -0500 Subject: [PATCH] modified build-ttf.sh script to replace -I flag and remove -n flag (adds ttfautohint metadata back to the name ID 5 record), another attempt to address hinting issue in #377 --- build-ttf.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-ttf.sh b/build-ttf.sh index 5568060f5..6d42ccb01 100755 --- a/build-ttf.sh +++ b/build-ttf.sh @@ -169,7 +169,7 @@ echo " " mkdir master_ttf/hinted # Hack-Regular.ttf -if ! "$TTFAH" -l 6 -r 50 -x 10 -H 181 -D latn -f latn -w G -W -t -X "" -n -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Regular-TA.txt" "master_ttf/Hack-Regular.ttf" "master_ttf/hinted/Hack-Regular.ttf" +if ! "$TTFAH" -l 6 -r 50 -x 10 -H 181 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Regular-TA.txt" "master_ttf/Hack-Regular.ttf" "master_ttf/hinted/Hack-Regular.ttf" then echo "Unable to execute ttfautohint on the Hack-Regular variant set. Build canceled." 1>&2 exit 1 @@ -177,7 +177,7 @@ fi echo "master_ttf/Hack-Regular.ttf - successful hinting with ttfautohint" # Hack-Bold.ttf -if ! "$TTFAH" -l 6 -r 50 -x 10 -H 260 -D latn -f latn -w G -W -t -X "" -n -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Bold-TA.txt" "master_ttf/Hack-Bold.ttf" "master_ttf/hinted/Hack-Bold.ttf" +if ! "$TTFAH" -l 6 -r 50 -x 10 -H 260 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Bold-TA.txt" "master_ttf/Hack-Bold.ttf" "master_ttf/hinted/Hack-Bold.ttf" then echo "Unable to execute ttfautohint on the Hack-Bold variant set. Build canceled." 1>&2 exit 1 @@ -185,7 +185,7 @@ fi echo "master_ttf/Hack-Bold.ttf - successful hinting with ttfautohint" # Hack-Italic.ttf -if ! "$TTFAH" -l 6 -r 50 -x 10 -H 145 -D latn -f latn -w G -W -t -X "" -n -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Italic-TA.txt" "master_ttf/Hack-Italic.ttf" "master_ttf/hinted/Hack-Italic.ttf" +if ! "$TTFAH" -l 6 -r 50 -x 10 -H 145 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-Italic-TA.txt" "master_ttf/Hack-Italic.ttf" "master_ttf/hinted/Hack-Italic.ttf" then echo "Unable to execute ttfautohint on the Hack-Italic variant set. Build canceled." 1>&2 exit 1 @@ -193,7 +193,7 @@ fi echo "master_ttf/Hack-Italic.ttf - successful hinting with ttfautohint" # Hack-BoldItalic.ttf -if ! "$TTFAH" -l 6 -r 50 -x 10 -H 265 -D latn -f latn -w G -W -t -X "" -n -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-BoldItalic-TA.txt" "master_ttf/Hack-BoldItalic.ttf" "master_ttf/hinted/Hack-BoldItalic.ttf" +if ! "$TTFAH" -l 6 -r 50 -x 10 -H 265 -D latn -f latn -w G -W -t -X "" -I -R "master_ttf/Hack-Regular.ttf" -m "postbuild_processing/tt-hinting/Hack-BoldItalic-TA.txt" "master_ttf/Hack-BoldItalic.ttf" "master_ttf/hinted/Hack-BoldItalic.ttf" then echo "Unable to execute ttfautohint on the Hack-BoldItalic variant set. Build canceled." 1>&2 exit 1