2006-12-20 Matthew Allum <mallum@openedhand.com>

* NEWS:
        Add some missing improvements.
This commit is contained in:
Matthew Allum 2006-12-20 00:59:07 +00:00
parent c69e1d36ae
commit 17ba56b2fa
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-12-20 Matthew Allum <mallum@openedhand.com>
* NEWS:
Add some missing improvements.
2006-12-17 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-label.c: Remove some gtk-isms; always take

10
NEWS
View File

@ -8,11 +8,12 @@ Clutter 0.2 ()
don't have to explicitely unref them: every memory an actor
allocates will be freed when the group containing the actor will
be destroyed.
o Add run-time detection of GL features.
o Add basic run-time detection of GL features.
+ Use GL_TEXTURE_RECTANGLE_ARB if available.
+ Attempt to set up sync to vblank
o Add API for behaviours. A ClutterBehaviour is an object which
drives a set of actors using one or more properties depending
on the value of an "alpha" function.
o Add group and actor scale API and functionality.
o Add fixed point API for embedded platforms with no FPU.
o Add support for command line switches to Clutter, like debug
flags and abort on warnings; also allow application to hook up
@ -20,7 +21,10 @@ Clutter 0.2 ()
switches.
o Add Pango GL renderer for Clutter, and use it to render text
inside the ClutterLabel actor; this will decrease texture memory
usage.
usage.
o Redo Clutter Label widget.
o Clutter Textures not store local pixbuf copy (of texture).
o Redo group and actor scale/sizing API and functionality.
* List of bug fixed
o #156 - clutter_actor_set_position not using the absolute size
o #155 - Don't test for XInitThreads [Bastien Nocera]