Release Clutter 1.1.4

This commit is contained in:
Emmanuele Bassi 2010-01-03 20:11:43 +00:00
parent 3355c2ab25
commit 6d7e1e5434
2 changed files with 58 additions and 2 deletions

56
NEWS
View File

@ -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)
===============================================================================

View File

@ -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])