mirror of
https://github.com/weiweihuanghuang/Work-Sans.git
synced 2024-11-22 21:33:10 +03:00
1276c7a2dc
- 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
18 lines
542 B
Bash
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 |