Skip to content

Commit f28d814

Browse files
committed
Merge pull request adobe-fonts#27 from miguelsousa/version_1.010
Fixed TrueType hinting problem in Bold ampersand. Made improvements to...
2 parents 849f536 + 59fcbb5 commit f28d814

File tree

10 files changed

+22
-9
lines changed

10 files changed

+22
-9
lines changed

Roman/Black/features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
table head {
3-
FontRevision 1.009;
3+
FontRevision 1.010;
44
} head;
55

66
include (../../features.family)

Roman/Bold/features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
table head {
3-
FontRevision 1.009;
3+
FontRevision 1.010;
44
} head;
55

66
include (../../features.family)

Roman/Bold/font.ttf

6.99 KB
Binary file not shown.

Roman/ExtraLight/features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
table head {
3-
FontRevision 1.009;
3+
FontRevision 1.010;
44
} head;
55

66
include (../../features.family)

Roman/Light/features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
table head {
3-
FontRevision 1.009;
3+
FontRevision 1.010;
44
} head;
55

66
include (../../features.family)

Roman/Regular/features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
table head {
3-
FontRevision 1.009;
3+
FontRevision 1.010;
44
} head;
55

66
include (../../features.family)

Roman/Semibold/features

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
table head {
3-
FontRevision 1.009;
3+
FontRevision 1.010;
44
} head;
55

66
include (../../features.family)

SourceCodeProReadMe.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,11 @@ <h1><span style="font-size:16pt">Source&#153; Code Pro</span></h1>
186186
</div>
187187
<div id="title5"><h2><a name="A3" id="A3">Release Notes</a></h2></div>
188188
<div id="description5">
189-
<p>For all fonts of family Source Code Pro : version 1.009 created on Thu Sep 20 16:40:47 2012.</p>
189+
<p>For all fonts of family Source Code Pro : version 1.010 created on Sun Sep 30 19:07:44 2012.</p>
190+
<p>version 1.010 created 2012/09/30</p>
191+
<ul>
192+
<li> Fixed TrueType hinting problem in Bold ampersand.</li>
193+
</ul>
190194
<p>version 1.009 created 2012/09/20</p>
191195
<ul>
192196
<li> First release.</li>

build.sh

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ weights=('Black' 'Bold' 'ExtraLight' 'Light' 'Regular' 'Semibold')
66
# clean existing build artifacts
77
rm -rf target/
88
mkdir target/
9+
mkdir target/OTF/
10+
mkdir target/TTF/
911

1012
for w in ${weights[@]};
1113
do
12-
makeotf -sp target/$family-$w-otf.fpr -f Roman/$w/font.pfa -r -o target/$family-$w.otf
13-
makeotf -sp target/$family-$w-ttf.fpr -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/$family-$w.ttf
14+
makeotf -f Roman/$w/font.pfa -r -o target/OTF/$family-$w.otf
15+
makeotf -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/TTF/$family-$w.ttf
1416
rm Roman/$w/current.fpr # remove default options file from the source tree after building
1517
done

relnotes.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1+
2+
version 1.010 created 2012/09/30
3+
4+
Fixed TrueType hinting problem in Bold ampersand.
5+
6+
17
version 1.009 created 2012/09/20
8+
29
First release.

0 commit comments

Comments
 (0)