diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2005-12-13 00:08:48 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2005-12-13 00:08:48 +0000 |
commit | 06735182514a7a70d493055e85059d3f06424cdc (patch) | |
tree | 530df3afb527db16c27fb1828c837312b3aed967 | |
parent | 28d0dfac2179120c4b7b2fb3e185b16926097563 (diff) | |
download | pango-06735182514a7a70d493055e85059d3f06424cdc.tar.gz |
=== Released 1.11.1 ===
2005-12-12 Behdad Esfahbod <behdad@gnome.org>
* === Released 1.11.1 ===
* configure.in: Version 1.11.1
* NEWS: Updated.
2005-12-12 Behdad Esfahbod <behdad@gnome.org>
* pango/Makefile.am: Handle module-defs-atsui.c.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | NEWS | 17 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | pango/Makefile.am | 5 |
4 files changed, 34 insertions, 2 deletions
@@ -1,5 +1,17 @@ 2005-12-12 Behdad Esfahbod <behdad@gnome.org> + * === Released 1.11.1 === + + * configure.in: Version 1.11.1 + + * NEWS: Updated. + +2005-12-12 Behdad Esfahbod <behdad@gnome.org> + + * pango/Makefile.am: Handle module-defs-atsui.c. + +2005-12-12 Behdad Esfahbod <behdad@gnome.org> + Fix bug #323540. * pangofc-fontmap.c (get_scaled_size): The logic in there is moved @@ -1,3 +1,20 @@ +Overview of changes between 1.11.0 and 1.11.1 +============================================= +* ATSUI support for the cairo backend. [Anders Carlsson] +* Fixed a couple of regressions with font size and scaling. +* Draw a dashed empty box on missing glyphs for cairo-fc backend. +* Support OpenType features for basic (Latin/Greek/...) module. +* Support swash feature in Arabic module. +* Misc bug fixes. +* Misc documentation improvements. + +Optimizations: + +* Cache GObject private data in PangoFcFont.priv [Federico Mena Quintero] +* Add a constant-sized light-weight cache for glyph extents. +* Use g_slice_* instead of GMemChunk in mini-fribidi. + + Overview of changes between 1.10.1 and 1.11.0 ============================================= * Line-breaking algorithm updated to Unicode 4.1. diff --git a/configure.in b/configure.in index 80e2d30d..f31fec82 100644 --- a/configure.in +++ b/configure.in @@ -22,7 +22,7 @@ dnl dnl The triplet m4_define([pango_major_version], [1]) m4_define([pango_minor_version], [11]) -m4_define([pango_micro_version], [0]) +m4_define([pango_micro_version], [1]) m4_define([pango_version], [pango_major_version.pango_minor_version.pango_micro_version]) dnl The X.Y in -lpango-X.Y line. This is expected to stay 1.0 until Pango 2. diff --git a/pango/Makefile.am b/pango/Makefile.am index 2f202d09..15901878 100644 --- a/pango/Makefile.am +++ b/pango/Makefile.am @@ -410,6 +410,8 @@ module-defs-fc.c: $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status pango/$@ module-defs-win32.c: $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status pango/$@ +module-defs-atsui.c: $(top_builddir)/config.status + cd $(top_builddir) && $(SHELL) ./config.status pango/$@ CLEANFILES = \ pango-enum-types.h \ @@ -421,7 +423,8 @@ DISTCLEANFILES = \ module-defs.h \ module-defs-x.c \ module-defs-fc.c \ - module-defs-win32.c + module-defs-win32.c \ + module-defs-atsui.c install-data-local: install-ms-lib install-def-files |