Skip to content

Commit 2985edc

Browse files
committed
Merge branch 'dev'
2 parents e8d1c8a + 35184b0 commit 2985edc

327 files changed

Lines changed: 5 additions & 10 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

make/pass1/index.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,9 @@ module.exports = async function (argv) {
3434
a.glyf[g].advanceHeight = a.head.unitsPerEm;
3535
}
3636

37-
// italize
38-
if (argv.italize) {
39-
italize(a, -10);
40-
italize(c, -10);
41-
}
37+
if (argv.italize) italize(a, -9.4);
4238

4339
knockoutSymbols(a, { enclosedAlphaNumerics: !argv.mono, pua: !argv.mono });
44-
4540
crossTransfer(a, b, [0x2010, 0x2011, 0x2012, 0x2013, 0x2014, 0x2015]);
4641
mergeBelow(a, c, { mergeOTL: true });
4742
mergeAbove(a, b, { mergeOTL: true });
@@ -80,7 +75,7 @@ module.exports = async function (argv) {
8075
}
8176
);
8277

83-
if (argv.italize) italize(a, +10);
78+
if (argv.italize) italize(a, +9.4);
8479
a.glyph_order = gc(a);
8580
await buildFont(a, { to: argv.o });
8681
};

make/pass2/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ module.exports = async function makeFont(argv) {
1414
const b = await introFont({ from: argv.kanji, prefix: "b" });
1515
const c = await introFont({ from: argv.hangul, prefix: "c" });
1616

17-
if (argv.italize) italize(b, 10);
18-
if (argv.italize) italize(c, 10);
17+
if (argv.italize) italize(b, 9.4);
18+
if (argv.italize) italize(c, 9.4);
1919

2020
mergeBelow(a, b, { mergeOTL: true });
2121
mergeBelow(a, c, { mergeOTL: true });

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sarasa-gothic",
3-
"version": "0.16.0",
3+
"version": "0.16.1",
44
"main": "./run",
55
"scripts": {
66
"build": "verda -f verdafile.js",

0 commit comments

Comments
 (0)