2.13.1:

2008-06-02  Peter Wainright  <prw@ceiriog.eclipse.co.uk>

	* gtk/src/bin.ccg: add_label(): Correct the order of parameters 
	given to the Label constructor. Bug #534685.

2008-05-31 Dodji Seketeli <dodji@gnome.org>

	* pango/src/attributes.hg:
	  the const qualifier of the returned type
	  was silently ignored by gcc in :
	  PangoAttribute* const gobj() const { return gobject_; }.
	  Changed that to:
	  const PangoAttribute* gobj() const { return gobject_; }
	  I don't thing this results in an ABI break though.
	  This helps gcc 4.3 to stop crying.

2008-05-14  Murray Cumming  <murrayc@murrayc.com>

	* gtk/src/gtk_docs_override.xml: Add custom documentation for the 
	gtk_image_set_from_*() functions, because they refer to new_from_*
 	functions instead of our constructors.
	* gtk/src/image.hg: Add documentation for the constructors.

2008-05-14  Gennaro Bellizio  <genbell@tiscali.it>

	* gtk/src/entry.hg: Added the shadow_type property that was added to 
	GTK+ in 2.12.
	Bug #532744

2008-04-29  Murray Cumming  <murrayc@murrayc.com>

	* gdk/src/pixbufanimationiter.[hg|cc]: Added  get_pixbuf(), get_delay_time(), 
	advance(), on_currently_loading_frame().
	* gdk/src/gdk_docs_override.xml: Customized the documentation for these 
	methods, to avoid C-specific advice, and to add @newin2p14.
	Bug #528037 (Balazs Tirpak) 

2008-04-29  Murray Cumming  <murrayc@murrayc.com>

	* gdk/src/window.ccg:
	* gdk/src/window.hg: Added unset_back_pixmap().
	* gdk/src/gdk_docs_override.xml: Changed the back_pixmap() documentation 
	to not mention NULL, and to refer to unset_back_pixmap().
	This fixes bug #525967 (Jonathon Jongsma).

2008-04-11  Andreas Klaedtke  <andreas.klaedtke@gmx.net>

	* gtk/src/widget.hg: get_direction(): Add a const version and deprecate 
	the non-const version.
	Bug #526742.

2008-04-11  Armin Burgmeier  <armin@openismus.com>

	* gtk/src/recentinfo.ccg:
	* gtk/src/recentinfo.hg: Added a specialization for
	Glib::Value<Glib::RefPtr<Gtk::RecentInfo> > so that
	Glib::RefPtr<Gtk::RecentInfo> can be used with Glib::Value<> and
	Gtk::TreeModelColumn<>.