docs: Update the release notes

This commit is contained in:
Emmanuele Bassi 2011-12-20 15:59:15 +00:00 committed by Emmanuele Bassi
parent e6082fe42f
commit 2aaf359272

View File

@ -289,6 +289,17 @@ features).
Release Notes for Clutter 1.10
-------------------------------------------------------------------------------
• ClutterBox and ClutterGroup have been deprecated. ClutterActor should be
used directly, instead.
• ClutterContainer provides default implementations for add(), remove(),
and foreach(); this means that overriding these methods is now deprecated,
and that developers should only implement ClutterContainer for classes
providing child properties.
• ClutterActor is not an abstract type any more, and can be instantiated
either through clutter_actor_new() or through g_object_new().
• ClutterActor now implements ClutterContainer, and takes over the entire API
for modifying the scene graph; this means that every actor can have children
and it's not necessary any more to implement the ClutterContainer interface.