UPM 2048 and opsz axis (#462)

- UPM is adjusted to 2048
- Additional opsz VF axis (multi master) added which will eventually replace the separate Display family
- New tooling that uses fontmake instead of Inter's own fontbuild toolchain. (The old toolchain is still supported, i.e. `make -f Makefile_v1.make ...`)
This commit is contained in:
Rasmus 2022-05-26 11:20:06 -07:00 committed by GitHub
parent 633839ad55
commit 0796076659
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 368192 additions and 287323 deletions

View file

@ -2,11 +2,13 @@
set -e
cd "$(dirname "$0")/.."
if [ "$1" == "-h" ]; then
if [ "$1" = "-h" ]; then
echo "usage: $0 [<bindaddr>]" >&2
exit 1
fi
BINDADDR=${1:-127.0.0.1}
if [ ! -s lab/fonts ]; then
rm -f lab/fonts
ln -fs ../../build/fonts lab/fonts
@ -20,14 +22,7 @@ fi
# For live testing with fonts, you'll instead want to use docs/lab/serve.py
rm -rf _site
BINDADDR=127.0.0.1
if [ "$1" != "" ]; then
BINDADDR=$1
fi
# --incremental
jekyll serve \
bundle exec jekyll serve \
--watch \
--host "$BINDADDR" \
--port 3002 \