diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-06-19 03:40:45 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-06-19 03:40:45 +0000 |
commit | e638410a68e75899be5cb9672945596c71ade817 (patch) | |
tree | 13a59a8a1d5d2e50c8322f0873971eb820fe1e18 | |
parent | c8c3ac803ae713ab55061506330925ccf49038b9 (diff) | |
download | pango-e638410a68e75899be5cb9672945596c71ade817.tar.gz |
=== Released 1.17.3 ===PANGO_1_17_3
2007-06-18 Behdad Esfahbod <behdad@gnome.org>
* === Released 1.17.3 ===
* configure.in: Version 1.17.3
* NEWS: Updated.
svn path=/trunk/; revision=2360
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 35 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 44 insertions, 1 deletions
@@ -1,5 +1,13 @@ 2007-06-18 Behdad Esfahbod <behdad@gnome.org> + * === Released 1.17.3 === + + * configure.in: Version 1.17.3 + + * NEWS: Updated. + +2007-06-18 Behdad Esfahbod <behdad@gnome.org> + Bug 448342 – pango_layout_index_to_line_x() counts lines from 1 * pango/pango-layout.c (pango_layout_index_to_line): @@ -1,3 +1,38 @@ +Overview of changes between 1.17.2 and 1.17.3 +============================================== +- Extensive pangocairo internal code refactoring and cleanup + +- New public API: + + pango_font_face_is_synthesized() + + pango_cairo_font_get_scaled_font() + pango_cairo_font_map_new_for_font_type() + pango_cairo_font_map_get_font_type() + +- New engine macros: + + PANGO_OT_TAG_MAKE() + PANGO_OT_TAG_MAKE_FROM_STRING() + +- New PangoFontFace method is_synthesized. + +- Misc bug fixes +- Bugs fixed in this release: + Bug 337593 – move glyph extents code (and cache) from + pangocairo-*font.c into pangocairo-font.c + Bug 347235 – Add pango_cairo_font_map_get_font_type + Bug 347236 – provide pango_cairo_font_get_scaled_font + Bug 353291 – Provide pango_cairo_font_map_new_for_font_type + Bug 438801 – underline should add "error" type. + Bug 440588 – Add pango_font_face_is_synthesized() + Bug 445832 – pango_cairo_update_layout() always invalidates layout + Bug 446018 – Bus error in the pango_ot_tag_from_language() + Bug 446355 – the parsing with pango_parse_markup is not coherent + Bug 447189 – fonts.c: pango_font_face_is_synthesized returns NULL + Bug 447568 – improve docs on what absolute size means + Bug 448342 – pango_layout_index_to_line_x() counts lines from 1 + Overview of changes between 1.17.1 and 1.17.2 ============================================== - Rename recently added pango_ot_ruleset_get_for() to diff --git a/configure.in b/configure.in index d959beba..26e07f4d 100644 --- a/configure.in +++ b/configure.in @@ -22,7 +22,7 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) m4_define([pango_version_minor], [17]) -m4_define([pango_version_micro], [2]) +m4_define([pango_version_micro], [3]) 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. |