1
0
Fork 0
mirror of synced 2024-04-29 18:23:45 +12:00

Fixed hinting problems caused by build_ttf (closes #1075)

This commit is contained in:
Nikita Prokopov 2020-06-12 15:18:24 +02:00
parent 9fdb974361
commit 8da49d55f8
24 changed files with 10 additions and 5 deletions

View file

@ -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

View file

@ -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";
@ -122853,5 +122853,5 @@ oV = 98;
};
};
versionMajor = 5;
versionMinor = 1;
versionMinor = 2;
}

View file

@ -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:

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -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