summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2012-04-16 16:22:01 +0100
committerEmmanuele Bassi <ebassi@linux.intel.com>2012-04-16 21:37:53 +0100
commit62cffec9036f6a24736dc47914844fe9336c8ce4 (patch)
treef23d9f329f2b93e555b5cafe332dc1cc6979671a
parent9d52fb06bbde5ce4b247e0819137f76d59b9d1b2 (diff)
downloadclutter-1.10.2.tar.gz
Release Clutter 1.10.21.10.2
-rw-r--r--NEWS32
-rw-r--r--configure.ac4
2 files changed, 34 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index eaf013b05..374fcccd7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,35 @@
+Clutter 1.10.2 2012-04-16
+===============================================================================
+
+ • List of changes since Clutter 1.10.0
+
+ - Fix expansion of actors inside a TableLayout
+ For actors that span more than one column, the wrong flag was being
+ used to compute the expansion.
+
+ - Fix text length passed to ClutterTextBuffer
+ This should fix crashers happening when changing the contents of a
+ TextBuffer with non-ASCII characters.
+
+ - Clean up handling of in-flight changes during implicit transitions
+ The transitions are updated using the new value, as well as the
+ current easing state. The documentation has been updated to define
+ the behaviour of the implicit animations.
+
+ • List of bugs fixed since Clutter 1.10.0
+
+ [bugzilla.gnome.org]
+ #673783 - ClutterTextBuffer crashes
+ #672945 - Fixes for the implicit actor animation API
+ #672853 - Assistant layout is broken
+ #672890 - CRASH: ClutterAnimation finalized without disconnecting timeline
+ #674105 - cally.pc is buggy
+
+Many thanks to:
+
+ Jasper St. Pierre, Neil Roberts, Owen W. Taylor, Peter Hutterer,
+ Stefano Facchini, Tristan Van Berkom.
+
Clutter 1.10.0 2012-03-22
===============================================================================
diff --git a/configure.ac b/configure.ac
index 8c0a72544..505bbfb1a 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], [10])
-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)])