Work-Sans/sources/generatefamily.sh
weiweihuanghuang 1276c7a2dc v1.6, added new glyphs, fixed some glyphs
- Updated font files that had blank x.sc and y.sc.
- Removed using ttfautohint CTRL files from the build process as the TTFs are no longer the same ones being generated by the latest Glyphs App therefore the point references are  wrong.
- Added Welsh glyphs /Ygrave/ygrave/Ycircumflex/ycircumflex/Wacute/wacute/Wgrave/wgrave/Wcircumflex/wcircumflex/Wdieresis/wdieresis/ygrave.sc/ycircumflex.sc/wacute.sc/wgrave.sc/wcircumflex.sc/wdieresis.sc
- Added new arrows: /leftHookArrow/rightHookArrow/anticlockwiseOpenCircleArrow/clockwiseOpenCircleArrow
2017-11-06 20:43:27 +01:00

18 lines
542 B
Bash

for i in *.ttf; do
python process.py "$i"
echo "Processing $i"
done
for i in ExtraLight Thin; do
ttfautohint -n -w G -x 0 -f latn WorkSans-$i#1.ttf WorkSans-$i.ttf
echo "WorkSans-$i.ttf hinted"
done
for i in Light Regular Medium SemiBold Bold ExtraBold Black ; do
# ttfautohint -n -w G -x 0 -f latn --control-file=hinting/WorkSans-$i.ctrl WorkSans-$i#1.ttf WorkSans-$i.ttf
ttfautohint -n -w G -x 0 -f latn WorkSans-$i#1.ttf WorkSans-$i.ttf
echo "WorkSans-$i.ttf hinted"
done
for i in *#1.ttf; do
rm "$i"
done