summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2010-04-19 17:33:48 +0100
committerEmmanuele Bassi <ebassi@linux.intel.com>2010-04-19 17:33:48 +0100
commita17b1f8df510f5ba09f8070dca3abf913aacdca6 (patch)
tree67e77f22d3a3681032b918d45f052f855955f4ca
parent601b6f6be6eae032229a8d6b54ef55e66dc1a1c3 (diff)
downloadclutter-1.2.6.tar.gz
Release 1.2.61.2.6
-rw-r--r--NEWS33
-rw-r--r--configure.ac4
2 files changed, 35 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index f6e415b60..3d592a7d6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,36 @@
+Clutter 1.2.6 (19/04/2010)
+===============================================================================
+
+ • List of changes since Clutter 1.2.4
+
+ » Check if the TexturePixmap actor have an allocation before
+ asking for its allocation box, to avoid a costly re-layout.
+
+ » Handle spurious GLX_BufferSwapComplete events more gracefully
+ than an assertion failure.
+
+ » Fix a memory leak in the atlas.
+
+ » Use the right constant when calling GetClassLongPtr() in the
+ win32 event handling code; this fixes a compilation issue on
+ win64.
+
+ » Check the size of the Pango layouts in the cache to avoid
+ blowing cache slots.
+
+ » Remove the need for using a function introduced by GLib 2.18,
+ to keep our current requirements.
+
+ » Documentation fixes in Clutter and COGL
+
+Many thanks to:
+
+ Fridrich Strba
+ Neil Roberts
+ Owen W. Taylor
+ Rob Bradford
+ Robert Bragg
+
Clutter 1.2.4 (22/03/2010)
===============================================================================
diff --git a/configure.ac b/configure.ac
index 6855f7e29..616007baf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,7 +12,7 @@
# - increase clutter_interface_version to the next odd number
m4_define([clutter_major_version], [1])
m4_define([clutter_minor_version], [2])
-m4_define([clutter_micro_version], [5])
+m4_define([clutter_micro_version], [6])
m4_define([clutter_release_status],
[m4_if(m4_eval(clutter_micro_version % 2), [1], [git],
@@ -42,7 +42,7 @@ m4_define([clutter_api_version], [1.0])
# clutter 1.2.10 -> 100 * 2 + 10 = 210, interface age = 4 -> 206
# ...
#
-m4_define([clutter_interface_age], [5])
+m4_define([clutter_interface_age], [6])
m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)])
AC_PREREQ([2.59])