summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2013-11-18 23:45:06 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2013-11-18 23:45:06 +0000
commitbd432047c08b7bc12447fc48cd7e1d04c77c350d (patch)
treea10d96164286e9f61e3bf2306ffc2a970cfe3106
parent8faae9d2377648f32a9a277fd467b06f0c140525 (diff)
downloadclutter-bd432047c08b7bc12447fc48cd7e1d04c77c350d.tar.gz
Release Clutter 1.16.2 (stable)1.16.2
-rw-r--r--NEWS47
-rw-r--r--configure.ac4
2 files changed, 49 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 5c8242cd6..739e8218f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,50 @@
+Clutter 1.16.2 2013-11-18
+===============================================================================
+
+ • List of changes since Clutter 1.16.0
+
+ - Allow creating intervals and transitions from ClutterScript
+ ClutterInterval now implements ClutterScriptable.
+
+ - X11 backend improvements
+ Update the device coordinate handling; remove the dependency on
+ the XFixes extension.
+
+ - Wayland backend improvements
+ Implement the ClutterStage:cursor-visible property.
+
+ - Apply the correct opacity when painting ClutterImage
+
+ - Throttle touch update events
+
+ - Fix preferred size of TableLayout
+ Take account of the visibility of the children when computing the
+ preferred size of a ClutterActor using a ClutterTableLayout as its
+ layout manager.
+
+ - Documentation fixes
+
+ - Translation updates
+ Hungarian, Slovak, Greek, Catalan (Valencian)
+
+ • List of bugs fixed since Clutter 1.16.0
+
+ #707071 - Remove use of XFixes for showing/hiding the cursor
+ #709762 - ClutterDragAction can mix pointer and touch events
+ #709590 - wayland: Implement support for 'cursor-visible' stage property
+ #709761 - Implement touch update event throttling
+ #709620 - ClutterEvent: Mention _get_source_device() in docs
+ #708922 - actor: Correct setting the offscreen-redirect property
+ #709434 - [REGRESSION] clutter_box_layout_allocate:
+ Process /usr/bin/gnome-shell was killed by signal 5 (SIGTRAP)
+ #708850 - DragAction warning when setting handle to null
+
+Many thanks to:
+
+ Jasper St. Pierre, Lionel Landwerlin, Bastian Winkler, Bastien Nocera,
+ Florian Müllner, Balázs Úr, Carles Ferrando, Efstathios Iosifidis, Jonas
+ Ådahl, Pavol Klačanský
+
Clutter 1.16.0 2013-09-23
===============================================================================
diff --git a/configure.ac b/configure.ac
index 090512aaf..3d73bfee6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@
# - increase clutter_interface_version to the next odd number
m4_define([clutter_major_version], [1])
m4_define([clutter_minor_version], [16])
-m4_define([clutter_micro_version], [1])
+m4_define([clutter_micro_version], [2])
# • 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
@@ -31,7 +31,7 @@ m4_define([clutter_micro_version], [1])
# ...
#
# • for development releases: keep clutter_interface_age to 0
-m4_define([clutter_interface_age], [1])
+m4_define([clutter_interface_age], [2])
m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)])