diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 31 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2007-12-17 Behdad Esfahbod <behdad@gnome.org> + + * === Released 1.19.2 === + + * configure.in: Version 1.19.2 + + * NEWS: Updated. + 2007-12-13 Benjamin Otte <otte@gnome.org> * configure.in: use pkg-config to detect cairo features @@ -1,3 +1,24 @@ +Overview of changes between 1.19.1 and 1.19.2 +============================================== +- Render a crossed box for each invalid input byte to pango_layout_set_text(). + Previously we rendered an ASCII question mark instead. The crossed box has + a glyph of value of PANGO_GLYPH_INVALID_INPUT. +- Use pkg-config to detect cairo features [Benjamin Otte] +- Improved docs. Particularly, examples/cairo*.c have inline docs now. +- New public macro: + + PANGO_GLYPH_INVALID_INPUT + +- Bugs fixed in this release: + Bug 502926 – pango-1.16.4 configure bug: can fail to accept cairo + Bug 399573 – replace strtoul in pango-markup.c with pango_scan_int() + Bug 478914 – Use something invalid instead of '?' when validating + input text + Bug 501938 – Arabic shaping broken with vertical layout with + vertical-hint=line + Bug 501575 – Compile errors + Patch from Jens Granseuer + Overview of changes between 1.19.0 and 1.19.1 ============================================== - Various cleanup in the HarfBuzz code and merging with upstream/Qt changes. diff --git a/configure.in b/configure.in index 25419454..a295c6ff 100644 --- a/configure.in +++ b/configure.in @@ -22,13 +22,13 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) m4_define([pango_version_minor], [19]) -m4_define([pango_version_micro], [1]) +m4_define([pango_version_micro], [2]) 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], [1]) +m4_define([pango_interface_age], [2]) dnl Number of releases since we've broken binary compatibility. m4_define([pango_binary_age], [m4_eval(100 * pango_version_minor + pango_version_micro)]) |