Release Clutter 1.23.4

This commit is contained in:
Emmanuele Bassi 2015-07-22 19:13:00 +01:00
parent b834503b79
commit 23596a0ca6
3 changed files with 55 additions and 1 deletions

32
NEWS
View File

@ -1,3 +1,35 @@
Clutter 1.23.4 2015-07-22
===============================================================================
• List of changes since Clutter 1.23.2
- Add functions for binding a GListModel to a ClutterActor
The bind_model() and bind_model_with_propertis() methods on ClutterActor
allow binding objects inside a GListModel implementation to children or
an actor.
- Add event types for touchpad gestures
Currently, the libinput input backend is the only one that will generate
the touchpad events for swipe and pinch/zoom/rotate, but support for other
backends is planned in the future.
- Documentation fixes
• List of bugs fixed since Clutter 1.23.2
#752272 - _CLUTTER_DEPRECATED_MACRO_FOR is not defined when not compiling
with gcc
#752056 - Check for NULL pointer for pspec returned by
g_object_class_find_property, before dereferencing
#752104 - Automatic wayland detect support causes error when wayland is
not installed
#751472 - Don't create libinput properties
Many thanks to:
Carlos Garnacho, Ting-Wei Lan, Kalev Lember, Nitin Sharma,
Pedro Albuquerque, Peter Hutterer, Stefan Sauer
Clutter 1.23.2 2015-06-18 Clutter 1.23.2 2015-06-18
=============================================================================== ===============================================================================

View File

@ -289,6 +289,28 @@ Relevant information for developers with existing Clutter applications
wanting to port to newer releases (see NEWS for general information on new wanting to port to newer releases (see NEWS for general information on new
features). features).
Release Notes for Clutter 1.24
-------------------------------------------------------------------------------
• ClutterModel, ClutterModelIter, and ClutterListStore have been deprecated.
You're strongly encouraged to use the GListModel interface, and the
GListStore class, as a replacement.
• The macros used to access the state flags in ClutterActor have been
deprecated, and replaced by equivalent functions.
• Clutter types now can be used with the `g_autoptr()` and `g_auto()`
macros provided by GLib and supported by GCC and Clang.
• The old, non-namespaced CLUTTER_* key symbols now have an associated
deprecation warning.
• The private, unused ClutterX11XInputEventTypes enumeration, which was
erroneously placed in the clutter-x11.h public header, has been removed.
• The Wayland client backend is now autodetected depending on whether the
required dependencies are available.
Release Notes for Clutter 1.22 Release Notes for Clutter 1.22
------------------------------------------------------------------------------- -------------------------------------------------------------------------------

View File

@ -10,7 +10,7 @@
# - increase clutter_interface_version to the next odd number # - increase clutter_interface_version to the next odd number
m4_define([clutter_major_version], [1]) m4_define([clutter_major_version], [1])
m4_define([clutter_minor_version], [23]) m4_define([clutter_minor_version], [23])
m4_define([clutter_micro_version], [3]) m4_define([clutter_micro_version], [4])
# • for stable releases: increase the interface age by 1 for each release; # • for stable releases: increase the interface age by 1 for each release;
# if the API changes, set to 0. interface_age and binary_age are used to # if the API changes, set to 0. interface_age and binary_age are used to