Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Aug 22, 2020
2 parents 024baf4 + aef5e25 commit 8f6c1b4
Show file tree
Hide file tree
Showing 344 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions make/pass1/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ function compatibilityName(family, style) {
if (style === "Regular" || style === "Bold" || style === "Italic" || style === "Bold Italic") {
return { family, style, standardFour: true };
} else {
if (/^Extra/.test(style)) {
// Prevent name overflow
style = style.replace(/^Extra/, "X");
}
if (/Italic/.test(style)) {
return {
family: family + " " + style.replace(/Italic/, "").trim(),
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.12.14",
"version": "0.13.0",
"main": "./run",
"dependencies": {
"@chlorophytum/cli": "^0.10.0",
Expand Down
Loading

0 comments on commit 8f6c1b4

Please sign in to comment.