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