Update for version 2.3.2
This commit is contained in:
parent
716ac8b803
commit
1cb309adcb
|
@ -1,3 +1,11 @@
|
||||||
|
2005-04-23 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
|
* README:
|
||||||
|
* configure.in:
|
||||||
|
* debian/changelog:
|
||||||
|
* fontconfig/fontconfig.h:
|
||||||
|
Update for version 2.3.2
|
||||||
|
|
||||||
2005-04-21 Keith Packard <keithp@keithp.com>
|
2005-04-21 Keith Packard <keithp@keithp.com>
|
||||||
|
|
||||||
* debian/fontconfig.postinst:
|
* debian/fontconfig.postinst:
|
||||||
|
|
11
README
11
README
|
@ -1,11 +1,18 @@
|
||||||
Fontconfig
|
Fontconfig
|
||||||
Font configuration and customization library
|
Font configuration and customization library
|
||||||
Version 2.3.1
|
Version 2.3.2
|
||||||
2005-3-8
|
2005-4-23
|
||||||
|
|
||||||
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.3.2
|
||||||
|
|
||||||
|
Patch memory leaks in using iconv. (keithp)
|
||||||
|
Fetch bitmap glyphs to get widths during font evaluation. (keithp)
|
||||||
|
Share strings through FcObjectStaticName (Ross Burton)
|
||||||
|
Windows build updates (Tor Lillqvist)
|
||||||
|
|
||||||
2.3.1
|
2.3.1
|
||||||
|
|
||||||
Be more careful about broken GSUB/GPOS tables (Manish Singh)
|
Be more careful about broken GSUB/GPOS tables (Manish Singh)
|
||||||
|
|
|
@ -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.3.1)
|
AM_INIT_AUTOMAKE(fontconfig, 2.3.2)
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
dnl libtool versioning
|
dnl libtool versioning
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
fontconfig (2.3.2-1) unstable; urgency=low
|
||||||
|
* Patch memory leaks (closes: #305680)
|
||||||
|
* Share strings to save memory (Ross Burton)
|
||||||
|
* Reduce priority of URW fonts
|
||||||
|
|
||||||
|
-- Keith Packard <keithp@debian.org> Sat, 23 Apr 2005 14:30:18 +1000
|
||||||
|
|
||||||
fontconfig (2.3.1-2) unstable; urgency=low
|
fontconfig (2.3.1-2) unstable; urgency=low
|
||||||
|
|
||||||
* Change priority of fontconfig-udeb package to extra
|
* Change priority of fontconfig-udeb package to extra
|
||||||
|
|
|
@ -40,7 +40,7 @@ typedef int FcBool;
|
||||||
|
|
||||||
#define FC_MAJOR 2
|
#define FC_MAJOR 2
|
||||||
#define FC_MINOR 3
|
#define FC_MINOR 3
|
||||||
#define FC_REVISION 1
|
#define FC_REVISION 2
|
||||||
|
|
||||||
#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