========================================
UPDATED: at-spi-1.21.1
========================================
at-spi was updated without a NEWS entry.
========================================
NEWS: gtk-doc-1.9
========================================
GTK-Doc 1.9 (Sep 30 2007)
===========
Changes
o 419308 : unsynced regexps for parameter parsing
o 449618 : Top navigation bar is in the way
o 453717 : fixxref logic to determine absolute path's is flawed
o 457173 : unit tests for gtk-doc
o 465920 : Use gtkdoc-rebase
o 467773 : default master doc should have proper extension
o 141869 : Poor error generated when faced with a type declared as '...
o 156643 : Avoid make error in gtk-doc.make
o 322035 : wrong macro parsing
o 323938 : gtk-doc.m4 check is silent
o 324535 : gtk-doc doesn't handle deprecation inside enumerations
o 355352 : If you don't have an instantiatable type for a gtypeinter...
o 379466 : Improve C parser to handle TYPE\nVARIABLE in function pro...
o 380824 : docs are truncated if line begins with '* returns '
o 383456 : ' make check ' test for 100% documentation
o 411739 : Gtk-doc fails to handle ' struct tm * function_name (); '
o 415388 : Please clean -undocumented.txt files
o 418027 : gtkdoc-mkdb does not handle #ifdef in enum {}
o 419997 : parameter name trouble
o 428596 : Warnings with gtk-doc.m4 macros
o 434134 : fixxrefs like sed for installing pregenerated docs
o 436565 : Report undeclared symbols into a file
o 445596 : Impossible to link a page with an anchor
o 445693 : Does not understand ' unsigned long ' as a type
o 450338 : Make gtk-doc.m4 fail when needed gtk-doc is not installed
o 454916 : gtk-doc should permit generation of URI-based cross-refer...
o 457077 : add --no-implicit-returns to gtkdoc-mkdb
o 459225 : Accept automake-1.10 in autogen.sh
o 459725 : ' jhbuild build gtk-doc ' fails on make
o 460127 : parsing nested union/structs confuses public/private state
o 465365 : [PATCH] gtk-doc does not compile
o 466559 : [CSS] styling
;
o 471014 : G_CONST_RETURN * G_CONST_RETURN * function not picked up
o 477532 : function variables
o 479913 : gtk-doc.notmpl.make is not distributed
o 479923 : distclean test output properly
Contributors
Benjamin Otte
Damon Chaplin
David Nečas
Frederic Peters
Loic Minier
Petteri Räty
Rouslan Solomakhin
Stefan Kost
Sven Herzberg
Yeti
========================================
UPDATED: libgnomecanvas-2.20.1.1
========================================
libgnomecanvas was updated without a NEWS entry.
========================================
UPDATED: libgnomeui-2.20.1.1
========================================
libgnomeui was updated without a NEWS entry.
========================================
NEWS: pango-1.19.0
========================================
Overview of changes between 1.18.3 and 1.19.0
==============================================
- Update list of languages to that of fontconfig-2.4.91.
- Various optimizations, making rendering the same Pango layout using
changing cairo matrices much faster.
- Make sure all boxed type copy/free functions accept NULL as legitimate
input. Previously most were g_return_[val_]if_fail()ing it. This is
mostly for convenience when writing code in C.
- Apply 'vkrn' GPOS feature in vertical writing.
- In pangofc, set "pangoversion" in pattern passed to fontconfig,
such that font configuration can condition on being driven by Pango
or not.
- Various optimizations and cleanups in the OpenType Layout engine,
aka HarfBuzz.
- Changed APIs:
* All PangoAttribute constructors are changed to initialize the
attribute to the range [0..MAXUINT]. The range was undefined
previously. All custom attribute constructors are recommended
to call the new pango_attribute_init() to do the same.
* Public API chance: Mark the following types as abstract:
PangoFont
PangoFontFace
PangoFontFamily
PangoFontMap
PangoFcFont
PangoFcFontMap
PangoContext may be marked so in the future too.
* Make following macros public. Previously they were only
defined for backend/engine implementations.
PANGO_GLYPH_EMPTY
PANGO_GLYPH_UNKNOWN_FLAG
PANGO_GET_UNKNOWN_GLYPH()
- New public API:
* Convenience for initializing custom attributes:
pango_attribute_init()
* Adding boxed type for PangoGlyphItem:
PANGO_TYPE_GLYPH_ITEM
pango_glyph_item_copy()
pango_glyph_item_get_type()
* Add missing copy function for a boxed type in C:
pango_layout_iter_copy()
* Add missing getter:
pango_layout_iter_get_layout()
* Convenience for writing custom PangoRenderer's:
pango_renderer_get_layout()
pango_renderer_get_layout_line()
* PangoFc extensions to fontconfig's pattern syntax:
PANGO_FC_GRAVITY
PANGO_FC_VERSION
- Bugs fixed in this release:
Bug 490661 – Pango Markup: Link to font_desc syntax explanation
Based on patch from Chris Toshok
Bug 489909 – pango_cairo_update_context() should ignore matrix
translation
Bug 488840 – harfbuzz: protect against ligid overflow
Bug 486932 – Apply vkrn GPOS feature in vertical writing
Bug 486951 – ChangeLog.pre-1-18
Bug 485621 – Get rid of freetype memory allocator in harfbuzz
Bug 485566 – Cache one OpenType Buffer
Bug 485559 – Boston Summit HarfBuzz optimizations
Bug 481537 – compiler warning fixes
Patch from Kjartan Maraas
Bug 478865 – Drastically reduce number of PangoFont objects created
for rotating text
Bug 472924 – Mark some classes abstract
Bug 472629 – Add pango_renderer_get_layout(_line)
Bug 472303 – Make PANGO_GLYPH_EMPTY and PANGO_GLYPH_UNKNOWN_FLAG public
Bug 471601 – Pass pango version information to fontconfig
Bug 471577 – GBoxed GType for PangoGlyphItem
Bug 471571 – Add pango_layout_iter_get_layout()
Bug 471568 – Optimizations in _pango_cairo_update_context()
Bug 469641 – Initialize attribute start/end to [0..MAXUINT]