-
-
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
57 changed files
with
102 additions
and
91 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
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.
File renamed without changes.
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 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,20 +1,20 @@ | ||
#! /bin/bash -ex | ||
|
||
sudo easy_install pip | ||
pip3 install virtualenv --user | ||
sudo easy_install-3.7 pip | ||
pip install virtualenv --user | ||
python3 -m virtualenv venv | ||
source venv/bin/activate | ||
|
||
# https://github.com/googlefonts/gftools/issues/121 | ||
brew install pkg-config | ||
pip3 install -U Pillow==5.4.1 idna==2.8 requests==2.21.0 urllib3==1.24.1 | ||
pip install -U Pillow==5.4.1 idna==2.8 requests==2.21.0 urllib3==1.24.1 | ||
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig" | ||
pip3 install pycairo | ||
pip3 install git+https://github.com/googlefonts/gftools | ||
pip install pycairo | ||
pip install git+https://github.com/googlefonts/gftools | ||
|
||
pip3 install fontmake | ||
pip install fontmake | ||
brew install ttfautohint | ||
brew install woff2 | ||
brew tap bramstein/webfonttools | ||
brew install sfnt2woff-zopfli | ||
pip3 install fontbakery | ||
pip install fontbakery |
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
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,29 @@ | ||
#!/bin/zsh -euo pipefail | ||
|
||
cd "`dirname $0`/.." | ||
|
||
|
||
setopt BASH_REMATCH | ||
MAJOR=`cat FiraCode.glyphs | grep versionMajor` | ||
VERSION="" | ||
|
||
if [[ $MAJOR =~ 'versionMajor = ([0-9]+);' ]] ; then | ||
VERSION="${BASH_REMATCH[2]}" | ||
fi | ||
|
||
MINOR=`cat FiraCode.glyphs | grep versionMinor` | ||
if [[ $MINOR =~ 'versionMinor = ([0-9]+);' ]] ; then | ||
MATCH="${BASH_REMATCH[2]}" | ||
if [ "$MATCH" != "0" ] ; then | ||
VERSION="$VERSION.$MATCH" | ||
fi | ||
fi | ||
|
||
FILE="Fira_Code_v$VERSION.zip" | ||
rm -f $FILE | ||
|
||
pushd distr | ||
find . -not -name ".*" | xargs zip ../$FILE | ||
popd | ||
|
||
ls -lah $FILE |
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.