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