From d5e6594ddd0d4ad3b9cf684526216900794f9ff5 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 21 Feb 2011 12:47:09 +0000 Subject: [PATCH] Release Clutter 1.6.6 (stable) --- NEWS | 20 ++++++++++++++++++++ configure.ac | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index b8eb35001..a86ab8cd4 100644 --- a/NEWS +++ b/NEWS @@ -3,10 +3,30 @@ Clutter 1.6.6 2011-02-21 • List of changes since Clutter 1.6.4 + » Add four mechanisms for migrating textures inside a Cogl atlas; it + is possible to change the default by using the environment variable + COGL_ATLAS_DEFAULT_BLIT_MODE. + + » Use the offscreen buffer size to compute the vertices of + ClutterDeformEffect. + + » Make the FPS counter displayed using CLUTTER_SHOW_FPS per-stage. + + » Documentation fixes. + + » Annotation fixes for introspection. + • List of bugs fixes since Clutter 1.6.4 + #2538 - crash in gnome-shell + #2558 - backend-glx: Remove redundant glFlush() + #2561 - Updates to COGL sources regarding non-standard code usage + #2571 - DeformEffect should use the FBO size + Many thanks to: + Neil Roberts + Clutter 1.6.4 2011-02-14 =============================================================================== diff --git a/configure.ac b/configure.ac index 98a9b8856..70e4e00b0 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], [6]) -m4_define([clutter_micro_version], [5]) +m4_define([clutter_micro_version], [6]) # • 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], [5]) # ... # # • for development releases: keep clutter_interface_age to 0 -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)])