Release 30.3.1

This commit is contained in:
be5invis 2024-06-30 14:52:07 -07:00
parent 6e6e0bed77
commit 016c5494f9
199 changed files with 2250 additions and 1819 deletions

View file

@ -14,11 +14,16 @@ export default async function processCvInfluences(argv) {
italic: new Map(),
};
for (const block of cl.unicodeCoverage) {
for (const block of cl.unique.unicodeCoverage) {
for (const ch of block.characters) {
if (!ch.inFont) continue;
addToCvInfluenceMap(cl.featureSeries, m.upright, ch.lch, ch.cvFeatureSetsUpright);
addToCvInfluenceMap(cl.featureSeries, m.italic, ch.lch, ch.cvFeatureSetsItalic);
addToCvInfluenceMap(
cl.unique.featureSeries,
m.upright,
ch.lch,
ch.cvFeatureSetsUpright,
);
addToCvInfluenceMap(cl.unique.featureSeries, m.italic, ch.lch, ch.cvFeatureSetsItalic);
}
}

View file

@ -9,7 +9,7 @@ export default async function processLangList(argv) {
argv.charMapObliquePath,
);
const md = new MdCol("Section-Language-List");
md.log(`${cl.languages.length} Supported Languages: \n`);
md.log(cl.languages.join(", "));
md.log(`${cl.shared.languages.length} Supported Languages: \n`);
md.log(cl.shared.languages.join(", "));
return md;
}