-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from LauraMeseguer/master
Updating last files from Laura's Master
- Loading branch information
Showing
14 changed files
with
42,454 additions
and
1,470 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
# font editor temporary files | ||
*(Autosaved).glyphs | ||
*.vfbak | ||
.venv |
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.
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,4 @@ | ||
# Questrial Font Project | ||
by Joe Prince | ||
|
||
Pdf files for each character set have been generated in Glyphs, by selecting the encoding and printing a specimen in 14 columns |
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
rm -rf ../fonts | ||
mkdir -p ../fonts/{ttf,otf} | ||
glyphs=$(ls *.glyphs) | ||
|
||
echo "Generating static fonts" | ||
for glyph in $glyphs | ||
do | ||
fontmake -g $glyph -o variable -i -o ttf --output-dir ../fonts/ttf/ | ||
fontmake -g $glyph -o variable -i -o otf --output-dir ../fonts/otf/ | ||
done | ||
|
||
rm -rf master_ufo/ instance_ufo/ |