* Variant tags are reordered.
* Variant names of certain letters are renamed, including: - Upper Gamma (`grek-upper-gamma`). - Variants for `K`, `k`, Cyrillic Ka (`К` and `к`). * Add more serifed variants for `K`, `k`, `n`, Cyrillic Ka (`К` and `к`) and Cyrillic Ef (`ф`) to better reproduce PT Mono (#986).
This commit is contained in:
parent
83405b25db
commit
4b6dd7376d
10 changed files with 849 additions and 341 deletions
|
@ -106,6 +106,7 @@ class Prime {
|
|||
gr.variants.push({
|
||||
key: variant.key,
|
||||
rank: variant.rank,
|
||||
rankGroup: variant.rankGroup,
|
||||
description: variant.description
|
||||
});
|
||||
}
|
||||
|
@ -120,6 +121,7 @@ class PrimeVariant {
|
|||
this.tag = tag;
|
||||
this.description = cfg.description;
|
||||
this.rank = cfg.rank;
|
||||
this.rankGroup = cfg.rankGroup || 0;
|
||||
this.selector = cfg.selector;
|
||||
this.nonDeriving = cfg.nonDeriving;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue