summaryrefslogtreecommitdiff
path: root/Build/source/texk/ttfdump/ChangeLog
blob: a0492eb16ec3a375dcbaf8ffb0cb5a4ff8d79f16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
2009-10-30  Peter Breitenlohner  <peb@mppmu.mpg.de>

	* Makefile.am, configure.ac, ac/withenable.ac: Remove dependency
	on kpathsea.

2009-08-23  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Avoid maximal compiler warnings.
	* include/os2_P.h: Constify all global string arrays.
	* include/ttfutil.h, src/ttfutil.c: Constify param of ttfError().

2009-07-17  Peter Breitenlohner  <peb@mppmu.mpg.de>

	* cmap.c (ttfPrintCMAP4) cast USHORT/sizeof() to int for printing.
	* cvt.c (ttfPrintCVT): cast USHORT*sizeof() to int for printing.

2009-06-18  Peter Breitenlohner  <peb@mppmu.mpg.de>

	* Makefile.am (AM_CFLAGS): enable compiler warnings.
	* libttf/font.c (ttfCloneFont): not used.
	* libttf/gcache.c (ttfInitCacheData): avoid ambiguous "cur = cur++".
	(merge): only used #ifdef MERGEDELETE.
	* libttf/stack.c (GetLONG): unused.
	* libttf/tabledir.c (ttfCalcTableCheckSum): unused.
	* src/ttfdump.c (dialog, add_suffix): unused.
	(Strdup): declare as static.
	(main): silence 'used uninitialized' warning.
	avoid unused variables.

2009-06-03  Karl Berry  <karl@tug.org>

	* libttf/ttfread.c (ttfGetBYTE): do not make inline, just in case.

	* include/ttf.h (ttfGetBYTE): replace [non-inline] definition
	here with declaration, referring to the definition in
	libttf/ttfread.c.  Report from vvv, tlbuild 02 Jun 2009 23:48:52.

2009-05-27  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Adapt to TL2009 build system.

2008-01-31  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Convert from autoconf-2.13 to autoconf-2.59+:
	* Makefile.in, libttf/Makefile.in, src/Makefile.in: Add
	@configure_input@ lines.
	* configure.in: Autoupdated.
	* configure: Regenerated (autoconf).

Mon Jul  6 06:07:01 1998  Werner Lemberg  <wl@gnu.org>

	* include/gcache.h,
	  include/gstate.h,
	  include/loadtable.h,
	  include/os2_P.h,
	  include/tables.h,
	  include/ttc.h,
	  include/ttf.h,
	  include/ttfutil.h,
	  libttf/os2.c,
	  src/Attic/action.c,
	  src/Attic/mkttfdir.c,
	  src/Attic/rasben.c:

	action.c, mkttfdir.c, rasben.c are empty.

	Correcting spelling errors, formatting.

Sat Jul  4 13:17:52 1998  Werner Lemberg  <wl@gnu.org>

	* src/ttfdump.c,
	  Makefile.in,
	  include/ttc.h,
	  include/ttf.h,
	  libttf/Makefile.in,
	  libttf/tabledir.c,
	  libttf/ttfread.c,
	  src/Makefile.in:

	Diffs from Nelson Beebe:

	  new target `check' for Makefile, `install' improved

	  #include <unistd.h> in ttf.h

	  ttfread.c: workaround for egcs bug

	  ttfdump.c: `int main' instead of `void main'
	             use of EXIT_SUCCESS and EXIT_FAILURE
	             added Strdup() since strdup() doesn't exist everywhere

	formatting of ttfdump.c

Sat Jun  6 12:55:53 1998  Werner Lemberg  <wl@gnu.org>

	* libttf/post.c: Oops! Not 26.6 but 16.16 format. Added comment.

	* libttf/post.c: fixed overflow bugs and a wrong 26.6 number.

Sat Jan  4 19:23:56 1997    <ollie@ms1.hinet.net>

	* libttf/cmap.c (ttfLoadCMAP6): Fixed a fatal bug cause segment fault

	* src/ttfdump.c (main): add TrueType collection support

