]> git.wh0rd.org - fontconfig.git/blob - ChangeLog
445421252319f42faea3f5e375ce22520a48098c
[fontconfig.git] / ChangeLog
1 2003-06-15 Tor Lillqvist <tml@iki.fi>
2
3 * test/run-test.sh (FONTCONFIG_FILE): Remove CRs from the out file
4 before comparing (needed on Windows).
5
6 * src/Makefile.am (install-libtool-import-lib): Fix cut&paste error.
7
8 2003-06-13 Tor Lillqvist <tml@iki.fi>
9
10 * fontconfig-zip.in (DEVZIP): Add share/doc directory. Add Fc*.3
11 man pages.
12
13 * configure.in: Set FC_DEFAULT_FONTS on Win32 to the
14 WINDOWSFONTDIR token.
15
16 * src/fontconfig.def.in: Move the LIBRARY and VERSION lines to the
17 end, not to confuse libtool, which expects the EXPORTS line to be
18 the first. Add FcConfigEnableHome.
19
20 * src/fccfg.c: Check also for DLL_EXPORT as indication of being
21 built as a DLL on Win32.
22
23 2003-06-09 Keith Packard <keithp@keithp.com>
24
25 * Tag version 2.2.90
26
27 2003-06-09 Keith Packard <keithp@keithp.com>
28
29 * Optimization in FcLangSetIndex was broken, occasionally
30 returning a pointer to the wrong location on miss
31
32 * Add fc-match to test font matching from the command line.
33
34 2003-05-31 Keith Packard <keithp@keithp.com>
35
36 * (Bug 85) add support for culmus fonts
37 * (Bug 87) Automake 1.4 doesn't do man_MAN1 correctly
38 * (Bug 88) Fix usage info on non-long option systems (Tim Mooney)
39
40 2003-05-28 James Su <suzhe@turbolinux.com.cn>
41
42 * Fix "contains" op for strings and langsets.
43
44 2003-05-17 Keith Packard <keithp@keithp.com>
45
46 * Fix build error with BDF prop local. Free langset after query
47
48 2003-05-14 Keith Packard <keithp@keithp.com>
49
50 * Extract spacing from XLFD atom
51
52 2003-05-12 Juliusz Chroboczek <jch@pps.jussieu.fr>
53
54 * Reinstate SETWIDTH_NAME parsing for legacy fonts,
55 disappeared in 1.30.
56
57 * Generate FC_SIZE and FC_DPI for legacy bitmap fonts
58
59 2003-05-12 Keith Packard <keithp@keithp.com>
60
61 * Use FcIsWidth to share code
62
63 * Set FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH when scanning fonts to avoid
64 misclassifying some Han fonts as monospaced.
65
66 2003-05-07 Keith Packard <keithp@keithp.com>
67
68 * Add filename-based accept/reject to ammend available fonts.
69
70 * Change FT_ENCODING_ADOBE_CUSTOM to ft_encoding_adobe_custom for
71 older FreeType releases.
72
73 2003-05-06 Keith Packard <keithp@keithp.com>
74
75 * Remove 0b82 and Tamil numbers from tamil
76 orthography (Jungshik Shin <jshin@mailaps.org>)
77
78 2003-05-04 Keith Packard <keithp@keithp.com>
79
80 + Map glyph names in fonts with adobe custom encoding to unicode
81
82 2003-05-02 Keith Packard <keithp@keithp.com>
83
84 * Add FC_WEIGHT_BOOK as weight 75
85
86 2003-04-30 Keith Packard <keithp@keithp.com>
87
88 * Typo in bitstream foundry name
89
90 2003-04-24 Keith Packard <keithp@keithp.com>
91
92 * Eliminate italic_angle check for PS fonts
93
94 2003-04-23 Noah Levitt <nlevitt@columbia.edu>
95
96 * Getting closer to fixing /etc/fonts hard-coding.
97
98 2003-04-22 Keith Packard <keithp@keithp.com>
99
100 * Update autogen.sh to work with newer automake versions
101 * Handle pattern elements moving during multiple edits
102
103 2003-04-23 James Henstridge <james@daa.com.au>
104
105 * doc/fontconfig-devel.sgml: close the <para> element.
106
107 * doc/fcpattern.fncs: close the <para> element.
108
109 * doc/func.sgml: close the <refsynopsisdiv> element.
110
111 2003-04-22 Keith Packard <keithp@keithp.com
112
113 * Update autogen.sh to work with newer automake versions
114 * Handle pattern elements moving during multiple edits
115
116 2003-04-17 Colin Walters <walters@debian.org>
117
118 + Remove some unused variables, and initialize some other ones so
119 gcc doesn't warn us.
120
121 2003-04-16 Keith Packard <keithp@keithp.com>
122
123 + tag version 2.1.94
124
125 2003-04-16 Keith Packard <keithp@keithp.com>
126
127 + add BDF property fetching support for foundry
128 (from Juliusz Chroboczek)
129 + add BDF property fetching support for width
130
131 2003-04-11 Juliusz Chroboczek <jch@pps.jussieu.fr>
132
133 + Implemented foundry generation for Type 1 and TrueType
134
135 2003-04-11 Gerard Escalante <g2@magestudios.net>
136
137 + Retrieve information from Type1 FontInfo dictionaries
138
139 2003-04-07 Colin Walters <walters@verbum.org>
140
141 + src/Makefile.am: Fix dummy makefile target names when
142 MS_LIB_AVAILABLE isn't set.
143
144 2003-03-22 Tor Lillqvist <tml@iki.fi>
145
146 Changes for Windows:
147
148 + On Windows with gcc (a.k.a. mingw) build as a DLL.
149
150 + We don't want to hardcode the fonts.conf file location in the
151 DLL, so we look up the DLL location at run-time in a DllMain()
152 function. The fonts.conf location is deduced from that.
153
154 + The colon can't be used as path separator on Windows,
155 semicolon is used instead. File path components can be separated
156 with either slash or backslash. Absolute paths can also begin
157 with a drive letter.
158
159 + Add internal function FcStrLastSlash that strrchr's the last
160 slash, or backslash on Windows.
161
162 + There is no link() on Windows. For atomicity checks, mkdir a
163 lock directory instead.
164
165 + In addition to HOME, also look for USERPROFILE.
166
167 + Recognize the special font directory token WINDOWSFONTDIR, to
168 use the system's font directory.
169
170 + Remove the fontconfig-def.cpp that was obsolete. Add
171 fontconfig.def(.in), without internal functions.
172
173 + Add a fontconfig-zip(.in) script, used to build a binary
174 distribution.
175
176 Fri Mar 7 07:55:00 EST 2003 Mike A. Harris <mharris@redhat.com>
177 + RPM specfile cleanups for 2.1.92: Removed man1/* and added man5/*
178 to main package and man3/* to devel package
179
180 + Added missing defattr(-, root, root) to main RPM package
181
182 + Added HTML and text development documentation to -devel subpackage
183
184 Wed Mar 5 05:08:00 EST 2003 Mike A. Harris <mharris@redhat.com>
185 + Added back the configure macro options --disable-docs, otherwise
186 fontconfig installs docs into /usr/share/doc/fontconfig (with no
187 version number) unconditionally, causing RPM to fail the build due
188 to _unpackaged_files_terminate_build. We pick up the pregenerated
189 docs with %doc already.
190
191 Wed Mar 5 04:26:20 EST 2003 Mike A. Harris <mharris@redhat.com>
192 + Removed commented out rpm macro define at top of spec file,
193 replacing it with a simple explanation, since rpm macros are
194 expanded by rpm even in comments.
195
196 + Changed /usr/bin to _bindir in BuildRequires lines
197
198 + Cleaned up rpm postinstall script, and made fc-cache use _bindir
199
200 + Reorganized file manifest lists
201
202 Sun Mar 2 14:16:17 EST 2003 Owen Taylor <otaylor@redhat.com>
203
204 + fontconfig.spec.in: Improvements from Red Hat spec file.
205
206 + {fc-lang,fc-cache,fc-list}/Makefile.am: Add man pages.
207
208 + docs/*.sgml: SGML fixes.
209
210 Sat Mar 1 17:28:53 PST 2003 keithp
211 + Ok, so the ChangeLog is a bit out of date
212
213 + Lots of bugs fixed; most are in bugzilla, the
214 biggest problems were in cache management where
215 Owen discovered the library would lose badly when
216 combining fonts-cache and ~/.fonts-cache data
217
218 + Converted from autoconf to automake. This after
219 getting patches accepted into libtool to allow
220 the '-version-number' argument which lets
221 packages set version numbers explicitly rather
222 than the roundabout libtool way
223
224 + Converted documentation to SGML using the docbook
225 DTD. Now .txt and .html documents are installed
226 in /usr/share/doc/fontconfig and there's no
227 man page. Perhaps a man version can be written
228 at some point.
229
230 Sat Aug 31 15:21:22 PDT 2002 keithp
231 + Xrender and Xft had several bugs related to
232 rendering manually placed or poly-face text
233
234 + Added more complete memory tracing in fontconfig
235 Checked with (patched) mozilla and found no leaks
236
237 + Updated Latin orthographies by comparing those from
238 evertype.com with those from eki.ee. Tried to make
239 sensible choices, including chars that occured in both
240 and leaving some optional chars out that occured only
241 in one.
242
243 Mon Aug 26 16:33:04 PDT 2002 keithp
244 + Owen discovered that FcLangSetHasLang wasn't actually
245 checking the language set.
246
247 Mon Aug 26 13:37:23 PDT 2002 keithp
248 + Append a version number to cache filenames
249
250 Thu Aug 22 11:36:18 PDT 2002 keithp
251
252 + Add "contains" and "not_contains" operators and elements to
253 font configuration
254
255 + Changed semantics of eq operator for LangSets to check for
256 FcLangEqual so that any match will do
257
258 + FcFontList was using FcConfigCompareValue (...FcOpEqual) instead
259 of FcValueEqual to check for identical values when inserting into
260 the results. This broke when the above semantic change was made,
261 now it uses FcValueEqual which is "more correct" in any case.
262
263 Thu Aug 22 00:32:29 PDT 2002 keithp
264
265 + Reimplement FC_LANG as new datatype. Lists of strings
266 was consuming over a megabyte of memory for 401 fonts.
267
268 + Freeze patterns loaded from cache files. This shares
269 common value lists and common patterns which saves
270 considerable memory.
271
272 + Change the denotation of 'constant' charsets to use special
273 ref value instead of separate boolean.
274
275 + Clean up leak tracing stuff, found several unannoted alloc/free
276 calls
277
278 Tue Aug 20 16:17:37 PDT 2002 keithp
279
280 + Fix memory leak when parsing matrices from XML
281
282 Mon Aug 19 11:57:27 PDT 2002 keithp
283
284 + Fix autoconf files to pass FONTCONFIG_PATH on
285 compile line so that ${prefix} gets substituted
286 correctly.
287
288 + Use getc_unlocked/putc_unlocked on systems that
289 provide them to avoid damage done to stdio by posix
290
291 + Eliminate FC_PATTERN and FcTypePattern in favor of
292 an extended api for FcConfigSubstitute which takes
293 both the font and the pattern.
294
295 + Add 'sans serif' alias for 'sans-serif' as some apps
296 can't handle hyphens in family names
297
298 + Eliminate pretense of support for libxml2
299
300 + Comment origins of Han orthographies
301
302 Tue Jul 30 18:37:09 PDT 2002 keithp
303
304 + Add binding property to edit element so that strong
305 binding values may be inserted by the config file.
306 The default remains weak.
307
308 Sun 28 Jul 04:16:55 PDT 2002 keithp
309
310 + Tagged release candidate 1 in the CVS tree and
311 placed fcpackage.rc1.tar.gz for distribution
312
313 Thu Aug 1 08:55:08 PDT 2002 keithp
314
315 + Fixed autoconf builds to always specify install
316 target files (for BSD). Also fixed to
317 define FONTCONFIG_PATH in config.h so that
318 nonstandard installs will actually work.