1
0
Fork 0

Release Clutter 1.6.6 (stable)

This commit is contained in:
Emmanuele Bassi 2011-02-21 12:47:09 +00:00
parent f5c240a50b
commit d5e6594ddd
2 changed files with 22 additions and 2 deletions

20
NEWS
View file

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

View file

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