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

pull/855/head
Nikita Prokopov 2019-08-01 16:53:45 +03:00
rodzic 1f4bd8916e
commit 6c38d43545
25 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -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