Skip to content

Commit

Permalink
Fixed hinting problems caused by build_ttf (closes #1075)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Jun 12, 2020
1 parent 9fdb974 commit 8da49d5
Show file tree
Hide file tree
Showing 24 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

#### 5.2 (June 12, 2020)

- Fixed hinting problems caused by build_ttf #1075

#### 5.1 (June 10, 2020)

- Fixed monospace property broken by adding threeemdash #1073
Expand Down
4 changes: 2 additions & 2 deletions FiraCode.glyphs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ value = (
);
}
);
date = "2020-06-10 18:59:21 +0000";
date = "2020-06-12 13:02:47 +0000";
designer = "Carrois Corporate, Edenspiekermann AG, Nikita Prokopov";
designerURL = "https://tonsky.me";
familyName = "Fira Code";
Expand Down Expand Up @@ -122853,5 +122853,5 @@ oV = 98;
};
};
versionMajor = 5;
versionMinor = 1;
versionMinor = 2;
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Fira Code is a free monospaced font containing ligatures for common programming

### Download & Install

<a href="https://github.com/tonsky/FiraCode/releases/download/5.1/Fira_Code_v5.1.zip"><img src="./extras/download.png" width="520" height="130"></a>
<a href="https://github.com/tonsky/FiraCode/releases/download/5.2/Fira_Code_v5.2.zip"><img src="./extras/download.png" width="520" height="130"></a>

Then:

Expand Down
Binary file modified distr/ttf/FiraCode-Bold.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Light.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Medium.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Regular.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Retina.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-SemiBold.ttf
Binary file not shown.
Binary file modified distr/variable_ttf/FiraCode-VF.ttf
Binary file not shown.
Binary file modified distr/woff/FiraCode-Bold.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-Light.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-Medium.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-Regular.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-SemiBold.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-VF.woff
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Bold.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Light.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Medium.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Regular.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-SemiBold.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-VF.woff2
Binary file not shown.
Binary file modified extras/download.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions script/build_ttf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ for weight in "${weights[@]}"; do
gftools fix-dsig --autofix ${file}

echo "TTFautohint " ${file}
ttfautohint -I ${file} ${file}.hinted --stem-width-mode nnn --composites --windows-compatibility
ttfautohint -I ${file} ${file}.hinted --stem-width-mode nnn --composites
#--windows-compatibility
mv ${file}.hinted ${file}
done
done

0 comments on commit 8da49d5

Please sign in to comment.