blob: 12d4ad74661a9adce8acc4fe9d0b07ba7fa68c01 [file] [log] [blame]
pabs3e7689a42009-11-08 15:58:24 +00001TTX/FontTools Version 2.3
2
3- TrueType Collection (TTC) support
4- Python 2.6 support
5- Update Unicode data to 5.2.0
6- Couple of bug fixes
7
pabs3711afe92009-11-08 15:52:26 +00008TTX/FontTools Version 2.2
9
10- ClearType support
11- cmap format 1 support
12- PFA font support
13- Switched from Numeric to numpy
14- Update Unicode data to 5.1.0
15- Update AGLFN data to 1.6
16- Many bug fixes
17
18TTX/FontTools Version 2.1
19
20- Many years worth of fixes and features
21
jvre3b3ada2002-09-13 13:17:39 +000022TTX/FontTools Version 2.0 beta 2 (released ??? 2002)
23
jvra6eeeac2002-09-16 08:21:30 +000024- Be "forgiving" when interpreting the maxp table version field:
25 interpret any value as 1.0 if it's not 0.5. Fixes dumping of these
26 GPL fonts: http://www.freebsd.org/cgi/pds.cgi?ports/chinese/wangttf
jvrf7f0f742002-09-14 15:31:26 +000027- Fixed ttx -l: it turned out this part of the code didn't work with
28 Python 2.2.1 and earlier. My bad to do most of my testing with a
29 different version than I shipped TTX with :-(
jvre3b3ada2002-09-13 13:17:39 +000030- Fixed bug in ClassDef format 1 subtable (Andreas Seidel bumped into
31 this one).
32
jvr7248f812002-09-10 14:10:58 +000033TTX/FontTools Version 2.0 beta 1 (released September 10 2002)
jvr8eb99922002-05-02 08:11:37 +000034
jvr862eff72002-09-10 20:35:55 +000035- Fixed embarrassing bug: the master checksum in the head table is now
36 calculated correctly even on little-endian platforms (such as Intel).
jvr7248f812002-09-10 14:10:58 +000037- Made the cmap format 4 compiler smarter: the binary data it creates is
38 now more or less as compact as possible. TTX now makes more compact
39 data than in any shipping font I've tested it with.
40- Dump glyph names as a separate "GlyphOrder" pseudo table as opposed to
41 as part of the glyf table (obviously needed for CFF-OTF's).
42- Added proper support for the CFF table.
43- Don't barf on empty tables (questionable, but "there are font out there...")
44- When writing TT glyf data, align glyphs on 4-byte boundaries. This seems
45 to be the current recommendation by MS. Also: don't barf on fonts which
46 are already 4-byte aligned.
47- Windows installer contributed bu Adam Twardoch! Yay!
48- Changed the command line interface again, now by creating one new tool
49 replacing the old ones: ttx
50 It dumps and compiles, depending on input file types. The options have
51 changed somewhat.
52 - The -d option is back (output dir)
53 - ttcompile's -i options is now called -m (as in "merge"), to avoid clash
54 with dump's -i.
55 - The -s option ("split tables") no longer creates a directory,
jvrb4bdd0f2002-05-12 12:24:11 +000056 but instead outputs a small .ttx file containing references to the
57 individual table files. This is not a true link, it's a simple file
58 name, and the referenced file should be in the same directory so
59 ttcompile can find them.
jvr7248f812002-09-10 14:10:58 +000060 - compile no longer accepts a directory as input argument. Instead it
61 can parse the new "mini-ttx" format as output by "ttx -s".
62 - all arguments are input files
jvrb4bdd0f2002-05-12 12:24:11 +000063- Renamed the command line programs and moved them to the Tools
64 subdirectory. They are now installed by the setup.py install script.
jvrb4bdd0f2002-05-12 12:24:11 +000065- Added OpenType support. BASE, GDEF, GPOS, GSUB and JSTF are (almost)
66 fully supported. The XML output is not yet final, as I'm still
67 considering to output certain subtables in a more human-friendly
68 manner.
69- Fixed 'kern' table to correctly accept subtables it doesn't know about,
70 as well as interpreting Apple's definition of the 'kern' table headers
71 correctly.
72- Fixed bug where glyphnames were not calculated from 'cmap' if it was
73 (one of the) first tables to be decompiled. More specifically: it cmap
74 was the first to ask for a glyphID -> glyphName mapping.
jvr8eb99922002-05-02 08:11:37 +000075- Switched XML parsers: use expat instead of xmlproc. Should be faster.
76- Removed my UnicodeString object: I now require Python 2.0 or up, which
77 has unicode support built in.
jvrb4bdd0f2002-05-12 12:24:11 +000078- Removed assert in glyf table: redundant data at the end of the table
jvr8eb99922002-05-02 08:11:37 +000079 is now ignored instead of raising an error. Should become a warning.
80- Fixed bug in hmtx/vmtx code that only occured if all advances were equal.
81- Fixed subtle bug in TT instruction disassembler.
jvrb4bdd0f2002-05-12 12:24:11 +000082- Couple of fixes to the 'post' table.
jvr8eb99922002-05-02 08:11:37 +000083- Updated OS/2 table to latest spec.
84
jvr7248f812002-09-10 14:10:58 +000085TTX/FontTools Version 1.0 beta 1 (released August 10 2001)
jvr9b5e5af2001-08-10 20:28:13 +000086
87- Reorganized the command line interface for ttDump.py and ttCompile.py,
88 they now behave more like "normal" command line tool, in that they accept
89 multiple input files for batch processing.
90- ttDump.py and ttCompile.py don't silently override files anymore, but ask
91 before doing so. Can be overridden by -f.
92- Added -d <destination-directory> option to both ttDump.py and ttCompile.py.
93- Installation is now done with distutils. (Needs work for environments without
94 compilers.)
95- Updated installation instructions.
96- Added some workarounds so as to handle certain buggy fonts more gracefully.
97- Updated Unicode table to Unicode 3.0 (Thanks Antoine!)
98- Included a Python script by Adam Twardoch that adds some useful stuff to the
99 Windows registry.
100- Moved the project to SourceForge.
101
jvr7248f812002-09-10 14:10:58 +0000102TTX/FontTools Version 1.0 alpha 6 (released March 15 2000)
Just3d2d8a62000-03-15 20:56:56 +0000103
104- Big reorganization: made ttLib a subpackage of the new fontTools package,
105 changed several module names. Called the entire suite "FontTools"
106- Added several submodules to fontTools, some new, some older.
107- Added experimental CFF/GPOS/GSUB support to ttLib, read-only (but XML dumping
108 of GPOS/GSUB is for now disabled)
109- Fixed hdmx endian bug
110- Added -b option to ttCompile.py, it disables recalculation of bounding boxes,
111 as requested by Werner Lemberg.
112- Renamed tt2xml.pt to ttDump.py and xml2tt.py to ttCompile.py
113- Use ".ttx" as file extension instead of ".xml".
114- TTX is now the name of the XML-based *format* for TT fonts, and not just
115 an application.
116
117Version 1.0 alpha 5 (never released)
118
119- More tables supported: hdmx, vhea, vmtx
120
121Version 1.0 alpha 3 & 4 (never released)
122
123- fixed most portability issues
124- retracted the "Euro_or_currency" change from 1.0a2: it was nonsense!
125
126Version 1.0 alpha 2 (released as binary for MacOS, 2 May 1999)
127
128- genenates full FOND resources: including width table, PS
129 font name info and kern table if applicable.
130- added cmap format 4 support. Extra: dumps Unicode char names as XML comments!
131- added cmap format 6 support
132- now accepts true type files starting with "true"
133 (instead of just 0x00010000 and "OTTO")
134- 'glyf' table support is now complete: I added support for composite scale,
135 xy-scale and two-by-two for the 'glyf' table. For now, component offset scale
136 behaviour defaults to Apple-style. This only affects the (re)calculation of
137 the glyph bounding box.
138- changed "Euro" to "Euro_or_currency" in the Standard Apple Glyph order list,
139 since we cannot tell from the 'post' table which is meant. I should probably
140 doublecheck with a Unicode encoding if available. (This does not affect the
141 output!)
142
143Fixed bugs:
144- 'hhea' table is now recalculated correctly
145- fixed wrong assumption about sfnt resource names
146
147Version 1.0 alpha 1 (27 Apr 1999)
148
149- initial binary release for MacOS
150