]> git.wh0rd.org - fontconfig.git/blame - ChangeLog
Inline FcDebug invocations and only initialize once, in FcInit*. Improve
[fontconfig.git] / ChangeLog
CommitLineData
b97a34b5
PL
12005-11-24 Dirk Mueller <dmueller@suse.com>
2 reviewed by: plam
3
4 * src/fcdbg.c (FcDebug, FcDebugInit, FcPatternPrint):
5 * src/fcinit.c (FcInitLoadConfig, FcInitLoadConfigAndFonts):
6 * src/fcint.h (FcDebug):
7
8 Inline FcDebug invocations and only initialize once, in FcInit*.
9 Improve debug msg in FcPatternPrint.
10
f7c4624f
PL
112005-11-23 Frederic Crozat <fcrozat@mandriva.com>:
12 reviewed by: plam
13
14 * fontconfig/fontconfig.h:
15 * fc-cat/fc-cat.c:
16
17 Minor code warning cleanups.
18
435fc660
PL
192005-11-23 Frederic Crozat <fcrozat@mandriva.com>:
20 reviewed by: plam
21
22 * fc-match/fc-match.c (main):
23
24 Make getopt_long accept -s parameter to fc-match as well.
25
adac22f2
PL
262005-11-21 Dirk Mueller <dmueller@suse.com>
27 reviewed by: plam
28
29 * src/fcmatch.c (FcCompareValueList):
30
31 Manually perform inlining & partial redundancy elimination to
32 reduce calls to FcValueListPtrU.
33
342005-11-21 Dirk Mueller <dmueller@suse.com>
35 reviewed by: plam
36
37 * src/fcstr.c (FcStrFree, FcStrCaseWalkerInit, FcStrCaseWalkerLong,
38 FcStrCaseWalkerNext, FcStrCaseWalkerNextIgnoreBlanks):
39
40 Only invoke strlen() when really necessary.
41
8ebf7725
PL
422005-11-19 Matthias Clasen <mclasen@redhat.com>
43 reviewed by: plam
44
45 * src/Makefile.am:
46 * src/fcfreetype.c (FcGetPixelSize, FcFreeTypeQuery, GetScriptTags,
47 FcFontCapabilities):
8c24aa6b
PL
48 * src/ftglue.c:
49 * src/ftglue.h:
8ebf7725
PL
50
51 Get rid of the use of freetype internal headers in fcfreetype.c,
52 since those headers will go away with freetype 2.2. Replace with
53 public domain ftglue code from pango. Note that the patch removes
54 some extra error checking in FT_Get_BDF_Property() and comments
55 out the skipping of empty pcf fonts.
56
a151aced
PL
572005-11-19 Jinghua Luo <sunmoon1997@gmail.com>
58 reviewed by: plam
59
60 * fc-lang/fc-lang.c (main):
61
62 Further fix of patch from 2005-11-04: miscounted numbers count
63 (numbers_count); didn't strip duplicate numbers (langBankNumbers);
64 and leafidx_offset and numbers_offset in fcLangCharSets are wrong.
65
66 Removed leafidx_count and numbers_count since they are the same
67 and replaced them with offset_count.
68
8f2a8078
PL
692005-11-18 Frederic Crozat <fcrozat@mandriva.com>
70 reviewed by: plam
71
72 * fc-cat/fc-cat.c (main):
73
74 Don't crash when fc-cat invoked with no arguments.
75
762005-11-18 Frederic Crozat <fcrozat@mandriva.com>
77 reviewed by: plam
78
79 * src/fcxml.c (FcConfigSaveAttr, FcConfigParseAndLoad):
80
81 Fix invalid read access caused by premature free and
82 GCC4 warnings in libxml2 codepath.
83
842005-11-17 Jinghua Luo <sunmoon1997@gmail.com>
82912b06
PL
85 reviewed by: plam
86
87 * src/fccfg.c (FcConfigValues):
88
89 List iteration not needed in FcConfigValues, since it's building
90 up the list itself; we can just strip FcVoid elements during
91 construction.
92
38b2ecad
PL
932005-11-17 Patrick Lam <plam@mit.edu>
94 * src/fccfg.c (FcConfigValues):
95
96 Fix crash on invalid constants in config files (forgot to update
97 a pointer upon list iteration.)
98
f28472fd
PL
992005-11-17 Frederic Crozat <fcrozat@mandriva.com>
100 reviewed by: plam
101
102 * src/fcxml.c (FcTypecheckExpr):
103
104 Complain about invalid constants in config files.
105
1c5b6345
PL
1062005-11-17 Andreas Schwab <schwab@suse.de>
107 reviewed by: plam
108
109 * src/fccache.c (FcGlobalCacheSave):
110
111 Don't add current_arch_start more than once.
112
1132005-11-16 Patrick Lam <plam@mit.edu>
114 * src/fccharset.c (FcCharSetDistributeBytes, FcCharSetUnserialize):
115 * src/fcfs.c (FcFontSetUnserialize):
116 * src/fcname.c (FcObjectDistributeBytes, FcObjectUnserialize):
117 * src/fcpat.c (FcStrUnserialize):
118
119 Fix ordering of ALIGN with respect to saving block_ptr; add
120 another ALIGN to fcfs.c.
121
8e351527
PL
1222005-11-16 Patrick Lam <plam@mit.edu>
123 * src/fccache.c (FcDirCacheProduce)
124
125 Fix case where alignment bytes bumped up metadata->count
126 causing unwarranted failures to write cache files.
127 (Reported by Stephan Kulow).
128
7fd7221e
PL
1292005-11-16 Patrick Lam <plam@mit.edu>
130 * src/fccache.c (FcDirCacheProduce):
131 * src/fccharset.c (FcCharSetDistributeBytes):
132 * src/fcfs.c (FcFontSetDistributeBytes):
133 * src/fcint.h:
134 * src/fclang.c (FcLangSetDistributeBytes):
135 * src/fcname.c (FcObjectDistributeBytes):
136 * src/fcpat.c (FcPatternNeededBytes, FcValueListNeededBytes,
137 FcStrNeededBytes):
138
139 Add *NeededBytesAlign(), which overestimates the padding which is
140 later added by the new ALIGN macro. Fix alignment problems on
141 ia64 and s390 by bumping up block_ptr appropriately. (Earlier
142 version by Andreas Schwab).
143
1442005-11-16 Stephan Kulow <coolo@kde.org>
145 reviewed by: plam
146
147 * src/fccache.c:
148
149 Use sysconf to determine proper PAGESIZE value; this
150 appears to be POSIX-compliant. (reported by Andreas Schwab)
151
82f35f8b
PL
1522005-11-04 Patrick Lam <plam@mit.edu>
153 * fc-lang/fc-lang.c:
154 * src/fccharset.c:
155 * src/fcint.h:
156 * src/fclang.c:
157
158 Fix bug 2878 (excessive relocations at startup for charsets,
159 reported by Ross Burton): fc-lang/fc-lang now creates the
160 static form of the langset, not the dynamic form, so that
161 the charsets should now be in .rodata.
162
50544b13
PL
1632005-11-04 Patrick Lam <plam@mit.edu>
164 * src/fcdir.c (FcDirScanConfig):
165
166 Add test for validity of directory caches that
167 somehow got lost (reported by make distcheck).
168
e6d3e251
PL
1692005-11-04 Patrick Lam <plam@mit.edu>
170 * ChangeLog:
171 * README:
172 * configure.in:
173 * fontconfig/fontconfig.h:
174
175 Bump version to 2.3.92.
176
ea9726b6
PL
1772005-11-02 Patrick Lam <plam@mit.edu>
178 * src/fcpat.c (FcPatternDuplicate):
179
180 Fix argument ordering problem in call to FcPatternTransferFullFname.
181
7358dae4
PL
1822005-11-02 Patrick Lam <plam@mit.edu>
183 * src/fcfreetype.c (FcFreetypeQuery):
184 * src/fcpat.c (FcPatternDestroy, FcPatternDuplicate,
185 FcPatternTransferFullFname):
186
187 Fix warnings and embarrassing double-free error.
188
efa9f2bd
PL
1892005-11-02 Zhe Su <zsu@novell.com>
190 reviewed by: plam
191
192 * fonts.conf.in:
193
194 Change the rule for artificial emboldening in fonts.conf.in. This
195 enables the support for artificial emboldening included in cairo.
196
d7b3ac63
PL
1972005-11-02 Patrick Lam <plam@mit.edu>
198 * src/fcpat.c (FcPatternDestroy, FcPatternTransferFullName):
199
200 Don't zero out full names for FC_REF_CONSTANT fonts;
201 also, duplicate full names when transferring, and free
202 full names when freeing the associated font.
203 Reported by Jinghua Luo.
204
303bcf9b
PL
2052005-11-02 Patrick Lam <plam@mit.edu>
206 * fc-cache/fc-cache.c (scanDirs):
207 * src/fcpat.c (FcValueListSerialize):
208
209 Revert the previous patch and commit the correct patch:
210 I forgot a canonicalization in FcValueListSerialize, so
211 that it would choke on already-serialized input files. Duh!
212
c6b75577
PL
2132005-11-02 Patrick Lam <plam@mit.edu>
214 * fc-cache/fc-cache.c (scanDirs):
215
216 Forcibly rescan a directory before writing a fresh local
217 cache file for that directory, fixing the losing-fonts
218 problem reported by Mike Fabian and also apparently the
219 font cache file corruption.
220
9090cb9e
PL
2212005-11-02 Patrick Lam <plam@mit.edu>
222 * src/fccache.c (FcGlobalCacheLoad):
223
224 Fix thinko: actually, the whole global cache is stale
225 if the global cache is older than the (newest) config file.
226
2b25f00c
PL
2272005-11-02 Patrick Lam <plam@mit.edu>
228 * src/fccache.c (FcGlobalCacheLoad):
229 * src/fccfg.c (FcConfigModifiedTime, FcConfigBuildFonts):
230 * src/fcint.h:
231
232 Declare the global cache of a directory's contents to be stale if
233 the directory is newer than the (newest) configuration file.
234
793154ed
PL
2352005-10-31 Patrick Lam <plam@mit.edu>
236 * src/fcint.h:
237 * src/fclist.c (FcListAppend):
238 * src/fcmatch.c (FcFontRenderPrepare):
239 * src/fcpat.c (FcPatternTransferFullFname, FcPatternDuplicate,
240 FcPatternFreeze, FcPatternBaseFreeze):
241
242 Copy the full pathname whenever duplicating an FcPattern; otherwise,
243 applications continue breaking.
244
d6946c1a
PL
2452005-10-31 Patrick Lam <plam@mit.edu>
246 * fc-cat/fc-cat.c (FcCacheFileRead, main):
247 * src/fcfreetype.c (FcFreeTypeQuery):
248
249 Fix small memory error (tried to free argv); use basename and
250 dirname correctly (they can modify their arguments).
251
e77c1718
PL
2522005-10-31 Patrick Lam <plam@mit.edu>
253 * fc-cat/fc-cat.c:
254 * src/fccache.c:
255 * src/fcfreetype.c:
256 * src/fcint.h:
257 * src/fclist.c:
258 * src/fcpat.c:
259
260 Reinstate basename patch, but keep a hash table linking FcPatterns
261 to their fully-qualified font names for clients' benefit. Clients
262 only pay for the font names once they request the FC_FILE property
263 from an FcPattern, but the font name is malloc'd at that point (i.e.
264 not mmapped: that's impossible, since it may vary between machines.)
265 Clients do have to pay for a copy of the path name per cache file.
266
267 Note that FcPatternGetString now does some rewriting if you ask
268 for an FC_FILE, appending the pathname as appropriate.
269
2702005-10-31 Patrick Lam <plam@mit.edu>
271 * src/fcfreetype.c (FcFreeTypeQuery):
272
273 Revert basename patch, which breaks fontconfig clients on my system.
274
720298e7
PL
2752005-10-25 Jinghua Luo <sunmoon1997@gmail.com>
276 reviewed by: plam
277
278 * fontconfig/fonts.conf.in:
279 * fontconfig/fontconfig.h:
280 * src/fcdefault.c:
281 * src/fcname.c:
282
283 Add FC_EMBEDDED_BITMAP object type to tell Xft/Cairo whether
284 to load embedded bitmaps or not.
285
961d9b99
PL
2862005-10-25 Patrick Lam <plam@mit.edu>
287 * src/fcfreetype.c (FcFreeTypeQuery):
288
289 Only add basename to patterns' FC_FILE element, not any part of
290 the dirname.
291
573da729
PL
2922005-10-22 Patrick Lam <plam@mit.edu>
293 * src/fcfreetype.c:
294
295 Add some more consts, fixing more GCC4 warnings.
296
90442681
PL
2972005-10-22 Zhe Su <zsu@novell.com>
298 reviewed by: plam
299
300 Support localized font family and style names.
301 This has been reported to break old apps like xfd, but modern
302 (gtk+/qt/mozilla) apps work fine.
303
e58b50e8
PL
3042005-10-21 Patrick Lam <plam@mit.edu>
305 * src/fccache.c (FcGlobalCacheLoad):
306
307 Destroy the global cache file if it's terminally broken. (reported by
308 Mike Fabian)
309
2fa3f27e
PL
3102005-10-21 Patrick Lam <plam@mit.edu>
311 * fc-list/fc-list.c (main):
312 * src/fcname.c (FcNameUnparse, FcNameUnparseEscaped):
313 * fontconfig/fontconfig.h:
314
e58b50e8
PL
315 Prevent fc-list from escaping strings when printing them (reported by
316 Matthias Clasen).
2fa3f27e 317
250c1cd4
PL
3182005-10-20 Marcus Meissner <meissner@suse.de>
319 reviewed by: plam
320
321 * fontconfig/fontconfig.h:
322
323 Add valist sentinel markup for FcObjectSetBuild and FcPatternBuild.
324
3252005-10-14 Ross Burton <ross@burtonini.com>
21696e5b
PL
326 reviewed by: plam
327
328 * fc-glyphname/fc-glyphname.c:
329 * src/fclang.c:
330
331 Add consts to variables so as to move arrays into .rodata.
332
15d7bd0a
PL
3332005-10-14 Mike Fabian <mfabian@suse.de>
334 reviewed by: plam
335
336 * src/fccache.c (FcDirCacheUnlink):
337
338 Check existence of directory cache file before attempting to unlink.
339
1178b569
PL
3402005-10-13 Patrick Lam <plam@mit.edu>
341 * src/fccache.c (FcDirCacheUnlink):
342
343 Fix flipped return value on unlink. (Reported by Mike Fabian)
344
3452005-10-12 Patrick Lam <plam@mit.edu>
346
347 * src/fccache.c:
348 * src/fcdir.c (FcDirScanConfig):
349 * src/fcint.h:
350
351 When fc-cache is run without --force, use directory cache files
352 to speed up fc-cache run time. (Reported by Mike Fabian)
353
23787a8f
PL
3542005-10-06 Patrick Lam <plam@mit.edu>
355
356 * src/fcname.c (FcObjectToPtr):
357 * src/fcpat.c (FcStrStaticName):
358
359 Add padding to make valgrind and glibc not hate each other
360 when calling strlen().
361
328929f5
PL
3622005-10-05 Simos Xenitellis <simos74@gmx.net>
363 reviewed by: plam & keithp
364
365 * fonts.conf.in:
366
367 Modify config file to use Greek fonts before Asian fonts with
368 Greek glyphs.
369
1ed67f65
PL
3702005-10-05 Christian Biesinger <cbiesinger@web.de>
371 reviewed by: plam & keithp
372
373 * src/Makefile.am:
374
375 Use libtool -no-undefined flag on all platforms.
376
751932dd
PL
3772005-10-05 Patrick Lam <plam@mit.edu>
378 * src/fccache.c (FcCacheHaveBank):
379
380 Implement move-to-front array for banks (perf regression
381 reported by Ronny V. Vindenes).
382
55c8fa4f
PL
3832005-10-04 Patrick Lam <plam@mit.edu>
384 * src/fccache.c (FcDirCacheValid, FcDirCacheUnlink,
385 FcDirCacheHasCurrentArch):
386 * fc-cache/fc-cache.c (scanDirs):
387 * fontconfig/fontconfig.h:
388
389 Add new API which unlinks directory caches and checks dir caches
390 for existence of appropriate sections. Fix fc-cache to unlink
391 stale cache files and save directory caches that lack relevant
392 sections.
393
6bf23804
PL
3942005-10-03 Patrick Lam <plam@mit.edu>
395 * src/fccache.c (FcDirCacheValid):
396
397 Ensure that a directory cache has the appropriate section
398 before reporting that it is valid (reported by Matthias Clasen).
399
e99f0f0a
PL
4002005-09-29 Mathias Hasselmann <mathias.hasselmann@gmx.de>
401
402 reviewed by: plam
403
404 * configure.in:
405 * src/Makefile.am:
406 * src/fcxml.c:
407
408 Use libxml2 if requested (with --enable-libxml2) or if
409 expat is not available.
410
649cc361
PL
4112005-09-29 Patrick Lam <plam@mit.edu>
412 * src/fccache.c (FcGlobalCacheSave, FcDirCacheWrite):
413
414 Fix multi-arch cache files: compute the position for the
415 block to be added using info from OrigFile, not NewFile.
416
cd310911
PL
4172005-09-28 Patrick Lam <plam@mit.edu>
418 * src/fccache.c (FcCacheMachineSignature):
419
420 Cast results of sizeof() to unsigned int to get rid of
421 warnings on x86_64 (thanks Matthias Clasen).
422
4232005-09-27 Patrick Lam <plam@mit.edu>
9ecb9a9a
PL
424 * src/fccache.c (FcGlobalCacheSave, FcCacheCopyOld,
425 FcDirCacheWrite):
426
427 Use FcAtomic to rewrite cache files.
428
4292005-09-27 Patrick Lam <plam@mit.edu>
430
431 * src/fccache.c (FcDirCacheWrite):
432
433 Don't unlink the fonts.cache-2 file even if there's no data
434 to write; just write an empty cache file. (thanks Lubos Lunak)
435
4362005-09-27 Patrick Lam <plam@mit.edu>
437
438 * src/fccache.c (FcDirCacheWrite):
439
440 Allocate room for the subdirectory names in each
441 directory cache. Thanks to James Cloos for finding
442 and diagnosing this bug!
443
4442005-09-22 Patrick Lam <plam@mit.edu>
445
446 * fc-cache/fc-cache.sgml:
447 * src/fccache.c (FcDirCacheWrite):
448 * src/fccache.h (struct FcCache):
449
450 Update documentation -- fc-cache's man page now says that you
451 need to run fc-cache once per cached architecture; add some
452 documentation to the FcCache structure.
453
454 Make fc-cache write out fonts.cache-2 files for directories with
455 no fonts (i.e. only subdirectories).
456
35c2c7f1
PL
4572005-09-22 Patrick Lam <plam@mit.edu>
458 * doc/edit-sgml.c:
459 * fc-cache/fc-cache.sgml:
460 * fc-case/fc-case.c:
461 * fc-glyphname/fc-glyphname.c:
462 * src/fcdefault.c:
463 * src/fcfreetype.c:
464 * src/fcinit.c:
465 * src/fcxml.c:
466
467 More GCC 4 cleanups, due to Behhad Esfahbod <behdad@beddad.org>.
468
469 * Makefile.am:
470 * configure.in:
471 * fc-lang/fc-lang.c:
472 * fontconfig/fcprivate.h:
473 * fontconfig/fontconfig.h:
474 * src/fccache.c:
475 * src/fccfg.c:
476 * src/fccharset.c:
477 * src/fcdbg.c:
478 * src/fcdir.c:
479 * src/fcfs.c:
480 * src/fcint.h:
481 * src/fclang.c:
482 * src/fclist.c:
483 * src/fcmatch.c:
484 * src/fcname.c:
485 * src/fcpat.c:
486
487 Implement new mmaped cache for font information.
488 Bump so revision to 2.3.90.
489
8245771d
PL
4902005-07-25 Keith Packard <keithp@keithp.com>
491
492 * doc/fontconfig-user.sgml:
493 * fc-glyphname/fc-glyphname.c: (scan), (main):
494 * fc-lang/fc-lang.c: (FcConfigHome):
495 * fc-match/fc-match.c: (main):
496 * src/fccfg.c: (FcConfigHome):
497 * src/fcfreetype.c: (FcSfntNameTranscode), (FcSfntNameLanguage),
498 (FcVendorMatch), (FcFreeTypeQuery), (FcFreeTypeCharSetAndSpacing),
499 (addtag), (FcFontCapabilities):
500 * src/fcpat.c: (FcValueListEntCreate):
501 * src/fcstr.c: (FcStrCaseWalkerInit):
502 * src/fcxml.c: (FcParsePatelt), (FcConfigParseAndLoadDir):
503
504 Various GCC 4 cleanups for signed vs unsigned char
505
506 Match only [0-9]*.conf files in <include>{directory}</include>
507 elements to avoid loading *.rpmsave or .dpkg-old files. (otaylor)
508
e1b9d091
PL
5092005-07-15 Carl Worth <cworth@cworth.org>
510
511 * src/fcint.h:
512 * src/fcinit.c: (FcFini):
513 * src/fcpat.c: (FcPatternFini): Rename FcPatternThawAll to
514 FcPatternFini.
515
516 * src/fcpat.c: (FcObjectStaticName), (FcObjectStaticNameFini):
517 Pull the FcObjectStateName hash table out to file scope, and add
518 FcObjectStaticNameFini so that FcFini will cleanup this hash table
519 as well.
520
521 * src/fcxml.c: (FcConfigParseAndLoad): Clear FILE* to NULL after
522 fclose.
523
f1a42f6b
KP
5242005-06-16 Patrick Lam <plam@MIT.EDU>
525
526 reviewed by: keithp
527
528 * src/fccfg.c: (FcConfigCompareValue):
529 Make FcOpNotContains use FcStrStr for strings so that
530 it matches semantics for !FcOpContains.
531
adc7abac
KP
5322005-05-20 Keith Packard <keithp@keithp.com>
533
534 * debian/changelog:
535 * debian/control:
536 Move fontconfig source package to libs as per override
537
a65a77ae
KP
5382005-05-20 Aiet Kolkhi <aietkolkhi@gmail.com>
539
540 reviewed by: Mike Fabian
541
542 * fc-lang/ka.orth:
543 The ka.orth file requires several characters which are not
544 used anymore in modern Georgian and which are missing in the free
545 Georgian TrueType fonts downloadable at:
546
547 http://aiet.qartuli.net/docs/georgian_on_linux_en.php
548
87c88746
KP
5492005-04-27 Keith Packard <keithp@keithp.com>
550
551 * README:
552 * debian/changelog:
553 Update date to real 2.3.2 release date.
554 Fix change attributions
555
5562005-04-27 Keith Packard <keithp@keithp.com>
557
558 * configure.in:
559 Bump so revision for 2.3.2
560 * fc-cache/fc-cache.c: (scanDirs):
561 Fix a few minor leaks in error cases.
562
1cb309ad
KP
5632005-04-23 Keith Packard <keithp@keithp.com>
564
565 * README:
566 * configure.in:
567 * debian/changelog:
568 * fontconfig/fontconfig.h:
569 Update for version 2.3.2
570
716ac8b8
KP
5712005-04-21 Keith Packard <keithp@keithp.com>
572
573 * debian/fontconfig.postinst:
574 Don't force bitmap font enable in default
575 configuration; allows users to override this in
576 ~/.fonts.conf
577 * debian/po/cs.po:
578 * debian/po/da.po:
579 * debian/po/de.po:
580 * debian/po/es.po:
581 * debian/po/fr.po:
582 * debian/po/ja.po:
583 * debian/po/nl.po:
584 * debian/po/pt.po:
585 * debian/po/pt_BR.po:
586 * debian/po/templates.pot:
587 * debian/po/tr.po:
588 * debian/po/zh_CN.po:
589 Updated translations
590
591 * fc-cache/fc-cache.c: (main):
592 Destroy font configuration on exit to help valgrind
593
594 * fonts.conf.in:
595 * src/fcfreetype.c: (FcSfntNameTranscode), (FcFreeTypeCharIndex),
596 (FcFreeTypeCheckGlyph):
597 Use own transcoding routines in preference to iconv
598 which appears to have leaks in some translators.
599 Call iconv_close after using iconv (oops).
600
601 Prefer unicode encoding of Euro char as some
602 fonts mis-encode Euro in other ones.
603
604 Must fetch bitmap glyphs to get width values
605 to check for monospace/dual-width fonts.
606
2ff4f076
RB
6072005-04-13 Ross Burton <ross@burtonini.com>
608
609 * src/fcpat.c:
610 Check that a pattern isn't already frozen in FcPatternFreeze.
611
ae7d0f35
RB
6122005-03-31 Ross Burton <ross@burtonini.com>
613
614 * src/fclist.c:
615 * src/fcmatch.c:
616 * src/fcpat.c:
617 Run all FcPattern objects through FcObjectStaticName, so that
618 compares can be done on pointers instead of strings (#2659)
619
15603274
TL
6202005-03-17 Tor Lillqvist <tml@novell.com>
621
622 * src/fontconfig.def.in: Add the .dll to the dll name.
623
5f347d9c
KP
6242005-03-10 Keith Packard <keithp@keithp.com>
625
626 * debian/README.Debian:
627 Update to reflect configuration changes
628 * debian/changelog:
629 * debian/fontconfig.postinst:
630 Fix Autohint vs Autohinter mistake
631 * debian/fontconfig.templates:
632 Adopt changes from Josselin Mouette for configuration descriptions
633 Update debian to version 2.3.1-2
634
8c740260
KP
6352005-03-08 Keith Packard <keithp@keithp.com>
636
637 * debian/changelog:
638 * debian/rules:
639 Update debian for 2.3.1
640
79da4fe9
TL
6412005-03-09 Tor Lillqvist <tml@novell.com>
642
643 * fontconfig-zip.in: Get the DLL from "bin" where modern libtools
644 put it, not "lib".
645
646 * src/fccfg.c (FcConfigFileExists): Check also drive letter
647 prefix on Win32.
648
d49dde9f
KP
6492005-03-08 Keith Packard <keithp@keithp.com>
650
651 * README:
652 * configure.in:
653 * fontconfig/fontconfig.h:
654 Update for 2.3.1
655
76a8dfa3
KP
6562005-03-05 Keith Packard <keithp@keithp.com>
657
658 * src/fcfreetype.c: (addtag), (FcFontCapabilities):
659 Include space and remove numbers from valid script tags.
660 This ensures that tags like 'lao ' work while rejecting
661 those which have any digits.
662 Eliminate a spurious debugging variable (len)
663
219f7818
KP
6642005-03-05 Keith Packard <keithp@keithp.com>
665
666 * src/fcfreetype.c: (addtag), (GetScriptTags),
667 (FcFontCapabilities):
668 Rework GSUB/GPOS script parsing to survive broken fonts.
669 Thanks for the broken font go to Manish Singh
670
97bde49a
KP
6712005-03-05 Keith Packard <keithp@keithp.com>
672
673 Josselin Mouette:
674 * debian/changelog:
675 * debian/control:
676 * debian/fontconfig.config:
677 * debian/fontconfig.templates:
678 * debian/rules:
679 Include 2.3 release information in changelog
680 Add Josselin Mouette as an Uploader
681 Set hinting_type to low priority configuration option
682
683 Manish Singh:
684 * debian/fontconfig.postinst:
685 yes_bitmaps.conf -> yes-bitmaps.conf
686
687 Funda Wang:
688 * src/fcfreetype.c:
689 Johap -> Johab
690
683dc3c4
KP
6912005-03-02 Keith Packard <keithp@keithp.com>
692
693 * Makefile.am:
694 * conf.d/Makefile.am:
695 * conf.d/autohint.conf:
696 * conf.d/no-sub-pixel.conf:
697 * conf.d/sub-pixel.conf:
698 * conf.d/unhinted.conf:
699 * debian/autohint.conf:
700 * debian/fontconfig.install:
701 * debian/fontconfig.postinst:
702 * debian/fontconfig.templates:
703 * debian/no-sub-pixel.conf:
704 * debian/unhinted.conf:
705 Move debian-specific conf file examples upstream.
706
707 Sub-pixel configuration examples must smash subpixel value
708 as Xft always sets it from X.
709
710 Change sub-pixel rendering debconf descriptions from
711 Enable/Disable to Always/Never.
712
dc2e06ab
KP
7132005-03-02 Keith Packard <keithp@keithp.com>
714
715 * .cvsignore:
716 * conf.d/.cvsignore:
717 * doc/.cvsignore:
718 Ignore more build detritus
719
720 * Makefile.am:
721 Add debian package construction stuff.
722
723 * config/config.guess:
724 * config/config.sub:
725 Update to newer versions of these tools
726
727 * doc/Makefile.am:
728 Get library manuals to build again (we love automake).
729
730 * debian/README.Debian:
731 * debian/autohint.conf:
732 * debian/changelog:
733 * debian/compat:
734 * debian/control:
735 * debian/copyright:
736 * debian/fontconfig-udeb.install:
737 * debian/fontconfig.config:
738 * debian/fontconfig.defoma:
739 * debian/fontconfig.dirs:
740 * debian/fontconfig.install:
741 * debian/fontconfig.postinst:
742 * debian/fontconfig.postrm:
743 * debian/fontconfig.templates:
744 * debian/libfontconfig1-dev.install:
745 * debian/libfontconfig1.install:
746 * debian/local.conf.md5sum:
747 * debian/no-sub-pixel.conf:
748 * debian/po/POTFILES.in:
749 * debian/po/cs.po:
750 * debian/po/da.po:
751 * debian/po/de.po:
752 * debian/po/es.po:
753 * debian/po/fr.po:
754 * debian/po/ja.po:
755 * debian/po/nl.po:
756 * debian/po/pt.po:
757 * debian/po/pt_BR.po:
758 * debian/po/templates.pot:
759 * debian/po/tr.po:
760 * debian/po/zh_CN.po:
761 * debian/rules:
762 * debian/unhinted.conf:
763 Update debian build system to switch maintainers and
764 deal with 2.3 functionality
765
4afc00ca
KP
7662005-03-01 Keith Packard <keithp@keithp.com>
767
768 * README:
769 * configure.in:
770 * fontconfig/fontconfig.h:
771 Update for 2.3.0
772
0c009d2b
KP
7732005-03-01 Keith Packard <keithp@keithp.com>
774
775 * doc/Makefile.am:
776 Generate and install PDF versions of the manuals
777
778 * doc/fcpattern.fncs:
779 Fix formatting
780
781 * doc/fcstring.fncs:
782 Add missing exported functions, fix data types
783
784 * doc/fontconfig-devel.sgml:
785 Add missing pattern elements.
786
787 * doc/fontconfig-user.sgml:
788 Add missing pattern elements. Document conf.d usage,
789 clarify available orthography list. Fix some config file
790 attributes. Complete list of constants.
791
792 * fontconfig/fontconfig.h:
793 Mark FC_SOURCE deprecated.
794
795 * src/fcfreetype.c: (FcFreeTypeQuery):
796 Don't set FC_SOURCE any longer.
797
414f7202
KP
7982005-02-28 Keith Packard <keithp@keithp.com>
799
800 * Makefile.am:
801 * conf.d/Makefile.am:
802 * conf.d/README:
803 * conf.d/no-bitmaps.conf:
804 * conf.d/sub-pixel.conf:
805 * conf.d/yes-bitmaps.conf:
806 * configure.in:
807 Create prototype /etc/fonts/conf.d directory with a few
808 sample configuration files.
809 Deprecate use of local.conf for local customizations in favor of
810 this directory based scheme which is more easily integrated into
811 installation systems.
812
813 * src/fcname.c:
814 Tag FC_EMBOLDEN as a boolean variable
815
47b49bf1
KP
8162005-02-10 Keith Packard <keithp@keithp.com>
817
818 reviewed by: pborelli@katamail.com
819
820 * src/fcdir.c: (FcFileScanConfig):
821 Free patterns from fonts which are rejected by configuration
822 (bug #2518)
823
845a0bf3
KP
8242005-01-28 Keith Packard <keithp@keithp.com>
825
826 * README:
afca7836
KP
827 * configure.in:
828 * fontconfig/fontconfig.h:
829 Update for version 2.2.99
830
8312005-01-28 Keith Packard <keithp@keithp.com>
832
833 * README:
834 Add a few pointers (#2284, #2285)
845a0bf3 835
ca60d2b5
KP
8362005-01-28 Keith Packard <keithp@keithp.com>
837
838 * src/fcint.h:
839 * src/fcname.c: (FcNameBool):
840 * src/fcxml.c: (FcTypeName), (FcTypecheckValue), (FcTypecheckExpr),
841 (FcTestCreate), (FcEditCreate), (FcConfigLexBool), (FcParseBool),
842 (FcParseAlias), (FcParseInclude), (FcParseTest), (FcParseEdit):
843 Polite typechecking for test and edit expressions. Helps
afca7836 844 catch errors in the font configuration. (bug 229)
ca60d2b5 845
59e149e7
KP
8462005-01-15 Alan Coopersmith <alan.coopersmith@sun.com>
847
848 reviewed by: Keith Packard <keithp@keithp.com>
849
850 * configure.in:
851 Have --with-expat set EXPAT_CFLAGS (bug 2278)
852
d8ae9c92
KP
8532005-01-13 Keith Packard <keithp@keithp.com>
854
855 * doc/fontconfig-user.sgml:
856 Add SEE ALSO section (bug 2085)
857
8582005-01-13 J. Ali Harlow <ali@juiblex.co.uk>
859
860 reviewed by: Keith Packard <keithp@keithp.com>
861
862 * Makefile.am:
863 * configure.in:
864 * doc/Makefile.am:
865 * fc-case/Makefile.am:
866 * fc-glyphname/Makefile.am:
867 * fc-lang/Makefile.am:
868 * src/fontconfig.def.in:
869 Cross compiling fixes (bug 280)
870
8759822e
KP
8712005-01-13 Keith Packard <keithp@keithp.com>
872
873 * fonts.conf.in:
874 Update blanks list (Closes bug 86)
875
fce87a18
KP
8762005-01-04 Keith Packard <keithp@keithp.com>
877
878 * src/fccache.c: (FcCacheFontSetAdd):
879 Verify that every font pattern loaded from cache has
880 both FC_FILE and FC_FAMILY entries.
881 Attempt to fix bug #2219.
882
d5346181
KP
8832004-12-29 Keith Packard <keithp@keithp.com>
884
885 * README:
886 * configure.in:
887 * fontconfig/fontconfig.h:
888 Update for version 2.2.98
889
479f551f
KP
8902004-12-29 Keith Packard <keithp@keithp.com>
891
892 * fontconfig/fontconfig.h:
893 Document ASCII limitations of Fc character conversion macros
894 * src/fcstr.c: (FcStrCaseWalkerLong), (FcStrDowncase):
895 Fix off-by-one error in utf-8 case walking code.
896 Add FcStrDowncase (useful for testing case conversion functions)
897
02748dd3
KP
8982004-12-29 Keith Packard <keithp@keithp.com>
899
900 * .cvsignore:
901 * fc-case/.cvsignore:
902 clean up CVS ignore lists
903 * fc-lang/iso-3166.txt:
904 Add territory database
905
9062004-12-29 Tor Andersson <tor.andersson@gmail.com>
907
908 Reviewed by: Keith Packard
909
910 * fc-lang/ko.orth:
911 Remove Han characters from Korean orthography
912
2ba729ed
KP
9132004-12-29 Keith Packard <keithp@keithp.com>
914
915 * Makefile.am:
916 Reorder utility programs to make sure fc-case is run before fc-lang
917 as fc-lang uses fcstr.c which uses fccase.h
918 * fonts.conf.in:
919 Fix broken XML
920
192296d8
KP
9212004-12-29 Keith Packard <keithp@keithp.com>
922
923 * fonts.conf.in:
924 Adopt some RedHat suggestions for standard font configuration.
925
926 * Makefile.am:
927 * configure.in:
928 * fc-case/CaseFolding.txt:
929 * fc-case/Makefile.am:
930 * fc-case/fc-case.c: (panic), (addFold), (ucs4_to_utf8),
931 (utf8_size), (addChar), (foldExtends), (case_fold_method_name),
932 (dump), (parseRaw), (caseFoldReadRaw), (main):
933 * fc-case/fccase.tmpl.h:
934 Add new helper program 'fc-case' to construct case folding
935 tables from standard Unicode CaseFolding.txt file
936
937 * src/fcint.h:
938 * src/fclist.c: (FcListValueHash):
939 * src/fcstr.c: (FcStrCaseWalkerInit), (FcStrCaseWalkerLong),
940 (FcStrCaseWalkerNext), (FcStrCaseWalkerNextIgnoreBlanks),
941 (FcStrCmpIgnoreCase), (FcStrCmpIgnoreBlanksAndCase),
942 (FcStrHashIgnoreCase), (FcStrIsAtIgnoreBlanksAndCase),
943 (FcStrIsAtIgnoreCase), (FcStrStrIgnoreCase):
944 Re-implement case insensitive functions with Unicode
945 aware versions (including full case folding mappings)
946
5cf8c536
KP
9472004-12-13 Keith Packard <keithp@keithp.com>
948
949 reviewed by: Owen Taylor <otaylor@redhat.com>
950
951 * src/fcmatch.c: (FcFontSetSort):
952 I changed FcFontSetSort to respect the generic aliases better
953 in the face of language matching.
954
955 What I did was to ammend the strict sort order used by FcFontSort so
956 that it 'satisfies' the language specified in the pattern by locating
957 the best matching font supporting each pattern language and then
958 ignores language in the remaining fonts for purposes of matching.
959
960 So, when asking for 'sans:lang=en', you'll get an English font first,
961 and then the remaining fonts sorted with respect to the 'sans' alias
962 alone -- pushing Kochi fonts ahead of other English-supporting Han fonts.
963
46a10637
KP
9642004-12-10 Jakub Pavelek <jakub.pavelek@nokia.com>
965
966 reviewed by: Keith Packard <keithp@keithp.com>
967
968 * fontconfig/fontconfig.h:
969 * fonts.conf.in:
970
971 Configuration changes to request synthetic emboldening of
972 fonts. The actual emboldening code will live in Xft.
973
9af19286
KP
9742004-12-09 John Thacker <thacker@math.cornell.edu>
975
976 reviewed by: Keith Packard <keithp@keithp.com>
977
978 * fc-lang/ru.orth:
979
980 Currently Russian (ru) requires 0406 and 0456 (І and і), but these
981 were eliminated in Russian in 1918 in favor of 0418 and 0438 (И and
982 и), and don't even appear in KOI8-R. (The hypothesis that they
983 don't appear in KOI8-R due to their similarity with Latin I and i is
984 eliminated by their presence in KOI8-U.) I have a couple of fonts
985 with Russian support that don't have the letter.
986
987 Therefore, 0406 and 0456 should be removed from or commented out of
988 ru.orth
989
1c52c0f0
KP
9902004-12-06 michael meeks <mmeeks@novell.com>
991
992 Reviewed by: Keith Packard <keithp@keithp.com>
993
994 * src/fcinit.c: (FcMemReport):
995 * src/fcint.h:
996 * src/fclist.c: (FcObjectSetAdd):
997 * src/fcpat.c: (FcValueListEntCreate), (FcPatternBaseFreeze),
998 (FcPatternInsertElt), (FcPatternEqual), (FcObjectStaticName):
999 * src/fcxml.c: (FcParsePatelt):
1000 memoize strings and share a single copy for all uses. Note that
1001 this could be improved further by using statically allocated blocks
1002 and gluing multiple strings together, but I'm basically lazy.
1003 In my environment with 800 font files, I get a savings of about 90KB.
1004
46b51147
KP
10052004-12-06 Keith Packard <keithp@keithp.com>
1006
1007 * COPYING:
1008 * Makefile.am:
1009 * config/Makedefs.in:
1010 * configure.in:
1011 * doc/edit-sgml.c:
1012 * doc/fcatomic.fncs:
1013 * doc/fcblanks.fncs:
1014 * doc/fccharset.fncs:
1015 * doc/fcconfig.fncs:
1016 * doc/fcconstant.fncs:
1017 * doc/fcfile.fncs:
1018 * doc/fcfontset.fncs:
1019 * doc/fcfreetype.fncs:
1020 * doc/fcinit.fncs:
1021 * doc/fcmatrix.fncs:
1022 * doc/fcobjectset.fncs:
1023 * doc/fcobjecttype.fncs:
1024 * doc/fcpattern.fncs:
1025 * doc/fcstring.fncs:
1026 * doc/fcstrset.fncs:
1027 * doc/fcvalue.fncs:
1028 * doc/fontconfig-devel.sgml:
1029 * doc/fontconfig-user.sgml:
1030 * doc/func.sgml:
1031 * doc/version.sgml.in:
1032 * fc-cache/Makefile.am:
1033 * fc-cache/fc-cache.c:
1034 * fc-glyphname/Makefile.am:
1035 * fc-glyphname/fc-glyphname.c:
1036 * fc-glyphname/fcglyphname.tmpl.h:
1037 * fc-lang/Makefile.am:
1038 * fc-lang/aa.orth:
1039 * fc-lang/ab.orth:
1040 * fc-lang/af.orth:
1041 * fc-lang/am.orth:
1042 * fc-lang/ar.orth:
1043 * fc-lang/ast.orth:
1044 * fc-lang/ava.orth:
1045 * fc-lang/ay.orth:
1046 * fc-lang/az.orth:
1047 * fc-lang/az_ir.orth:
1048 * fc-lang/ba.orth:
1049 * fc-lang/bam.orth:
1050 * fc-lang/be.orth:
1051 * fc-lang/bg.orth:
1052 * fc-lang/bh.orth:
1053 * fc-lang/bho.orth:
1054 * fc-lang/bi.orth:
1055 * fc-lang/bin.orth:
1056 * fc-lang/bn.orth:
1057 * fc-lang/bo.orth:
1058 * fc-lang/br.orth:
1059 * fc-lang/bs.orth:
1060 * fc-lang/bua.orth:
1061 * fc-lang/ca.orth:
1062 * fc-lang/ce.orth:
1063 * fc-lang/ch.orth:
1064 * fc-lang/chm.orth:
1065 * fc-lang/chr.orth:
1066 * fc-lang/co.orth:
1067 * fc-lang/cs.orth:
1068 * fc-lang/cu.orth:
1069 * fc-lang/cv.orth:
1070 * fc-lang/cy.orth:
1071 * fc-lang/da.orth:
1072 * fc-lang/de.orth:
1073 * fc-lang/dz.orth:
1074 * fc-lang/el.orth:
1075 * fc-lang/en.orth:
1076 * fc-lang/eo.orth:
1077 * fc-lang/es.orth:
1078 * fc-lang/et.orth:
1079 * fc-lang/eu.orth:
1080 * fc-lang/fa.orth:
1081 * fc-lang/fc-lang.c:
1082 * fc-lang/fc-lang.man:
1083 * fc-lang/fclang.tmpl.h:
1084 * fc-lang/fi.orth:
1085 * fc-lang/fj.orth:
1086 * fc-lang/fo.orth:
1087 * fc-lang/fr.orth:
1088 * fc-lang/ful.orth:
1089 * fc-lang/fur.orth:
1090 * fc-lang/fy.orth:
1091 * fc-lang/ga.orth:
1092 * fc-lang/gd.orth:
1093 * fc-lang/gez.orth:
1094 * fc-lang/gl.orth:
1095 * fc-lang/gn.orth:
1096 * fc-lang/gu.orth:
1097 * fc-lang/gv.orth:
1098 * fc-lang/ha.orth:
1099 * fc-lang/haw.orth:
1100 * fc-lang/he.orth:
1101 * fc-lang/hi.orth:
1102 * fc-lang/ho.orth:
1103 * fc-lang/hr.orth:
1104 * fc-lang/hu.orth:
1105 * fc-lang/hy.orth:
1106 * fc-lang/ia.orth:
1107 * fc-lang/ibo.orth:
1108 * fc-lang/id.orth:
1109 * fc-lang/ie.orth:
1110 * fc-lang/ik.orth:
1111 * fc-lang/io.orth:
1112 * fc-lang/is.orth:
1113 * fc-lang/iso639-2:
1114 * fc-lang/it.orth:
1115 * fc-lang/iu.orth:
1116 * fc-lang/ja.orth:
1117 * fc-lang/ka.orth:
1118 * fc-lang/kaa.orth:
1119 * fc-lang/ki.orth:
1120 * fc-lang/kk.orth:
1121 * fc-lang/kl.orth:
1122 * fc-lang/km.orth:
1123 * fc-lang/kn.orth:
1124 * fc-lang/ko.orth:
1125 * fc-lang/kok.orth:
1126 * fc-lang/ks.orth:
1127 * fc-lang/ku.orth:
1128 * fc-lang/ku_ir.orth:
1129 * fc-lang/kum.orth:
1130 * fc-lang/kv.orth:
1131 * fc-lang/kw.orth:
1132 * fc-lang/ky.orth:
1133 * fc-lang/la.orth:
1134 * fc-lang/lb.orth:
1135 * fc-lang/lez.orth:
1136 * fc-lang/lo.orth:
1137 * fc-lang/lt.orth:
1138 * fc-lang/lv.orth:
1139 * fc-lang/mg.orth:
1140 * fc-lang/mh.orth:
1141 * fc-lang/mi.orth:
1142 * fc-lang/mk.orth:
1143 * fc-lang/ml.orth:
1144 * fc-lang/mn.orth:
1145 * fc-lang/mo.orth:
1146 * fc-lang/mr.orth:
1147 * fc-lang/mt.orth:
1148 * fc-lang/my.orth:
1149 * fc-lang/nb.orth:
1150 * fc-lang/nds.orth:
1151 * fc-lang/ne.orth:
1152 * fc-lang/nl.orth:
1153 * fc-lang/nn.orth:
1154 * fc-lang/no.orth:
1155 * fc-lang/ny.orth:
1156 * fc-lang/oc.orth:
1157 * fc-lang/om.orth:
1158 * fc-lang/or.orth:
1159 * fc-lang/os.orth:
1160 * fc-lang/pl.orth:
1161 * fc-lang/ps_af.orth:
1162 * fc-lang/ps_pk.orth:
1163 * fc-lang/pt.orth:
1164 * fc-lang/rm.orth:
1165 * fc-lang/ro.orth:
1166 * fc-lang/ru.orth:
1167 * fc-lang/sa.orth:
1168 * fc-lang/sah.orth:
1169 * fc-lang/sco.orth:
1170 * fc-lang/se.orth:
1171 * fc-lang/sel.orth:
1172 * fc-lang/sh.orth:
1173 * fc-lang/si.orth:
1174 * fc-lang/sk.orth:
1175 * fc-lang/sl.orth:
1176 * fc-lang/sm.orth:
1177 * fc-lang/sma.orth:
1178 * fc-lang/smj.orth:
1179 * fc-lang/smn.orth:
1180 * fc-lang/sms.orth:
1181 * fc-lang/so.orth:
1182 * fc-lang/sq.orth:
1183 * fc-lang/sr.orth:
1184 * fc-lang/sv.orth:
1185 * fc-lang/sw.orth:
1186 * fc-lang/syr.orth:
1187 * fc-lang/ta.orth:
1188 * fc-lang/te.orth:
1189 * fc-lang/tg.orth:
1190 * fc-lang/th.orth:
1191 * fc-lang/ti_er.orth:
1192 * fc-lang/ti_et.orth:
1193 * fc-lang/tig.orth:
1194 * fc-lang/tk.orth:
1195 * fc-lang/tl.orth:
1196 * fc-lang/tn.orth:
1197 * fc-lang/to.orth:
1198 * fc-lang/tr.orth:
1199 * fc-lang/ts.orth:
1200 * fc-lang/tt.orth:
1201 * fc-lang/tw.orth:
1202 * fc-lang/tyv.orth:
1203 * fc-lang/ug.orth:
1204 * fc-lang/uk.orth:
1205 * fc-lang/ur.orth:
1206 * fc-lang/uz.orth:
1207 * fc-lang/ven.orth:
1208 * fc-lang/vi.orth:
1209 * fc-lang/vo.orth:
1210 * fc-lang/vot.orth:
1211 * fc-lang/wa.orth:
1212 * fc-lang/wen.orth:
1213 * fc-lang/wo.orth:
1214 * fc-lang/xh.orth:
1215 * fc-lang/yap.orth:
1216 * fc-lang/yi.orth:
1217 * fc-lang/yo.orth:
1218 * fc-lang/zh_cn.orth:
1219 * fc-lang/zh_hk.orth:
1220 * fc-lang/zh_mo.orth:
1221 * fc-lang/zh_sg.orth:
1222 * fc-lang/zh_tw.orth:
1223 * fc-lang/zu.orth:
1224 * fc-list/Makefile.am:
1225 * fc-list/fc-list.c:
1226 * fc-match/Makefile.am:
1227 * fc-match/fc-match.1:
1228 * fc-match/fc-match.c:
1229 * fontconfig/fcfreetype.h:
1230 * fontconfig/fcprivate.h:
1231 * fontconfig/fontconfig.h:
1232 * src/fcatomic.c:
1233 * src/fcblanks.c:
1234 * src/fccache.c:
1235 * src/fccfg.c:
1236 * src/fccharset.c:
1237 * src/fcdbg.c:
1238 * src/fcdefault.c:
1239 * src/fcdir.c:
1240 * src/fcfreetype.c:
1241 * src/fcfs.c:
1242 * src/fcinit.c:
1243 * src/fcint.h:
1244 * src/fclang.c:
1245 * src/fclist.c:
1246 * src/fcmatch.c:
1247 * src/fcmatrix.c:
1248 * src/fcname.c:
1249 * src/fcpat.c:
1250 * src/fcstr.c:
1251 * src/fcxml.c:
1252 Change files from ISO-Latin-1 to UTF-8
1253
fc2cc873
KP
12542004-12-04 Keith Packard <keithp@keithp.com>
1255
1256 * INSTALL:
1257 Update links to new freedesktop.org locations
1258 * Makefile.am:
1259 Add uninstall-local to get rid of fonts.conf and local.conf if they
1260 match the distributed versions. Fixes 'make distcheck'
1261
308dc9c3
KP
12622004-12-04 Keith Packard <keithp@keithp.com>
1263
1264 * README:
1265 * configure.in:
1266 * fontconfig/fontconfig.h:
1267 Updates for version 2.2.97
1268
54560b01
KP
12692004-12-04 Owen Taylor <otaylor@redhat.com>
1270
1271 reviewed by: Keith Packard <keithp@keithp.com>
1272
1273 * fc-cache/fc-cache.c: (main):
1274 Sleep for two seconds before exiting to make sure timestamps
1275 for future changes have distinct mod times in the file system.
1276 Bug #1982.
1277 * fc-lang/pa.orth:
1278 Add Punjabi orthography. Bug #1671.
1279
c5a0b541
KP
12802004-12-04 Keith Packard <keithp@keithp.com>
1281
1282 * fonts.conf.in:
1283 Just remove the FC_FONTDATE -- it has locale issues and
1284 annoys redhat multi-arch installs. Now that all X fonts are
1285 included without prejudice, the chances of the date being at
54560b01 1286 all interesting are rather limited. Bug #505.
c5a0b541
KP
1287 * src/Makefile.am:
1288 Add copyright and license
1289
2d9c79c0
KP
12902004-12-04 Keith Packard <keithp@keithp.com>
1291
1292 * configure.in:
1293 Change default set of fonts to include all of
1294 /usr/X11R6/lib/X11/fonts (or wherever the X fonts are located).
1295 * doc/fontconfig-user.sgml:
1296 Document new <include>directory-name</include> semantics
1297 * fonts.conf.in:
1298 add <include ignore_missing="yes">conf.d</include>
1299 * local.conf:
1300 Add selectfont to ignore bitmap fonts, add comment for
1301 selectfont which accepts bitmap fonts.
1302 * src/fcdir.c:
1303 * src/fcint.h:
1304 * src/fcxml.c: (FcConfigParseAndLoadDir), (FcConfigParseAndLoad):
1305 Allow <include> configuration elements to reference directories.
1306 Parse and load all files of the form [0-9]* in sorted order.
1307
38e528e7
KP
13082004-12-04 Keith Packard <keithp@keithp.com>
1309
1310 * autogen.sh:
1311 Report command line for $srcdir/configure accurately.
1312 Bug #212.
1313
e4125ef9
KP
13142004-12-04 Keith Packard <keithp@keithp.com>
1315
1316 * src/fcfreetype.c: (FcFreeTypeQuery):
1317 Check for non-empty face->family_name and face->style_name
1318 before using those for the font. Empty names match everything.
38e528e7 1319 Bug #210.
e4125ef9 1320
537e3d23
KP
13212004-12-04 Keith Packard <keithp@keithp.com>
1322
1323 * configure.in:
1324 * fontconfig/fontconfig.h:
1325 * src/fcfreetype.c: (FcFreeTypeQuery):
1326 * src/fcname.c:
1327 Create FC_FONTFORMAT from FT_Get_X11_Font_Format function where
1328 available. This provides font file format information (BDF, Type 1,
1329 PCF, TrueType) for each font. Closes #109.
1330
dbf68dd5
KP
13312004-12-04 Daniel Glassey <danglassey@ntlworld.com>
1332
1333 reviewed by: Keith Packard <keithp@keithp.com>
1334
1335 * doc/fontconfig-user.sgml:
1336 Fix typo.
1337
1338 * fontconfig/fontconfig.h:
1339 * src/fcfreetype.c: (FcFreeTypeQuery), (addtag), (compareulong),
1340 (GetScriptTags), (FcFontCapabilities):
1341 * src/fcname.c:
1342 Add detection for font capabilities (bug #105)
1343
4f27c1c0
KP
13442004-12-04 Keith Packard <keithp@keithp.com>
1345
1346 * Makefile.am:
1347 Move existing fonts.conf to fonts.conf.bak
1348
1349 * configure.in:
1350 Add detection of iconv
1351
1352 * doc/fcpattern.fncs:
1353 * doc/fontconfig-devel.sgml:
1354 * doc/fontconfig-user.sgml:
1355 * fonts.dtd:
1356 Document new selectfont elements
1357
1358 * fc-lang/nb.orth:
1359 Switch to UTF-8 in comment
1360
1361 * fontconfig/fontconfig.h:
1362 * src/fcname.c:
1363 Add fullname, and family/style/fullname language entries
1364
1365 * src/fccache.c: (FcCacheFontSetAdd):
1366 * src/fcdir.c: (FcFileScanConfig):
1367 Respect selectfont/*/glob
1368
1369 * src/fcint.h:
1370 * src/fccfg.c: (FcConfigCreate), (FcConfigDestroy),
1371 (FcConfigCompareValue), (FcConfigPatternsAdd),
1372 (FcConfigPatternsMatch), (FcConfigAcceptFont):
1373 * src/fcxml.c: (FcElementMap), (FcVStackDestroy),
1374 (FcVStackPushPattern), (FcPopExpr), (FcParseAcceptRejectFont),
1375 (FcPopValue), (FcParsePatelt), (FcParsePattern), (FcEndElement):
1376 Add support for selectfont
1377
1378 * src/fcfreetype.c: (FcSfntNameTranscode), (FcSfntNameLanguage),
1379 (FcStringInPatternElement), (FcFreeTypeQuery):
1380 Add multi-lingual family/style/fullname support
1381
1382 * src/fclist.c: (FcListPatternMatchAny):
1383 Expose FcListPatternMatchAny (which selectfont/*/pattern uses)
1384
1385 * src/fcpat.c: (FcPatternRemove), (FcPatternAppend),
1386 (FcObjectStaticName):
1387 Add new FcPatternRemove/FcPatternAppend.
1388 FcObjectStaticName stores computed pattern element names which
1389 are required to be static.
1390
c641c77d
KP
13912004-09-09 "NAKAMURA Ken'ichi" <nakamura@sbp.fp.a.u-tokyo.ac.jp>
1392
1393 reviewed by: keithp
1394
1395 * Makefile.am:
1396 Remove spurious / after $(DESTDIR)
1397
b5f36ca0
KP
13982004-06-30 Keith Packard <keithp@keithp.com>
1399
1400 * README:
1401 * configure.in:
1402 * fontconfig/fontconfig.h:
1403 Update for 2.2.96
1404
28f93bc4
KP
14052004-06-30 Keith Packard <keithp@keithp.com>
1406
1407 Provided by: Lubos Lunak <l.lunak@suse.cz>
1408
1409 * src/fccfg.c: (FcConfigUptoDate):
1410 However FcConfigUptoDate() doesn't seem to work. See the attached
1411 patch. First there's an obvious misplaced parenthesis making it
1412 return always false, and second, even this call fails to detect font
1413 changes (e.g. adding a new font to
1414 /usr/X11R6/lib/X11/fonts/truetype). The patch should fix that as
1415 well. The problem seems to be triggered by my fonts.conf specifying
1416 only /usr/X11R6/lib/X11/fonts , and therefore config->configDirs
1417 doesn't include subdirs, unlike config->fontDirs.
1418
3d1ea0e5
KP
14192004-06-03 Keith Packard <keithp@keithp.com>
1420
1421 * fontconfig/fontconfig.h:
1422 Remove comma at end of FcResult enum definition.
1423
087d899c
KP
14242004-05-29 Keith Packard <keithp@keithp.com>
1425
1426 * INSTALL:
1427 Add steps to md5sum release
1428
d81271eb
KP
14292004-05-29 Keith Packard <keithp@keithp.com>
1430
1431 * README:
1432 * configure.in:
1433 * fontconfig/fontconfig.h:
1434 Update for 2.2.95
1435
ec0c740e
KP
14362004-05-29 Keith Packard <keithp@keithp.com>
1437
1438 * fontconfig/fontconfig.h:
1439 * src/fcmatch.c: (FcFontSetMatch):
1440 Add FcResultOutOfMemory to provide an accurate error when
1441 FcFontSetMatch fails in this way
1442
1443 * src/fcfreetype.c:
1444 Make #warning about lacking various FreeType features indicate
1445 which version those features appeared so users know how to
1446 fix the problem (Thanks to Anton Tropashko)
1447
55a69bd0
KP
14482004-05-05 Keith Packard <keithp@keithp.com>
1449
1450 * src/fcfreetype.c: (FcFreeTypeCharSetAndSpacing):
1451 Replace MIN/MAX/ABS macros which happen to have come
1452 from FreeType with fontconfig-specific ones (FC_*)
1453
bd0ddac8
KP
14542004-04-23 Keith Packard <keithp@keithp.com>
1455
1456 * INSTALL:
1457 Extend release preparation instructions to include
1458 notification and distribution steps
1459
626a7016
KP
14602004-04-23 Keith Packard <keithp@keithp.com>
1461
1462 * README:
1463 * configure.in:
1464 * fontconfig/fontconfig.h:
1465 Update to 2.2.94 (2.2.93 shipped with broken libtool bits)
1466
7969113f
KP
14672004-04-23 Keith Packard <keithp@keithp.com>
1468
1469 * .cvsignore:
1470 Ignore a few more autotool files
1471
6ae6acf3
KP
14722004-04-14 Keith Packard <keithp@keithp.com>
1473
1474 * INSTALL:
1475 Add instructions for doing a release
1476
1477 * fontconfig.spec.in:
1478 clean up .spec file; perhaps this will be useful to somebody...
1479
1480 * README:
1481 * configure.in:
1482 * fontconfig/fontconfig.h:
1483 Update to 2.2.93
1484
1485 * fc-lang/fc-lang.c:
1486 Make 'scanopen' static so GCC doesn't whine about lacking prototype
1487
1488 * fc-glyphname/Makefile.am:
1489 * fc-lang/Makefile.am:
1490 * fc-list/Makefile.am:
1491 * fc-match/Makefile.am:
1492 * src/Makefile.am:
1493 Add WARN_CFLAGS to pass -W flags for GCC systems
1494
1495 * src/fcfreetype.c: (FcNoticeFoundry), (FcVendorMatch),
1496 (FcVendorFoundry), (FcGetPixelSize), (FcFreeTypeQuery):
1497 Change various char types around to match across
1498 function calls.
1499 Fixed bug in using available_sizes[i].height which
1500 is in pixels, not 64ths of a pixel.
1501
89e28590
KP
15022004-03-06 Keith Packard <keithp@keithp.com>
1503
1504 * src/fcfreetype.c: (FcFreeTypeQuery):
1505 Force FC_FOUNDRY and FC_WIDTH to always be set so that
1506 matches looking for explicit values prefer exact matches
1507
02638f1a
KP
15082004-03-02 Keith Packard <keithp@keithp.com>
1509
1510 Supplied by: mfabian@suse.de (Mike FABIAN)
1511
1512 * src/fcfreetype.c: (FcFreeTypeQuery):
1513 Bug #260 fc-cache generates wrong spacing values for bitmap fonts
1514 Was using (strcmp (a,b)) instead of (!strcmp(a,b)).
1515
de66e750
MS
15162004-02-21 Manish Singh <yosh@gimp.org>
1517
1518 * fc-glyphname/fc-glyphname.c: (main):
1519 Cast strlen to int for printf, so we're 64-bit clean.
1520
208a720f
KP
15212004-02-11 Keith Packard <keithp@keithp.com>
1522
1523 * configure.in:
1524 * src/fcfreetype.c: (FcGetPixelSize):
1525 Ok, so I messed up the test for y_ppem. Let's see if I
1526 got it right this time.
1527
4f38fa81
KP
15282004-02-10 Keith Packard <keithp@keithp.com>
1529
1530 * configure.in:
1531 * src/fcfreetype.c: (FcGetPixelSize):
1532 Pre-2.1.5 versions of FreeType didn't include y_ppem in the
1533 FT_Bitmap_Size record. Add a configure.in test for this
1534 and change the code accordingly (using height instead).
1535
b68b9646
KP
15362004-02-06 Keith Packard <keithp@keithp.com>
1537
1538 * fc-lang/nds.orth:
1539 Add Low Saxon orthography
1540 (Kenneth Rohde Christiansen <kenneth@gnu.org>)
1541
1542 * src/fccfg.c: (FcConfigNewestFile):
1543 Oops. Left 'newest.set' unset, which would miscompute
1544 the newest file
1545
1546 * src/fcfreetype.c: (FcGetPixelSize), (FcFreeTypeQuery),
1547 (FcFreeTypeCheckGlyph):
1548 Add FcGetPixelSize to extract correct pixel size from bdf/pcf
1549 font properties (which report the wrong value in current FreeType)
1550
1551 Don't attempt to check for empty glyphs in non-scalable fonts; they
1552 have no outlines...
1553
f4c52909
TL
15542004-02-01 Tor Lillqvist <tml@iki.fi>
1555
1556 * src/fccfg.c (FcConfigCreate): fontconfig, at least as used by
1557 GIMP and/or PangoFT2 on Windows, crashes when trying to save the
1558 cache if config->cache is NULL, which happens if FcConfigHome() is
1559 NULL. Guard against that by using the temp folder in that case.
1560
d3481737
RP
15612004-01-03 Roozbeh Pournader <roozbeh@sharif.edu>
1562
1563 * fc-lang/az_ir.orth:
1564 * fc-lang/ku_ir.orth:
1565 * fc-lang/ps_af.orth:
1566 * fc-lang/ps_pk.orth:
1567 Added orthographies for Iranian Azerbaijani and Kurdish, and Pashto
1568 (Afghan and Pakistani).
1569 * fc-lang/ur.orth:
1570 Updated Urdu orthography with real data.
1571
d098e4eb
CW
15722003-12-11 Carl Worth <cworth@east.isi.edu>
1573
1574 * fc-list/Makefile.am (man_MANS): Move man_MANS into the 'if
1575 USEDOCBOOK' block.
1576
1577 * fc-cache/Makefile.am (man_MANS): Move man_MANS into the 'if
1578 USEDOCBOOK' block.
1579 (all-local): Remove excessive whitespace.
1580
1581 * autogen.sh: Add 'set -e' to abort when any program fails,
1582 (avoids printing of 'now type make' after configure aborts).
1583
408dd9c0
KP
15842003-11-17 Eric Christopherson <rakko@charter.net>
1585
1586 reviewed by: Keith Packard <keithp@keithp.com>
1587
1588 * doc/Makefile.am:
1589 * fontconfig/fcfreetype.h:
1590 * src/fcfreetype.c:
1591 Switch to FreeType 2.1.7 style includes. Bug #150.
1592
8e8fcda4
NL
15932003-11-16 Noah Levitt <nlevitt@columbia.edu>
1594
1595 * fc-list/fc-list.sgml: Add some example usages.
1596
344a0e33
RP
15972003-11-10 Roozbeh Pournader <roozbeh@sharif.edu>
1598
1599 * src/fcxml.c:
1600 Fixed a bug "FcStrtod" in handling some cases with two-byte decimal
1601 separators.
1602
16032003-10-27 Keith Packard <keith@keithp.com>
27143fc9
KP
1604
1605 * configure.in:
1606 * fontconfig/fontconfig.h:
1607 Update to version 2.2.92
1608
4cbc3ee8
KP
16092003-10-27 Keith Packard <keithp@keithp.com>
1610
1611 * Makefile.am:
1612 * configure.in:
1613 * doc/Makefile.am:
1614 * fc-cache/Makefile.am:
1615 * fc-glyphname/Makefile.am:
1616 * fc-lang/Makefile.am:
1617 * fc-list/Makefile.am:
1618 * fc-match/Makefile.am:
1619 * test/Makefile.am:
1620 * test/run-test.sh:
1621 Yet more cleanups to finish getting 'make distcheck' working
1622 This has been tested to ensure that it even works from a _build
1623 directory.
1624
394b2bf0
KP
16252003-10-26 Keith Packard <keithp@keithp.com>
1626
1627 * configure.in:
1628 * doc/Makefile.am:
1629 * fc-cache/Makefile.am:
1630 * fc-glyphname/Makefile.am:
1631 * fc-lang/Makefile.am:
1632 * fc-lang/fc-lang.c: (scanopen), (scan), (main):
1633 * fc-list/Makefile.am:
1634 * fc-match/Makefile.am:
1635 Attempts to fix 'make distcheck' work. Things are
1636 progressing pretty well, but there are still failures
1637 long into the process dealing with docs (as always).
1638
1639 The big changes here are mostly to make $(srcdir) != "."
1640 work correctly, fixing the docbook related sections and
1641 fc-lang were particularily tricky. Docbook refuses to load
1642 system entities from anywhere other than where the original .sgml
1643 file was located, so no luck looking in "." for the
1644 configure-generated version.sgml and confdir.sgml files.
1645
1646 fc-lang needed help finding .orth files; added a -d option
1647 to set the directory as the least evil of many options.
1648
1649 Now to go use a faster machine and try and wring out the last
1650 issues.
1651
3541556b
KP
16522003-10-26 Keith Packard <keithp@keithp.com>
1653
1654 Tag version 2.2.91
1655
e99043ac
KP
16562003-10-26 Keith Packard <keithp@keithp.com>
1657
1658 * doc/Makefile.am:
1659 Include confdir.sgml.in in EXTRA_DIST
1660
75839218
JM
16612003-10-09 Josselin Mouette <joss@debian.org>
1662
1663 * fc-cache/fc-cache.sgml fc-cache/Makefile.am:
1664 * fc-list/fc-list.sgml fc-list/Makefile.am:
1665 Replace fc-cache and fc-list manpages with more detailed, SGML
1666 versions.
1667
f077d662
OT
16682003-09-23 Owen Taylor <otaylor@redhat.com>
1669
1670 * fontconfig/fontconfig.h src/fcdefault.c (FcDefaultSubstitute)
1671 src/fcname.c: Add a FC_HINT_STYLE key for patterns, with
1672 possible values HINT_NONE/HINT_SLIGHT/HINT_MEDIUM/HINT_FULL.
1673 (Bug #117)
1674
44f59f71
OT
16752003-09-23 Owen Taylor <otaylor@redhat.com>
1676
1677 * fc-lang/ka.orth: Remove Georgian capitals, they
1678 aren't used for normal writing. (Bug #116)
1679
a05d257f
NL
16802003-09-06 Noah Levitt <nlevitt@columbia.edu>
1681
1682 * doc/fontconfig-devel.sgml:
1683 * doc/fontconfig-user.sgml:
1684 * fontconfig/fontconfig.h:
1685 * src/fcname.c:
1686 * src/fcfreetype.c (FcFreeTypeCharSetAndSpacing): Add new spacing
1687 value FC_DUAL (dual-width, as some CJK fonts). (bug #111)
1688
1689 * src/fcfreetype.c (FcFreeTypeCharSetAndSpacing): When checking for
1690 monospace and dual-width fonts, allow roughly a 3% variance in the
1691 advances.
1692
3ef32bcd
MS
16932003-08-31 Manish Singh <yosh@gimp.org>
1694
1695 * src/fccfg.c (FcConfigAppFontClear): Support passing NULL to
1696 use default config.
1697
34cd0514
CW
16982003-08-15 Carl Worth <cworth@isi.edu>
1699
1700 * src/fcxml.c (FcEditDestroy): Fix leak of FcEdit.
1701 (FcPopExpr): Add comment about unhandled FcVStackGlob case.
1702
1703 * src/fcpat.c (FcValueListEntDestroy): New function to support
1704 FcFini memory cleanup. Some statistics are not kept in
1705 synch. here.
1706 (FcValueListFreeze): Move hashTable outside this function so it
1707 can be accessed by FcValueListThawAll.
1708 (FcValueListThawAll): New function complements FcValueListFreeze.
1709 (FcPatternBaseFreeze): Move hashTable outside this function so it
1710 can be accessed by FcPatternBaseThawAll.
1711 (FcPatternBaseThawAll): New function complements
1712 FcPatternBaseFreeze.
1713 (FcPatternThawAll): New function complements FcPatternFreeze.
1714
1715 * src/fcinit.c (FcFini): Add new FcFini to cleanup everything.
1716
1717 * src/fccharset.c (FcCharLeafEntCreate): Save pointers to all
1718 allocated FcCharLeafEnt "blocks" so they can be freed later.
1719 (FcCharSetFreezeLeaf): Move hashTable outside this function so it
1720 can be accessed by FcCharSetThawAllLeaf.
1721 (FcCharSetThawAllLeaf): New function complements FcCharSetFreezeLeaf.
1722 (FcCharSetFreezeBase): Move hashTable outside this function so it
1723 can be accessed by FcCharSetThawAll.
1724 (FcCharSetThawAll): New function complements FcCharSetFreeze.
1725
1726 * src/fccfg.c (FcSubstDestroy): Fix leak of outer FcSubst.
1727 (FcConfigDestroy): Fic leak of FcBlanks.
1728
1729 * fc-list/fc-list.c (main): Fix leak of FcObjectSet.
1730 (main): Add call to FcFini when finished.
1731
1732 * fc-glyphname/fc-glyphname.c: Mark several local functions as
1733 static. Add prototypes.
1734
1735 * doc/fcinit.fncs: Add documentation for FcFini function.
1736
1737 * doc/edit-sgml.c: Mark several local functions as static. Add
1738 prototypes.
1739
1740 * doc/Makefile.am (DOC_MODULE): Fix "suspicious" lines.
1741
c3941ba9
TL
17422003-06-15 Tor Lillqvist <tml@iki.fi>
1743
231051f4
TL
1744 * test/run-test.sh (FONTCONFIG_FILE): Remove CRs from the out file
1745 before comparing (needed on Windows).
1746
c3941ba9
TL
1747 * src/Makefile.am (install-libtool-import-lib): Fix cut&paste error.
1748
ee1d8125
TL
17492003-06-13 Tor Lillqvist <tml@iki.fi>
1750
1751 * fontconfig-zip.in (DEVZIP): Add share/doc directory. Add Fc*.3
1752 man pages.
1753
1754 * configure.in: Set FC_DEFAULT_FONTS on Win32 to the
1755 WINDOWSFONTDIR token.
1756
1757 * src/fontconfig.def.in: Move the LIBRARY and VERSION lines to the
1758 end, not to confuse libtool, which expects the EXPORTS line to be
1759 the first. Add FcConfigEnableHome.
1760
e5206dbc
TL
1761 * src/fccfg.c: Check also for DLL_EXPORT as indication of being
1762 built as a DLL on Win32.
1763
4ae7f71c
KP
17642003-06-09 Keith Packard <keithp@keithp.com>
1765
1766 * Tag version 2.2.90
1767
8edb970e
KP
17682003-06-09 Keith Packard <keithp@keithp.com>
1769
1770 * Optimization in FcLangSetIndex was broken, occasionally
1771 returning a pointer to the wrong location on miss
1772
1773 * Add fc-match to test font matching from the command line.
1774
17752003-05-31 Keith Packard <keithp@keithp.com>
1776
1777 * (Bug 85) add support for culmus fonts
1778 * (Bug 87) Automake 1.4 doesn't do man_MAN1 correctly
1779 * (Bug 88) Fix usage info on non-long option systems (Tim Mooney)
1780
17812003-05-28 James Su <suzhe@turbolinux.com.cn>
1782
1783 * Fix "contains" op for strings and langsets.
1784
17852003-05-17 Keith Packard <keithp@keithp.com>
1786
1787 * Fix build error with BDF prop local. Free langset after query
1788
17892003-05-14 Keith Packard <keithp@keithp.com>
1790
1791 * Extract spacing from XLFD atom
1792
17932003-05-12 Juliusz Chroboczek <jch@pps.jussieu.fr>
1794
1795 * Reinstate SETWIDTH_NAME parsing for legacy fonts,
1796 disappeared in 1.30.
1797
1798 * Generate FC_SIZE and FC_DPI for legacy bitmap fonts
1799
18002003-05-12 Keith Packard <keithp@keithp.com>
1801
1802 * Use FcIsWidth to share code
1803
1804 * Set FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH when scanning fonts to avoid
1805 misclassifying some Han fonts as monospaced.
1806
18072003-05-07 Keith Packard <keithp@keithp.com>
1808
1809 * Add filename-based accept/reject to ammend available fonts.
1810
1811 * Change FT_ENCODING_ADOBE_CUSTOM to ft_encoding_adobe_custom for
1812 older FreeType releases.
1813
18142003-05-06 Keith Packard <keithp@keithp.com>
1815
1816 * Remove 0b82 and Tamil numbers from tamil
1817 orthography (Jungshik Shin <jshin@mailaps.org>)
1818
18192003-05-04 Keith Packard <keithp@keithp.com>
86b12431
KP
1820
1821 + Map glyph names in fonts with adobe custom encoding to unicode
1822
8edb970e
KP
18232003-05-02 Keith Packard <keithp@keithp.com>
1824
1825 * Add FC_WEIGHT_BOOK as weight 75
1826
18272003-04-30 Keith Packard <keithp@keithp.com>
1828
1829 * Typo in bitstream foundry name
1830
18312003-04-24 Keith Packard <keithp@keithp.com>
1832
1833 * Eliminate italic_angle check for PS fonts
1834
18352003-04-23 Noah Levitt <nlevitt@columbia.edu>
1836
1837 * Getting closer to fixing /etc/fonts hard-coding.
1838
18392003-04-22 Keith Packard <keithp@keithp.com>
1840
1841 * Update autogen.sh to work with newer automake versions
1842 * Handle pattern elements moving during multiple edits
1843
8c87b429
KP
18442003-04-23 James Henstridge <james@daa.com.au>
1845
1846 * doc/fontconfig-devel.sgml: close the <para> element.
1847
1848 * doc/fcpattern.fncs: close the <para> element.
1849
1850 * doc/func.sgml: close the <refsynopsisdiv> element.
1851
8edb970e
KP
18522003-04-22 Keith Packard <keithp@keithp.com
1853
1854 * Update autogen.sh to work with newer automake versions
1855 * Handle pattern elements moving during multiple edits
1856
12d49d3c
CW
18572003-04-17 Colin Walters <walters@debian.org>
1858
1859 + Remove some unused variables, and initialize some other ones so
1860 gcc doesn't warn us.
1861
ab06f005
KP
18622003-04-16 Keith Packard <keithp@keithp.com>
1863
1864 + tag version 2.1.94
1865
18662003-04-16 Keith Packard <keithp@keithp.com>
1867
1868 + add BDF property fetching support for foundry
1869 (from Juliusz Chroboczek)
1870 + add BDF property fetching support for width
1871
18722003-04-11 Juliusz Chroboczek <jch@pps.jussieu.fr>
1873
1874 + Implemented foundry generation for Type 1 and TrueType
1875
18762003-04-11 Gerard Escalante <g2@magestudios.net>
1877
1878 + Retrieve information from Type1 FontInfo dictionaries
1879
8c8caabd
CW
18802003-04-07 Colin Walters <walters@verbum.org>
1881
1882 + src/Makefile.am: Fix dummy makefile target names when
1883 MS_LIB_AVAILABLE isn't set.
1884
daeed6e0
TL
18852003-03-22 Tor Lillqvist <tml@iki.fi>
1886
1887 Changes for Windows:
1888
1889 + On Windows with gcc (a.k.a. mingw) build as a DLL.
1890
1891 + We don't want to hardcode the fonts.conf file location in the
1892 DLL, so we look up the DLL location at run-time in a DllMain()
1893 function. The fonts.conf location is deduced from that.
1894
1895 + The colon can't be used as path separator on Windows,
1896 semicolon is used instead. File path components can be separated
1897 with either slash or backslash. Absolute paths can also begin
1898 with a drive letter.
1899
1900 + Add internal function FcStrLastSlash that strrchr's the last
1901 slash, or backslash on Windows.
1902
1903 + There is no link() on Windows. For atomicity checks, mkdir a
1904 lock directory instead.
1905
1906 + In addition to HOME, also look for USERPROFILE.
1907
1908 + Recognize the special font directory token WINDOWSFONTDIR, to
1909 use the system's font directory.
1910
1911 + Remove the fontconfig-def.cpp that was obsolete. Add
1912 fontconfig.def(.in), without internal functions.
1913
1914 + Add a fontconfig-zip(.in) script, used to build a binary
1915 distribution.
1916
dbe9a11e
MH
1917Fri Mar 7 07:55:00 EST 2003 Mike A. Harris <mharris@redhat.com>
1918 + RPM specfile cleanups for 2.1.92: Removed man1/* and added man5/*
1919 to main package and man3/* to devel package
1920
1921 + Added missing defattr(-, root, root) to main RPM package
1922
1923 + Added HTML and text development documentation to -devel subpackage
1924
c92abf78
MH
1925Wed Mar 5 05:08:00 EST 2003 Mike A. Harris <mharris@redhat.com>
1926 + Added back the configure macro options --disable-docs, otherwise
1927 fontconfig installs docs into /usr/share/doc/fontconfig (with no
1928 version number) unconditionally, causing RPM to fail the build due
1929 to _unpackaged_files_terminate_build. We pick up the pregenerated
1930 docs with %doc already.
1931
b06766e4
MH
1932Wed Mar 5 04:26:20 EST 2003 Mike A. Harris <mharris@redhat.com>
1933 + Removed commented out rpm macro define at top of spec file,
1934 replacing it with a simple explanation, since rpm macros are
1935 expanded by rpm even in comments.
1936
1937 + Changed /usr/bin to _bindir in BuildRequires lines
1938
1939 + Cleaned up rpm postinstall script, and made fc-cache use _bindir
1940
1941 + Reorganized file manifest lists
1942
1943Sun Mar 2 14:16:17 EST 2003 Owen Taylor <otaylor@redhat.com>
22dc6fc6
OT
1944
1945 + fontconfig.spec.in: Improvements from Red Hat spec file.
1946
1947 + {fc-lang,fc-cache,fc-list}/Makefile.am: Add man pages.
1948
1949 + docs/*.sgml: SGML fixes.
1950
8fc10a72
KP
1951Sat Mar 1 17:28:53 PST 2003 keithp
1952 + Ok, so the ChangeLog is a bit out of date
1953
1954 + Lots of bugs fixed; most are in bugzilla, the
1955 biggest problems were in cache management where
1956 Owen discovered the library would lose badly when
1957 combining fonts-cache and ~/.fonts-cache data
1958
1959 + Converted from autoconf to automake. This after
1960 getting patches accepted into libtool to allow
1961 the '-version-number' argument which lets
1962 packages set version numbers explicitly rather
1963 than the roundabout libtool way
1964
1965 + Converted documentation to SGML using the docbook
1966 DTD. Now .txt and .html documents are installed
1967 in /usr/share/doc/fontconfig and there's no
1968 man page. Perhaps a man version can be written
1969 at some point.
1970
c2022f99
KP
1971Sat Aug 31 15:21:22 PDT 2002 keithp
1972 + Xrender and Xft had several bugs related to
1973 rendering manually placed or poly-face text
1974
1975 + Added more complete memory tracing in fontconfig
1976 Checked with (patched) mozilla and found no leaks
1977
1978 + Updated Latin orthographies by comparing those from
1979 evertype.com with those from eki.ee. Tried to make
1980 sensible choices, including chars that occured in both
1981 and leaving some optional chars out that occured only
1982 in one.
1983
2458a6d8 1984Mon Aug 26 16:33:04 PDT 2002 keithp
c2022f99 1985 + Owen discovered that FcLangSetHasLang wasn't actually
2458a6d8
KP
1986 checking the language set.
1987
5d6788ac
KP
1988Mon Aug 26 13:37:23 PDT 2002 keithp
1989 + Append a version number to cache filenames
1990
47d4f950
KP
1991Thu Aug 22 11:36:18 PDT 2002 keithp
1992
1993 + Add "contains" and "not_contains" operators and elements to
1994 font configuration
1995
1996 + Changed semantics of eq operator for LangSets to check for
1997 FcLangEqual so that any match will do
1998
1999 + FcFontList was using FcConfigCompareValue (...FcOpEqual) instead
2000 of FcValueEqual to check for identical values when inserting into
2001 the results. This broke when the above semantic change was made,
2002 now it uses FcValueEqual which is "more correct" in any case.
2003
d8d73958
KP
2004Thu Aug 22 00:32:29 PDT 2002 keithp
2005
2006 + Reimplement FC_LANG as new datatype. Lists of strings
2007 was consuming over a megabyte of memory for 401 fonts.
2008
2009 + Freeze patterns loaded from cache files. This shares
2010 common value lists and common patterns which saves
2011 considerable memory.
2012
2013 + Change the denotation of 'constant' charsets to use special
2014 ref value instead of separate boolean.
2015
2016 + Clean up leak tracing stuff, found several unannoted alloc/free
2017 calls
2018
2019Tue Aug 20 16:17:37 PDT 2002 keithp
2020
2021 + Fix memory leak when parsing matrices from XML
2022
2023Mon Aug 19 11:57:27 PDT 2002 keithp
2024
fa244f3d
KP
2025 + Fix autoconf files to pass FONTCONFIG_PATH on
2026 compile line so that ${prefix} gets substituted
2027 correctly.
2028
2029 + Use getc_unlocked/putc_unlocked on systems that
2030 provide them to avoid damage done to stdio by posix
2031
2032 + Eliminate FC_PATTERN and FcTypePattern in favor of
2033 an extended api for FcConfigSubstitute which takes
2034 both the font and the pattern.
2035
2036 + Add 'sans serif' alias for 'sans-serif' as some apps
2037 can't handle hyphens in family names
2038
2039 + Eliminate pretense of support for libxml2
2040
2041 + Comment origins of Han orthographies
2042
aefb2c41
KP
2043Tue Jul 30 18:37:09 PDT 2002 keithp
2044
2045 + Add binding property to edit element so that strong
2046 binding values may be inserted by the config file.
2047 The default remains weak.
2048
2049Sun 28 Jul 04:16:55 PDT 2002 keithp
2050
2051 + Tagged release candidate 1 in the CVS tree and
2052 placed fcpackage.rc1.tar.gz for distribution
2053
2054Thu Aug 1 08:55:08 PDT 2002 keithp
2055
2056 + Fixed autoconf builds to always specify install
2057 target files (for BSD). Also fixed to
2058 define FONTCONFIG_PATH in config.h so that
2059 nonstandard installs will actually work.