summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2012-01-30 12:23:46 +0000
committerEmmanuele Bassi <ebassi@linux.intel.com>2012-01-30 12:25:15 +0000
commit44a02953335551f6ad03f13f05f58f0040748797 (patch)
tree9a068f013049827a8d749fe55b7b7c53709f54c8
parent3d0a2473a29b60c7d339837f0fed6e92a9fad9d1 (diff)
downloadclutter-44a02953335551f6ad03f13f05f58f0040748797.tar.gz
Release Clutter 1.8.4 (stable)1.8.4
-rw-r--r--NEWS36
-rw-r--r--configure.ac4
2 files changed, 38 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 8b9d4968c..ab474c2dc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,39 @@
+Clutter 1.8.4 2012-01-30
+===============================================================================
+
+ • List of changes since Clutter 1.8.2
+
+ - Restore support for non-ARGB visuals on X11
+ The changes in the Cogl API for creating onscreen framebuffers led to
+ a regression in the selection of visuals for the GLX context: Clutter
+ started requesting only ARGB visuals, even though it's not strictly
+ necessary. This regression has now been fixed.
+
+ - Ensure that the OffscreenEffect uses the right size for the FBO
+ Especially for subclasses that change the size of the target texture.
+
+ - Fix build for Clutter on X11 without XI2 support
+
+ - Introspection annotation fixes
+
+ - Return the correct default value for the font resolution
+ We should be returning 96.0 as the default value, not -1. This ensures
+ that the code using font resolution, like the em-to-pixels conversion,
+ always uses valid values.
+
+ • List of bugs fixed since Clutter 1.8.2
+
+ [bugzilla.gnome.org]
+ #665040 - The offscreen effect always recreates the texture if
+ create_texture() is overridden to change the size
+ #664996 - clutter_state_set_key (allow-none)
+ #664336 - path: Fix introspection annotations
+
+Many thanks to:
+
+ Alexander Shopov, Bastian Winkler, Bastien Nocera, Jeremy Moles,
+ Neil Roberts, Robert Bragg
+
Clutter 1.8.2 2011-10-17
===============================================================================
diff --git a/configure.ac b/configure.ac
index 423c6ec64..5aa978a36 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], [8])
-m4_define([clutter_micro_version], [3])
+m4_define([clutter_micro_version], [4])
# • 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], [3])
# ...
#
# • for development releases: keep clutter_interface_age to 0
-m4_define([clutter_interface_age], [3])
+m4_define([clutter_interface_age], [4])
m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)])