Release 30.3.1
This commit is contained in:
parent
6e6e0bed77
commit
016c5494f9
199 changed files with 2250 additions and 1819 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue