1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-08-15 05:20:40 +03:00

Fixed TrueType hinting problem in Bold ampersand. Made improvements to build script. Made changes for version 1.010.

This commit is contained in:
Miguel Sousa 2012-09-30 18:53:36 -07:00
parent 849f5368a8
commit 59fcbb51b8
10 changed files with 22 additions and 9 deletions

View File

@ -1,6 +1,6 @@
table head {
FontRevision 1.009;
FontRevision 1.010;
} head;
include (../../features.family)

View File

@ -1,6 +1,6 @@
table head {
FontRevision 1.009;
FontRevision 1.010;
} head;
include (../../features.family)

Binary file not shown.

View File

@ -1,6 +1,6 @@
table head {
FontRevision 1.009;
FontRevision 1.010;
} head;
include (../../features.family)

View File

@ -1,6 +1,6 @@
table head {
FontRevision 1.009;
FontRevision 1.010;
} head;
include (../../features.family)

View File

@ -1,6 +1,6 @@
table head {
FontRevision 1.009;
FontRevision 1.010;
} head;
include (../../features.family)

View File

@ -1,6 +1,6 @@
table head {
FontRevision 1.009;
FontRevision 1.010;
} head;
include (../../features.family)

View File

@ -186,7 +186,11 @@ results.</p>
</div>
<div id="title5"><h2><a name="A3" id="A3">Release Notes</a></h2></div>
<div id="description5">
<p>For all fonts of family Source Code Pro : version 1.009 created on Thu Sep 20 16:40:47 2012.</p>
<p>For all fonts of family Source Code Pro : version 1.010 created on Sun Sep 30 19:07:44 2012.</p>
<p>version 1.010 created 2012/09/30</p>
<ul>
<li> Fixed TrueType hinting problem in Bold ampersand.</li>
</ul>
<p>version 1.009 created 2012/09/20</p>
<ul>
<li> First release.</li>

6
build.sh Normal file → Executable file
View File

@ -6,10 +6,12 @@ weights=('Black' 'Bold' 'ExtraLight' 'Light' 'Regular' 'Semibold')
# clean existing build artifacts
rm -rf target/
mkdir target/
mkdir target/OTF/
mkdir target/TTF/
for w in ${weights[@]};
do
makeotf -sp target/$family-$w-otf.fpr -f Roman/$w/font.pfa -r -o target/$family-$w.otf
makeotf -sp target/$family-$w-ttf.fpr -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/$family-$w.ttf
makeotf -f Roman/$w/font.pfa -r -o target/OTF/$family-$w.otf
makeotf -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/TTF/$family-$w.ttf
rm Roman/$w/current.fpr # remove default options file from the source tree after building
done

View File

@ -1,2 +1,9 @@
version 1.010 created 2012/09/30
Fixed TrueType hinting problem in Bold ampersand.
version 1.009 created 2012/09/20
First release.