Fri Nov 29 15:34:29 1996    <ollie@ms1.hinet.net>

	* ttfdump : 
	Unrecoverable disaster had happened. The old developing version was
	destoried during Red Hat Linux upgrading (it is my fault :~~(. ).
	Resume to the public releease version.
	
Tue Sep 24 21:47:05 1996  Li-Da Lho  <ollie@ms1.hinet.net>

	* font.c (ttfInitFont): The final layer of abstraction is complete.
	Application programs only need to do the fellowing things to use 
	True Type Font:
	  1. Load the font by calling ttfInitFont(char *font_filename)
	  2. choose a encoding scheme.
	  3. load the glyf by ttfLoadGlyphIndex or ttfLoadglyphCode
	  4. do anythings the application wants about the outline data
	     (i.e. rendering ,showing).
	  4. after all this, release the font by ttfFreeFont(TTFontPtr font).

	* gcache.c: The implementation of glyph cache is completed. Start to 
	add the final layer of TTFont abstraction.
	* glyf.c: It has been proved that av*.ttf is created by brain damaged
	programmers. Lots of LOCA entries point to End Of File.

	Benchmark: All Glyf data are loaded but not printed.
	time ttfdump times.ttf >/dev/null
	0.080u 0.000s 0:00.19 42.1% 0+0k 0+0io 91pf+0w
	time ttfdump /mnt/dos/windows/fonts/dftt-fs.ttf  > /dev/null
	2.410u 0.560s 0:03.53 84.1% 0+0k 0+0io 70pf+0w
	time ttfdump /mnt/dos/windows/fonts/dftt-sk5.ttf > /dev/null
	2.850u 0.550s 0:03.95 86.0% 0+0k 0+0io 70pf+0w
	time ttfdump /mnt/dos/windows/fonts/kai.ttf  > /dev/null
	1.920u 0.530s 0:02.85 85.9% 0+0k 0+0io 70pf+0w
	time ttfdump /mnt/dos/windows/fonts/Dflihm.ttf  > /dev/null
	2.850u 0.460s 0:03.87 85.5% 0+0k 0+0io 70pf+0w


Thu Aug  1 21:11:36 1996  Li-Da Lho  <ollie@ms1.hinet.net>
	* glyf.c: composite glyph added but not completed yet,does not works
	on av*.ttf any more but fine for others  (is it a bug in av*.ttf or 
	my fault ??)
	* glyf.c (ttfLoadGlyphIndex): removed the offset parameter
	and add the glyphOffset entry in TTFont structure,which contain
	the address of the start of glyf table, almost the same speed.

Tue Jul 30 08:37:59 1996  Li-Da Lho  <ollie@ms1.hinet.net>

	* post.c : created
	add postscript information,format 2.0 ,2.5 not implemented yet

	* Release Version 0.4:
	Almost all required tables in True Type Font Specitication are
	implemented, except "post", "OS/2" and format 2,4,6 of "cmap".
	Composite glyph and instruction disassembler are not supported yet.
	Works fine on times.ttf,dftt-fs.ttf, unexpected EOF on avbbv.ttf,
	avov.ttf. (possible wrong ttf file)

	There are still some possible memory leak, clean then up when
	freezing stage.

	Benchmark:
	time ttfdump times.ttf  > /dev/null
	0.680u 0.020s 0:00.80 87.5% 0+0k 0+0io 94pf+0w
	time ttfdump /mnt/dos/ttf/avov.ttf > /dev/null
	276.210u 1.710s 4:50.43 95.6% 0+0k 0+0io 73pf+0w
	time ttfdump /mnt/dos/windows/fonts/dftt-fs.ttf  > /dev/null
	27.440u 0.700s 0:29.49 95.4% 0+0k 0+0io 73pf+0w
	time ttfdump /mnt/dos/windows/fonts/dflihm.ttf  > /dev/null
	105.400u 0.830s 1:49.17 97.3% 0+0k 0+0io 73pf+0w