Bump version to 2.5.92
This commit is contained in:
parent
366887c384
commit
d33d23ada0
40
README
40
README
|
@ -1,12 +1,48 @@
|
||||||
Fontconfig
|
Fontconfig
|
||||||
Font configuration and customization library
|
Font configuration and customization library
|
||||||
Version 2.5.91 (2.6 RC1)
|
Version 2.5.92 (2.6 RC2)
|
||||||
2008-01-10
|
2008-05-03
|
||||||
|
|
||||||
|
|
||||||
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.5.92 (2.6 RC2)
|
||||||
|
|
||||||
|
Carlo Bramini (1):
|
||||||
|
Add FreeType-dependent functions to fontconfig.def file. (bug 15415)
|
||||||
|
|
||||||
|
Changwoo Ryu (1):
|
||||||
|
Korean font in the default config - replacing baekmuk with un (bug 13569)
|
||||||
|
|
||||||
|
Dennis Schridde (1):
|
||||||
|
Proper config path for static libraries in win32
|
||||||
|
|
||||||
|
Eric Anholt (1):
|
||||||
|
Fix build with !ENABLE_DOCS and no built manpages.
|
||||||
|
|
||||||
|
Frederic Crozat (1):
|
||||||
|
Merge some of Mandriva configuration into upstream configuration. Bug 13247
|
||||||
|
|
||||||
|
Keith Packard (11):
|
||||||
|
Use DOLT if available
|
||||||
|
Work around for bitmap-only TrueType fonts that are missing the glyf table.
|
||||||
|
Remove size and dpi values from bitmap fonts. Bug 8765.
|
||||||
|
Add some sample cursive and fantasy families.
|
||||||
|
Add --all flag to fc-match to show the untrimmed list. Bug 13018.
|
||||||
|
Remove doltcompile in distclean
|
||||||
|
Use of ":=" in src/Makefile.am is unportable (bug 14420)
|
||||||
|
Make fc-match behave better when style is unknown (bug 15332)
|
||||||
|
Deal with libtool 2.2 which doesn't let us use LT_ variables. (bug 15692)
|
||||||
|
Allow for RC versions in README update
|
||||||
|
git ignore doltcompile
|
||||||
|
|
||||||
|
Ryan Schmidt (1):
|
||||||
|
fontconfig build fails if "head" is missing or unusable (bug 14304)
|
||||||
|
|
||||||
|
Sylvain Pasche (1):
|
||||||
|
Fontconfig options for freetype sub-pixel filter configuration
|
||||||
|
|
||||||
2.5.91 (2.6 RC1)
|
2.5.91 (2.6 RC1)
|
||||||
|
|
||||||
Hongbo Zhao (1):
|
Hongbo Zhao (1):
|
||||||
|
|
|
@ -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.5.91)
|
AM_INIT_AUTOMAKE(fontconfig, 2.5.92)
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
dnl libtool versioning
|
dnl libtool versioning
|
||||||
|
|
|
@ -53,7 +53,7 @@ typedef int FcBool;
|
||||||
|
|
||||||
#define FC_MAJOR 2
|
#define FC_MAJOR 2
|
||||||
#define FC_MINOR 5
|
#define FC_MINOR 5
|
||||||
#define FC_REVISION 91
|
#define FC_REVISION 92
|
||||||
|
|
||||||
#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