summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2015-12-17 14:14:24 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2015-12-17 14:14:24 +0000
commit314ba2c6ac7164dabaa8c25c3533d666befd4973 (patch)
tree16555602adb85ac529fc2213364955fcc38eea7f
parent879cc0763d28cb67221506174eff10232db2575f (diff)
downloadclutter-314ba2c6ac7164dabaa8c25c3533d666befd4973.tar.gz
Release Clutter 1.25.2 (snapshot)1.25.2
-rw-r--r--NEWS56
-rw-r--r--configure.ac4
2 files changed, 58 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index b5fd1ba6b..96f11d514 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,59 @@
+Clutter 1.25.2 2015-12-17
+===============================================================================
+
+ • List of changes since Clutter 1.24
+
+ - Set event code on button and key events in the evdev input backend
+ This allows users of the evdev input backend to retrieve the event
+ code without doing ad hoc calculations based on event-specific fields.
+
+ - Take scaling factor into account on Wayland with GDK
+ This brings the Wayland support inside the GDK backend on par to the X11
+ side.
+
+ - Decouple selectability from editability in ClutterText
+ It's possible to create selectable ClutterText actors without enabling
+ editability; this may cause unexpected cursors to appear in reactive
+ label-like actors using non-editable ClutterText, so feedback from users
+ is appreciated.
+
+ - Allow overriding the Cogl driver used by Clutter
+ On systems with multiple OpenGL and OpenGL ES implementations available,
+ it should be possible to explicitly set the Cogl driver (OpenGL 3.2 core
+ profile context; OpenGL legacy context; OpenGL ES 2.0 context) used by
+ Clutter when creating its drawing context. It's also possible to define
+ a list of drivers to try sequentially until one succeeds.
+
+ - Rework the windowing system backend selection
+ The windowing system backend initialization has been reworked to allow
+ setting the default windowing system backend using the configuration
+ file under $XDG_CONFIG_DIRS/clutter-1.0/settings.ini. The selection of
+ the backend also supports the ability to specify a list of backends to
+ try sequentially until one succeeds, for systems with multiple windowing
+ systems available.
+
+ - Documentation fixes
+
+ - Translation updates
+ Portuguese, Slovenian
+
+ • List of bugs fixed since Clutter 1.24
+
+ #758238 - [evdev] Add evdev-specific API to get event codes from
+ ClutterEvents
+ #755245 - only shows a 4th of the screen under wayland
+ #757470 - Allow selectability without editability
+ #752752 - Patches needed for relative pointer and pointer confinement
+ in mutter
+ #759074 - Port cairo test to ClutterCanvas
+ #759191 - should use pkg-config for GL
+ #742678 - gl: Prefer gl3 over the gl driver
+
+Many thanks to:
+
+ Carlos Garnacho, Lionel Landwerlin, Jonas Ådahl, Pedro Albuquerque,
+ Matej Urbančič
+
Clutter 1.24.2 2015-10-12
===============================================================================
diff --git a/configure.ac b/configure.ac
index 1bc6e6779..62aac54a2 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], [25])
-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], [3])
+m4_define([clutter_interface_age], [0])
m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)])