Update for version 2.2.99
This commit is contained in:
parent
845a0bf37a
commit
afca783626
11
ChangeLog
11
ChangeLog
|
@ -1,7 +1,14 @@
|
||||||
2005-01-28 Keith Packard <keithp@keithp.com>
|
2005-01-28 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
* README:
|
* README:
|
||||||
Add a few pointers
|
* configure.in:
|
||||||
|
* fontconfig/fontconfig.h:
|
||||||
|
Update for version 2.2.99
|
||||||
|
|
||||||
|
2005-01-28 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
|
* README:
|
||||||
|
Add a few pointers (#2284, #2285)
|
||||||
|
|
||||||
2005-01-28 Keith Packard <keithp@keithp.com>
|
2005-01-28 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
|
@ -11,7 +18,7 @@
|
||||||
(FcTestCreate), (FcEditCreate), (FcConfigLexBool), (FcParseBool),
|
(FcTestCreate), (FcEditCreate), (FcConfigLexBool), (FcParseBool),
|
||||||
(FcParseAlias), (FcParseInclude), (FcParseTest), (FcParseEdit):
|
(FcParseAlias), (FcParseInclude), (FcParseTest), (FcParseEdit):
|
||||||
Polite typechecking for test and edit expressions. Helps
|
Polite typechecking for test and edit expressions. Helps
|
||||||
catch errors in the font configuration.
|
catch errors in the font configuration. (bug 229)
|
||||||
|
|
||||||
2005-01-15 Alan Coopersmith <alan.coopersmith@sun.com>
|
2005-01-15 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||||
|
|
||||||
|
|
16
README
16
README
|
@ -1,11 +1,23 @@
|
||||||
Fontconfig
|
Fontconfig
|
||||||
Font configuration and customization library
|
Font configuration and customization library
|
||||||
Version 2.2.98
|
Version 2.2.99
|
||||||
2004-12-29
|
2005-1-28
|
||||||
|
|
||||||
Check INSTALL for compilation and installation instructions.
|
Check INSTALL for compilation and installation instructions.
|
||||||
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
|
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
|
||||||
|
|
||||||
|
2.2.99
|
||||||
|
|
||||||
|
Verify cache for FC_FILE and FC_FAMILY in every entry (#2219)
|
||||||
|
|
||||||
|
Update blanks list from recent Unicode docs (#86)
|
||||||
|
|
||||||
|
Various small build fixes (#280, #2278,
|
||||||
|
|
||||||
|
Documentation fixes (#2085, #2284, #2285)
|
||||||
|
|
||||||
|
Add polite typechecking to config file loader (#229)
|
||||||
|
|
||||||
2.2.98
|
2.2.98
|
||||||
|
|
||||||
Share object name strings (Michael Meeks)
|
Share object name strings (Michael Meeks)
|
||||||
|
|
|
@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
|
||||||
dnl version. This same version number must appear in fontconfig/fontconfig.h
|
dnl version. This same version number must appear in fontconfig/fontconfig.h
|
||||||
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
|
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
|
||||||
dnl not possible to extract the version number here from fontconfig.h
|
dnl not possible to extract the version number here from fontconfig.h
|
||||||
AM_INIT_AUTOMAKE(fontconfig, 2.2.98)
|
AM_INIT_AUTOMAKE(fontconfig, 2.2.99)
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
dnl libtool versioning
|
dnl libtool versioning
|
||||||
|
|
|
@ -40,7 +40,7 @@ typedef int FcBool;
|
||||||
|
|
||||||
#define FC_MAJOR 2
|
#define FC_MAJOR 2
|
||||||
#define FC_MINOR 2
|
#define FC_MINOR 2
|
||||||
#define FC_REVISION 98
|
#define FC_REVISION 99
|
||||||
|
|
||||||
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue