added --composites --windows-compatibility to ttf generation

This commit is contained in:
Nikita Prokopov 2019-08-01 16:53:45 +03:00
parent 1f4bd8916e
commit 6c38d43545
25 changed files with 4 additions and 4 deletions

View File

@ -189,13 +189,13 @@ In case you want to alter FiraCode.glyphs and build OTF/TTF/WOFF files yourself,
```bash
# install all required build tools
script/bootstrap
./script/bootstrap
# build the font files
script/build
./script/build
# install OTFs to ~/Library/Fonts
script/install
./script/install
```
### Credits

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -51,7 +51,7 @@ for file in $statics; do
echo "TTFautohint " ${file}
# autohint with detailed info
hintedFile=${file/".ttf"/"-hinted.ttf"}
ttfautohint -I ${file} ${hintedFile} --stem-width-mode nnn
ttfautohint -I ${file} ${hintedFile} --stem-width-mode nnn --composites --windows-compatibility
cp ${hintedFile} ${file}
rm -rf ${hintedFile}
done