Skip to content

Commit

Permalink
Merge pull request #27 from miguelsousa/version_1.010
Browse files Browse the repository at this point in the history
Fixed TrueType hinting problem in Bold ampersand. Made improvements to...
  • Loading branch information
miguelsousa committed Oct 1, 2012
2 parents 849f536 + 59fcbb5 commit f28d814
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Roman/Black/features
@@ -1,6 +1,6 @@


table head { table head {
FontRevision 1.009; FontRevision 1.010;
} head; } head;


include (../../features.family) include (../../features.family)
Expand Down
2 changes: 1 addition & 1 deletion Roman/Bold/features
@@ -1,6 +1,6 @@


table head { table head {
FontRevision 1.009; FontRevision 1.010;
} head; } head;


include (../../features.family) include (../../features.family)
Expand Down
Binary file modified Roman/Bold/font.ttf
Binary file not shown.
2 changes: 1 addition & 1 deletion Roman/ExtraLight/features
@@ -1,6 +1,6 @@


table head { table head {
FontRevision 1.009; FontRevision 1.010;
} head; } head;


include (../../features.family) include (../../features.family)
Expand Down
2 changes: 1 addition & 1 deletion Roman/Light/features
@@ -1,6 +1,6 @@


table head { table head {
FontRevision 1.009; FontRevision 1.010;
} head; } head;


include (../../features.family) include (../../features.family)
Expand Down
2 changes: 1 addition & 1 deletion Roman/Regular/features
@@ -1,6 +1,6 @@


table head { table head {
FontRevision 1.009; FontRevision 1.010;
} head; } head;


include (../../features.family) include (../../features.family)
Expand Down
2 changes: 1 addition & 1 deletion Roman/Semibold/features
@@ -1,6 +1,6 @@


table head { table head {
FontRevision 1.009; FontRevision 1.010;
} head; } head;


include (../../features.family) include (../../features.family)
Expand Down
6 changes: 5 additions & 1 deletion SourceCodeProReadMe.html
Expand Up @@ -186,7 +186,11 @@ <h1><span style="font-size:16pt">Source&#153; Code Pro</span></h1>
</div> </div>
<div id="title5"><h2><a name="A3" id="A3">Release Notes</a></h2></div> <div id="title5"><h2><a name="A3" id="A3">Release Notes</a></h2></div>
<div id="description5"> <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> <p>version 1.009 created 2012/09/20</p>
<ul> <ul>
<li> First release.</li> <li> First release.</li>
Expand Down
6 changes: 4 additions & 2 deletions build.sh 100644 → 100755
Expand Up @@ -6,10 +6,12 @@ weights=('Black' 'Bold' 'ExtraLight' 'Light' 'Regular' 'Semibold')
# clean existing build artifacts # clean existing build artifacts
rm -rf target/ rm -rf target/
mkdir target/ mkdir target/
mkdir target/OTF/
mkdir target/TTF/


for w in ${weights[@]}; for w in ${weights[@]};
do do
makeotf -sp target/$family-$w-otf.fpr -f Roman/$w/font.pfa -r -o target/$family-$w.otf makeotf -f Roman/$w/font.pfa -r -o target/OTF/$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.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 rm Roman/$w/current.fpr # remove default options file from the source tree after building
done done
7 changes: 7 additions & 0 deletions relnotes.txt
@@ -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 version 1.009 created 2012/09/20

First release. First release.

0 comments on commit f28d814

Please sign in to comment.