diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-02-26 19:17:30 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-02-26 19:17:30 +0000 |
commit | 9e66ba61aaf08836f58448506339ca69d02764a7 (patch) | |
tree | cbe72a1e048efdd83486a482a9954d3d17149be7 | |
parent | 5885e8fd5c025eb11c1d46105753416c7822ce07 (diff) | |
download | pango-9e66ba61aaf08836f58448506339ca69d02764a7.tar.gz |
=== Released 1.16.0 ===PANGO_1_16_0
2007-02-26 Behdad Esfahbod <behdad@gnome.org>
* === Released 1.16.0 ===
* configure.in: Version 1.16.0
* configure.in: Require cairo 1.2.6 because of its important fixes.
* NEWS: Updated.
* README: Updated.
svn path=/trunk/; revision=2202
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | README | 14 | ||||
-rw-r--r-- | configure.in | 8 |
4 files changed, 32 insertions, 16 deletions
@@ -1,3 +1,15 @@ +2007-02-26 Behdad Esfahbod <behdad@gnome.org> + + * === Released 1.16.0 === + + * configure.in: Version 1.16.0 + + * configure.in: Require cairo 1.2.6 because of its important fixes. + + * NEWS: Updated. + + * README: Updated. + 2007-02-20 Stefan Kost <ensonic@users.sf.net> Xrefs for glib and cairo in the docs. Add object hierarchy to the docs. @@ -1,3 +1,17 @@ +Overview of changes between 1.15.6 and 1.16.0 +============================================== +- Improved docs, with an object hierarchy and cross references to glib and + cairo docs now (may require rebuilding the docs to correctly detect glib + and cairo prefixes). +- Improved font selection for space characters +- Misc build system fixes +- Bugs fixed in this release: + Bug 407087 – autogen.sh wants automake-1.7 + Bug 409212 – Missing link flag prevents build with "-z defs" ld flags + Patch from Loïc Minier + Bug 355987 – choosing font/shaper for spaces breaks Arabic runs on + spaces + Overview of changes between 1.15.5 and 1.15.6 ============================================== - Fix possible crasher in win32 font selection [Owen Taylor] @@ -36,7 +36,7 @@ For more information about Pango, see: Dependencies ============ -Pango depends on version 2.10.0 or newer of the GLib library; more +Pango depends on version 2.12.0 or newer of the GLib library; more information about GLib can be found at http://www.gtk.org/. When using client side fonts, the fontconfig library @@ -56,16 +56,6 @@ Xft is available from http://xlibs.freedesktop.org/release/. You'll need the libXft package, and possibly the libXrender and renderext packages as well. You'll also need fontconfig (see below.) -Note that an earlier version of Xft is shipped with version -of XFree86 up to 4.2. This version does not work with Pango-1.8; -Pango-1.8 requires version 2 of Xft, which is present in XFree86-4.3 -and X11R6.7 and newer versions of those. - -After installing fontconfig, it may be necessary to edit -the fonts.conf file, found at $(sysconfdir)/fonts/fonts.conf -(usually /etc/fonts/fonts.conf) to point at the fonts -on your system. - Installation of Pango on Win32 is possible, but is not documented here. See http://www.gimp.org/~tml/gimp/win32/downloads.html @@ -102,4 +92,4 @@ otaylor@redhat.com Behdad Esfahbod behdad@gnome.org -13 March 2006 +26 February 2007 diff --git a/configure.in b/configure.in index 58fc97df..e2ed1c44 100644 --- a/configure.in +++ b/configure.in @@ -21,14 +21,14 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) -m4_define([pango_version_minor], [15]) -m4_define([pango_version_micro], [6]) +m4_define([pango_version_minor], [16]) +m4_define([pango_version_micro], [0]) m4_define([pango_version], [pango_version_major.pango_version_minor.pango_version_micro]) dnl The X.Y in -lpango-X.Y line. This is expected to stay 1.0 until Pango 2. m4_define([pango_api_version], [1.0]) dnl Number of releases since we've added interfaces -m4_define([pango_interface_age], [2]) +m4_define([pango_interface_age], [0]) dnl Number of releases since we've broken binary compatibility. m4_define([pango_binary_age], [m4_eval(100 * pango_version_minor + pango_version_micro)]) @@ -334,7 +334,7 @@ have_cairo_freetype=false have_cairo_win32=false have_cairo_atsui=false -PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.2, have_cairo=true, AC_MSG_RESULT([no])) +PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.6, have_cairo=true, AC_MSG_RESULT([no])) if $have_cairo ; then pango_save_ldflags=$LDFLAGS |