From 3db6c88c8246180840e5511e94a7d470b2e0525a Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 6 Mar 2008 14:12:30 +0000 Subject: [PATCH] 2008-03-06 Emmanuele Bassi * README: Update the release notes. --- ChangeLog | 8 ++++++-- README | 30 +++++++++++++++++++----------- 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0389ea046..ab7a7c3e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2008-02-28 Gwenole Beauchesne +2008-03-06 Emmanuele Bassi + + * README: Update the release notes. + +2008-03-06 Gwenole Beauchesne Signed off by: Emmanuele Bassi @@ -11,7 +15,7 @@ * clutter/clutter-entry.c: (clutter_entry_handle_key_event_internal), (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 automatically make it work. This deprecates the clutter_entry_handle_key_event() function. (#824) diff --git a/README b/README index 70e92575f..7e2bc9031 100644 --- a/README +++ b/README @@ -140,6 +140,25 @@ RELEASE NOTES Relevant information for developers with existing Clutter applications 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 ------------------------------- @@ -229,17 +248,6 @@ Release Notes for Clutter 0.6 clutter_entry_set_cursor_position() and clutter_entry_get_cursor_position() 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 -------------------------------