Skip to content

Commit

Permalink
Merge pull request #1 from LauraMeseguer/master
Browse files Browse the repository at this point in the history
Updating last files from Laura's Master
  • Loading branch information
vv-monsalve authored Jun 15, 2020
2 parents 3a31536 + b1ed1f8 commit 77ba189
Show file tree
Hide file tree
Showing 14 changed files with 42,454 additions and 1,470 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 4 additions & 0 deletions documentation/README.md
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 added fonts/otf/Questrial-Regular.otf
Binary file not shown.
Binary file added fonts/ttf/Questrial-Regular.ttf
Binary file not shown.
43,904 changes: 42,434 additions & 1,470 deletions sources/Questrial.glyphs

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions sources/build.sh
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/

0 comments on commit 77ba189

Please sign in to comment.