mirror of
https://github.com/adobe-fonts/source-code-pro.git
synced 2026-04-26 03:00:26 -04:00
Fixed TrueType hinting problem in Bold ampersand. Made improvements to build script. Made changes for version 1.010.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
|
||||
table head {
|
||||
FontRevision 1.009;
|
||||
FontRevision 1.010;
|
||||
} head;
|
||||
|
||||
include (../../features.family)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
table head {
|
||||
FontRevision 1.009;
|
||||
FontRevision 1.010;
|
||||
} head;
|
||||
|
||||
include (../../features.family)
|
||||
|
||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
|
||||
table head {
|
||||
FontRevision 1.009;
|
||||
FontRevision 1.010;
|
||||
} head;
|
||||
|
||||
include (../../features.family)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
table head {
|
||||
FontRevision 1.009;
|
||||
FontRevision 1.010;
|
||||
} head;
|
||||
|
||||
include (../../features.family)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
table head {
|
||||
FontRevision 1.009;
|
||||
FontRevision 1.010;
|
||||
} head;
|
||||
|
||||
include (../../features.family)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
table head {
|
||||
FontRevision 1.009;
|
||||
FontRevision 1.010;
|
||||
} head;
|
||||
|
||||
include (../../features.family)
|
||||
|
||||
@@ -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
6
build.sh
Normal file → Executable 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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user