-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
37 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ OR | |
|
||
Use https://chocolatey.org: | ||
|
||
choco install firacode | ||
choco install firacode-ttf | ||
|
||
|
||
macOS | ||
|
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
cd "`dirname $0`/.." | ||
|
||
source venv/bin/activate | ||
|
||
DIR=distr/variable_ttf | ||
FILE=FiraCode-VF.ttf | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/bash -e | ||
#!/bin/bash -euo pipefail | ||
# requires sfnt2woff-zopfli (get from https://github.com/bramstein/homebrew-webfonttools) | ||
|
||
rm -rf distr/woff | ||
cd "`dirname $0`/.." | ||
source venv/bin/activate | ||
|
||
rm -rf distr/*/*.woff | ||
|
||
ttfs=$(ls distr/*/*.ttf) | ||
for ttf in $ttfs; do | ||
echo "sfnt2woff-zopfli $ttf" | ||
sfnt2woff-zopfli $ttf | ||
done | ||
|
||
rm distr/ttf/FiraCode-Retina.woff | ||
|
||
mkdir -p distr/woff | ||
woffs=$(ls distr/*/*.woff) | ||
for woff in $woffs; do | ||
mv $woff distr/woff/$(basename $woff) | ||
done | ||
mv distr/*/*.woff distr/woff | ||
rm distr/woff/FiraCode-Retina.woff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
#!/bin/bash -e | ||
#!/bin/bash -euo pipefail | ||
# requires woff2_compress (get from https://github.com/bramstein/homebrew-webfonttools) | ||
|
||
rm -rf distr/woff2 | ||
cd "`dirname $0`/.." | ||
source venv/bin/activate | ||
|
||
rm -rf distr/*/*.woff2 | ||
|
||
ttfs=$(ls distr/*/*.ttf) | ||
for ttf in $ttfs; do | ||
woff2_compress $ttf | ||
done | ||
|
||
rm distr/ttf/FiraCode-Retina.woff2 | ||
|
||
mkdir -p distr/woff2 | ||
woff2s=$(ls distr/*/*.woff2) | ||
for woff2 in $woff2s; do | ||
mv $woff2 distr/woff2/$(basename $woff2) | ||
done | ||
mv distr/*/*.woff2 distr/woff2 | ||
rm distr/woff2/FiraCode-Retina.woff2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/zsh -euo pipefail | ||
cd "`dirname $0`/.." | ||
|
||
./script/check_widths | ||
# ./script/build_ttf | ||
./script/build_variable | ||
./script/build_woff | ||
./script/build_woff2 | ||
./script/package |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters