From e5ae4816df6a48d6ad61c32654f14f108cac6a34 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 3 Jun 2023 21:03:05 +0200 Subject: Add automated checks on layouts The script `check_layout.py` checks some properties about layouts. No check is an error. The result of running this script on every layouts is stored in the file `check_layout.output`, which is useful to track changes. Add make rules to run this script as well as `sync_translations`. --- srcs/special_font/build.pe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'srcs') diff --git a/srcs/special_font/build.pe b/srcs/special_font/build.pe index 962917f..bf13f23 100644 --- a/srcs/special_font/build.pe +++ b/srcs/special_font/build.pe @@ -2,8 +2,8 @@ # files, one for each glyph. New() -# Imports glyphs, file name is position in the font. -i = 1 +# Imports glyphs, first argument is file name for the generated font +i = 2 while (i < $argc) Select(Strtol($argv[i]:t:r, 16)) Import($argv[i], 0, 0, 4.0, 0.1) @@ -11,4 +11,4 @@ while (i < $argc) i++ endloop -Generate("result.ttf") +Generate($argv[1]) -- cgit v1.2.3