From 6d7e1e5434d3da27cf23a9c16f9990523eedba4e Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Sun, 3 Jan 2010 20:11:43 +0000 Subject: [PATCH] Release Clutter 1.1.4 --- NEWS | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 4 ++-- 2 files changed, 58 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index d3bba1068..5b2961e40 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,59 @@ +Clutter 1.1.4 (03/01/2010) +=============================================================================== + + * List of changes since Clutter 1.1.2 + + o Update the ClutterScript parser to be more resilient, and support + constructor and ChildMeta properties. The parser also respects the + order of the properties in the UI definitions when applying them, + and will apply the properties of an Actor after building the scene + graph. + + o Simplified the implementation of LayoutManager sub-classes, and added + support for animating a layout manager. + + o Allow short-circuiting some layout operations by setting a specific + flag on ClutterActor. + + o Improve caching of the preferred size of a ClutterActor. + + o Allow declaring "internal children" for a ClutterContainer + implementation: the memory management of these actors will be deferred + entirely to the Container. + + o Let the ClutterStage honour the :opacity property and the alpha component + of the stage color. This requires support in the Clutter backend used. + + o Improve Windows and OSX backends. + + o Simplify the feature detection code for OpenGL; this also reduced the + required OpenGL version to 1.2. + + o Improve the matrix stack handling code. The matrices can be debugged by + using the COGL_DEBUG environment variable, assuming that Clutter was + compiled with the right configure-time switch. + + o Improve COGL API for draw buffers, and for offscreen buffer support. + + o Add support for text direction to ClutterActor. + + o Documentation, introspection and build fixes. + +Many thanks to: + + Robert Bragg + Neil Roberts + Damien Lespiau + Joshua Lock + Bastian Winkler + Rob Bradford + Samuel Degrande + Christian Persch + Colin Walters + Johan Bilien + Raymond Liu + Tim Horton + Clutter 1.1.2 (23/10/2009) =============================================================================== diff --git a/configure.ac b/configure.ac index cf985f087..2af8eb167 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], [1]) -m4_define([clutter_micro_version], [3]) +m4_define([clutter_micro_version], [4]) 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], [1]) +m4_define([clutter_interface_age], [0]) m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)]) AC_PREREQ([2.59])