Release Clutter 1.19.6 (snapshot)

This commit is contained in:
Emmanuele Bassi 2014-07-24 00:12:47 +01:00
parent d33d2d1f47
commit 1e07fd7d7f
3 changed files with 40 additions and 1 deletions

30
NEWS
View File

@ -1,3 +1,33 @@
Clutter 1.19.6 2014-07-24
===============================================================================
• List of changes since Clutter 1.19.4
- Add a signal for the end of the frame on ClutterStage
The ::after-paint signal is useful to execute custom code after all the
painting on a specific ClutterStage has been performend, but before the
frame contents have been presented on the screen.
- Improvements in the reliability of the evdev input backend
- Improvements in the GestureAction implementation
• List of bugs fixed since Clutter 1.19.4
#732342 - ClutterStage: Add an ::after-paint signal
#732907 - Allow for calling clutter_gesture_action_cancel() within the
::gesture-end handler
#733062 - Evdev: set button state in input devices
#733300 - ClutterAnimation: fix memory leak
#733561 - Make a GType for ClutterEventSequence
#733562 - evdev: update xkb_state when resuming input
#733560 - Touch events trigger enter events on press, but no leave events
on release
Many thanks to:
Carlos Garnacho, Giovanni Campagna, Owen W. Taylor
Clutter 1.19.4 2014-06-25 Clutter 1.19.4 2014-06-25
=============================================================================== ===============================================================================

View File

@ -303,6 +303,15 @@ 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.20
-------------------------------------------------------------------------------
• The clutter_stage_set_paint_callback() experimental function has been
removed from the Clutter ABI; it has been replaced by the ::after-paint
signal on the ClutterStage class. The set_paint_callback() method was
marked as "experimental", required a special definition to be usable, and
no guarantees were made on its continued existence.
Release Notes for Clutter 1.18 Release Notes for Clutter 1.18
------------------------------------------------------------------------------- -------------------------------------------------------------------------------

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], [19]) m4_define([clutter_minor_version], [19])
m4_define([clutter_micro_version], [5]) m4_define([clutter_micro_version], [6])
# • 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