summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS29
-rw-r--r--configure.ac4
2 files changed, 31 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index e5f1348cb..1b54d7328 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,32 @@
+Clutter 1.22.2 2015-05-12
+===============================================================================
+
+ • List of changes since Clutter 1.22.0
+
+ - Improve touchpad detection in the X11 backend
+ The X11 backend now uses the same heuristics as GDK.
+
+ - Fix handling of SwapBuffersWithDamage on EGL
+ Use the correct arguments for the Cogl API, which is mapped on the
+ corresponding EGL extension.
+
+ - Fix ClutterStage:use-alpha
+ Painting the stage with the use-alpha property is now working on all
+ backends.
+
+ - Fix detection of an ARGB visual in the GDK backend
+
+ • List of bugs fixed since Clutter 1.22.2
+
+ #749256 - clutter-backend-gdk: Only set setting on successful
+ gdk_screen_get_setting call
+ #747436 - Clutter should use the same heuristics as gtk+ to determine
+ touchpads
+
+Many thanks to:
+
+ Jasper St. Pierre, Matthieu Bouron
+
Clutter 1.22.0 2015-03-23
===============================================================================
diff --git a/configure.ac b/configure.ac
index 80b9e1dae..d27b649f2 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], [22])
-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)])