Update for version 2.2.98
This commit is contained in:
parent
479f551f6d
commit
d53461812d
|
@ -1,3 +1,10 @@
|
||||||
|
2004-12-29 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
|
* README:
|
||||||
|
* configure.in:
|
||||||
|
* fontconfig/fontconfig.h:
|
||||||
|
Update for version 2.2.98
|
||||||
|
|
||||||
2004-12-29 Keith Packard <keithp@keithp.com>
|
2004-12-29 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
* fontconfig/fontconfig.h:
|
* fontconfig/fontconfig.h:
|
||||||
|
|
22
README
22
README
|
@ -1,7 +1,25 @@
|
||||||
Fontconfig
|
Fontconfig
|
||||||
Font configuration and customization library
|
Font configuration and customization library
|
||||||
Version 2.2.97
|
Version 2.2.98
|
||||||
2004-12-04
|
2004-12-29
|
||||||
|
|
||||||
|
2.2.98
|
||||||
|
|
||||||
|
Share object name strings (Michael Meeks)
|
||||||
|
|
||||||
|
Eliminate a couple of codepoints from Russian orthography (John Thacker)
|
||||||
|
|
||||||
|
Add synthetic emboldening configuration changes (Jakub Pavelek)
|
||||||
|
|
||||||
|
Change FcFontSetSort to ignore language after fonts with the requested
|
||||||
|
languages have been found. (Owen Taylor)
|
||||||
|
|
||||||
|
Add some RedHat font configuration changes (Owen Tayler).
|
||||||
|
|
||||||
|
Add full Unicode case folding support to case-ignoring string functions
|
||||||
|
(Keith Packard)
|
||||||
|
|
||||||
|
Remove Han characters from Korean orthography (Tor Andersson)
|
||||||
|
|
||||||
2.2.97
|
2.2.97
|
||||||
|
|
||||||
|
|
|
@ -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.97)
|
AM_INIT_AUTOMAKE(fontconfig, 2.2.98)
|
||||||
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 97
|
#define FC_REVISION 98
|
||||||
|
|
||||||
#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