Skip to content

Commit

Permalink
Release 0.40.4
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Mar 18, 2023
2 parents 850d2a6 + c42fd6a commit 0e4f5b7
Show file tree
Hide file tree
Showing 345 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion make/non-kanji/build.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import buildFont from "../common/build-font.mjs";
import gc from "../common/gc.mjs";
import introFont from "../common/intro-font.mjs";
import { isIdeograph, isKorean, filterUnicodeRange, isFEMisc } from "../common/unicode-kind.mjs";
import { filterUnicodeRange, isIdeograph, isKorean } from "../common/unicode-kind.mjs";

function removeUnusedFeature(table, tag) {
if (!table) return;
Expand Down
2 changes: 2 additions & 0 deletions make/pass1/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import introFont from "../common/intro-font.mjs";
import { italize } from "../common/italize.mjs";
import { mergeAbove, mergeBelow } from "../common/merge.mjs";
import rebaseFont from "../common/rebase.mjs";
import { filterUnicodeRange, isIdeograph, isKorean } from "../common/unicode-kind.mjs";

import { crossTransfer } from "./cross-transfer.mjs";
import { knockoutSymbols } from "./knockout-symbols.mjs";
Expand Down Expand Up @@ -49,6 +50,7 @@ export default (async function (argv) {

buildNexusDash(main);
setHintFlag(main);
filterUnicodeRange(main, c => !isIdeograph(c) && !isKorean(c)); // Further filter out FE glyphs

nameFont(
main,
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.40.3",
"version": "0.40.4",
"main": "./run",
"scripts": {
"build": "verda -f verdafile.mjs",
Expand Down
Loading

0 comments on commit 0e4f5b7

Please sign in to comment.