2008-03-06 Emmanuele Bassi <ebassi@openedhand.com>

* README: Update the release notes.
This commit is contained in:
Emmanuele Bassi 2008-03-06 14:12:30 +00:00
parent 59699b1bdd
commit 3db6c88c82
2 changed files with 25 additions and 13 deletions

View File

@ -1,4 +1,8 @@
2008-02-28 Gwenole Beauchesne <gbeauchesne@splitted-desktop.org> 2008-03-06 Emmanuele Bassi <ebassi@openedhand.com>
* README: Update the release notes.
2008-03-06 Gwenole Beauchesne <gbeauchesne@splitted-desktop.org>
Signed off by: Emmanuele Bassi <ebassi@openedhand.com> Signed off by: Emmanuele Bassi <ebassi@openedhand.com>
@ -11,7 +15,7 @@
* clutter/clutter-entry.c: * clutter/clutter-entry.c:
(clutter_entry_handle_key_event_internal), (clutter_entry_handle_key_event_internal),
(clutter_entry_key_press), (clutter_entry_class_init), (clutter_entry_key_press), (clutter_entry_class_init),
(clutter_entry_handle_key_event): Handle a default class handler (clutter_entry_handle_key_event): Provide a default class handler
for the key-press-event, so that giving key focus to an entry will for the key-press-event, so that giving key focus to an entry will
automatically make it work. This deprecates the automatically make it work. This deprecates the
clutter_entry_handle_key_event() function. (#824) clutter_entry_handle_key_event() function. (#824)

30
README
View File

@ -140,6 +140,25 @@ RELEASE NOTES
Relevant information for developers with existing Clutter applications Relevant information for developers with existing Clutter applications
wanting to port to newer releases (See NEWS for general new feature info). wanting to port to newer releases (See NEWS for general new feature info).
Release Notes for Clutter 0.8
-------------------------------
* The behaviour of clutter_actor_get_opacity() has been slightly changed;
instead of returning the composited opacity of the entire parents chain
of an actor, clutter_actor_get_opacity() does what you mean, and returns
the opacity set with clutter_actor_set_opacity(). The composited
opacity value is now returned by clutter_actor_get_abs_opacity().
* Until 0.6, clutter_label_get_color() would have returned a ClutterColor
with the alpha component equal to the composited opacity of the label.
Now, clutter_label_get_color() returns a copy of the exact color set
with clutter_label_set_color().
* The ClutterEntry actor will automatically handle key events inside
a key-press-event handler. This deprecates the usage of
clutter_entry_handle_key_event() to update the contents of the
entry using the ClutterKeyEvent.
Release Notes for Clutter 0.6 Release Notes for Clutter 0.6
------------------------------- -------------------------------
@ -229,17 +248,6 @@ Release Notes for Clutter 0.6
clutter_entry_set_cursor_position() and clutter_entry_get_cursor_position() clutter_entry_set_cursor_position() and clutter_entry_get_cursor_position()
respectively. respectively.
* The behaviour of clutter_actor_get_opacity() has been slightly changed;
instead of returning the composited opacity of the entire parents chain
of an actor, clutter_actor_get_opacity() does what you mean, and returns
the opacity set with clutter_actor_set_opacity(). The composited
opacity value is now returned by clutter_actor_get_abs_opacity().
* Until 0.6.0, clutter_label_get_color() would have returned a ClutterColor
with the alpha component equal to the composited opacity of the label.
Now, clutter_label_get_color() returns a copy of the exact color set
with clutter_label_set_color().
Release Notes for Clutter 0.4.0 Release Notes for Clutter 0.4.0
------------------------------- -------------------------------