Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Dec 19, 2020
2 parents e8d1c8a + 35184b0 commit 2985edc
Show file tree
Hide file tree
Showing 327 changed files with 5 additions and 10 deletions.
9 changes: 2 additions & 7 deletions make/pass1/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,9 @@ module.exports = async function (argv) {
a.glyf[g].advanceHeight = a.head.unitsPerEm;
}

// italize
if (argv.italize) {
italize(a, -10);
italize(c, -10);
}
if (argv.italize) italize(a, -9.4);

knockoutSymbols(a, { enclosedAlphaNumerics: !argv.mono, pua: !argv.mono });

crossTransfer(a, b, [0x2010, 0x2011, 0x2012, 0x2013, 0x2014, 0x2015]);
mergeBelow(a, c, { mergeOTL: true });
mergeAbove(a, b, { mergeOTL: true });
Expand Down Expand Up @@ -80,7 +75,7 @@ module.exports = async function (argv) {
}
);

if (argv.italize) italize(a, +10);
if (argv.italize) italize(a, +9.4);
a.glyph_order = gc(a);
await buildFont(a, { to: argv.o });
};
4 changes: 2 additions & 2 deletions make/pass2/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ module.exports = async function makeFont(argv) {
const b = await introFont({ from: argv.kanji, prefix: "b" });
const c = await introFont({ from: argv.hangul, prefix: "c" });

if (argv.italize) italize(b, 10);
if (argv.italize) italize(c, 10);
if (argv.italize) italize(b, 9.4);
if (argv.italize) italize(c, 9.4);

mergeBelow(a, b, { mergeOTL: true });
mergeBelow(a, c, { mergeOTL: true });
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sarasa-gothic",
"version": "0.16.0",
"version": "0.16.1",
"main": "./run",
"scripts": {
"build": "verda -f verdafile.js",
Expand Down
Loading

0 comments on commit 2985edc

Please sign in to comment.