2019-10-24  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	3.24.2

2019-10-24  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	Makefile.am: Don't distribute PORTING

2019-10-24  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	Remove PORTING

	It's obsolete and does not contain any useful information.

2019-09-18  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	Gtk::Builder docs: Describe how to use together with Glib::Property

2019-08-13  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	demos: Fix the source code listing

2019-08-12  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	Gdk::PixbufAnimation[Iter]: Disable warnings from deprecated GTimeVal

	GTimeVal has been deprecated in glib. Methods that use GTimeVal or
	Glib::TimeVal can't be deprecated in the stable gtkmm-3-24 branch now.
	This patch makes it possible to build gtkmm-3.24.x against the newest glib.

2019-07-24  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	Gtk: Fix ownership of some GLists

	* gtk/src/icontheme.ccg: list_icons(): Glib::OWNERSHIP_SHALLOW -> DEEP
	* gtk/src/iconview.hg: get_selected_icons(): SHALLOW -> DEEP. Remove the
	TreePathTraits struct in iconview.hg. Use the one in treepath.hg.
	* gtk/src/recentmanager.hg: get_items(): SHALLOW -> DEEP

2019-06-20  Daniel Boles  <dboles.src@gmail.com>

	Window: Do not add 2nd ref to new Cairo::Surface

	The C functions already return a newly allocated objected that the
	caller owns, so if we pass `false` as Cairo's `has_reference`, then we
	add another on the gtkmm side, so we will end up leaking that object.

	https://gitlab.gnome.org/GNOME/gtkmm/merge_requests/19#note_535429

2019-06-20  Daniel Boles  <dboles.src@gmail.com>

	Cursor: Fix meaning of comment about Cairo ref arg

	Cairo::Object takes a has_reference parameter, not take_copy with
	inverted meaning as in glibmm/gtkmm.

	Say "do not take ref" like e.g. window.hg already did, which is a bit
	clearer than has_reference (when does it get that? before or after us?)

	https://gitlab.gnome.org/GNOME/gtkmm/merge_requests/19#note_535429
	https://gitlab.gnome.org/GNOME/gtkmm/merge_requests/19#note_536603