Add curvy J, add build script for generating ttf/woff/woff2

This commit is contained in:
Jelle Hermsen 2022-09-03 10:10:59 +02:00
parent 9f65c5e783
commit 6110bc673c
6 changed files with 675 additions and 68 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -5,3 +5,6 @@ This is the BIJ1 Extra Bold font. This font is a fork of Public Sans. The
intention of our changes is to make this font look friendlier and rounder.
This font is available under the Open Font License (OFL).
You can run `build.sh` to generate the ttf/woff/woff2 files from the sfd. This
assumes that you are using a POSIX system that has fontforge in the PATH.

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
fontforge -c 'open(argv[1]).generate(argv[2])' BIJ1-ExtraBold.sfd BIJ1-ExtraBold.ttf
fontforge -c 'open(argv[1]).generate(argv[2])' BIJ1-ExtraBold.sfd BIJ1-ExtraBold.woff
fontforge -c 'open(argv[1]).generate(argv[2])' BIJ1-ExtraBold.sfd BIJ1-ExtraBold.woff2