X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=ChangeLog;h=718c6ed146755e7af4c991dd4957c95f306dde91;hb=6a1eb104dd8505e78e9e1b647f4832f16ff8a623;hp=22bb7dc375f9521b9c206c576212a622fa10fb3e;hpb=18e833d726109484d4165bf9eb11a85df919cb0d;p=hildon diff --git a/ChangeLog b/ChangeLog index 22bb7dc..718c6ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,128 @@ +2009-09-18 Claudio Saavedra + + Do not return gboolean in GtkButton:clicked signal handlers + + * examples/hildon-banner-example.c: + (on_information_clicked), (on_animation_clicked), + (on_progress_clicked): GtkButton:clicked handlers do not return + gboolean. Fix this. + +2009-09-17 Claudio Saavedra + + [2.2.0 Release Candidate 7] + + * NEWS: Updates + * debian/changelog: bump and updates + +2009-09-17 Alberto Garcia + + * hildon/hildon-gtk.c (hildon_gtk_window_take_screenshot): + Use the Xlib API to take window screenshots, since the GDK API + doesn't allow us to set the event mask. + + Fixes: NB#138857 (hildon_gtk_window_take_screenshot doesn't take a + screenshot) + +2009-09-14 Claudio Saavedra + + [2.2.0 Release Candidate 6] + + * debian/changelog: bump and updates. + +2009-09-14 Claudio Saavedra + + * hildon/hildon-window.c: (hildon_window_update_menu_flag): Properly + free a GList and avoid potential memory corruption. + +2009-09-11 Claudio Saavedra + + [2.2.0 Release Candidate 5] + + * NEWS: Updates + * debian/changelog: bump and updates + +2009-09-11 Claudio Saavedra + + Do not set any flag for empty legacy menus + + * hildon/hildon-program.c: (hildon_program_set_common_menu): + * hildon/hildon-window.c: (hildon_window_update_menu_flag): + This will probably not work fine with empty legacy menus added to + programs or windows and populated later, but so it's life. + +2009-09-10 Claudio Saavedra + + Update the application menu flag for application-wise windows + + * hildon/hildon-program.c: (+hildon_program_on_common_app_menu_changed), + (hildon_program_set_common_app_menu): Also take into account the visibility + of its items. + +2009-09-10 Claudio Saavedra + + Emit HildonAppMenu::changed when menu items change visibility + + * hildon/hildon-app-menu.c: (item_visibility_changed), + (filter_visibility_changed): Also emit ::changed on + visibility of items changed. + +2009-09-10 Claudio Saavedra + + Do not set the menu flag in a window when a menu is empty + + * hildon/hildon-window.c: (hildon_window_update_menu_flag), + (on_menu_changed), (on_menu_changedhildon_window_set_main_menu), + (on_menu_changed), (hildon_window_set_main_menu): Update on menu + changes by using the HildonAppMenu::changed signal. + +2009-09-10 Claudio Saavedra + + Add HildonAppMenu::changed signal + + * hildon/hildon-app-menu.c: (hildon_app_menu_insert), + (hildon_app_menu_add_filter), (hildon_app_menu_class_init): + Emit a new HildonAppMenu:changed signal when there are changes in + the menu children. + +2009-09-10 Claudio Saavedra + + Add hildon_app_menu_has_visible_children() private method + + * hildon/hildon-app-menu-private.h: Add below private method. + * hildon/hildon-app-menu.c: (hildon_app_menu_has_visible_children): + New method to check the visibility of a HildonAppMenu children. + +2009-09-09 Claudio Saavedra + + Set the window menu flag for application-common menus + + * hildon/hildon-program.c: + (+hildon_program_window_set_common_menu_flag): Set or remove the + menu flag from a window only this doesn't have its own menu. + (+hildon_program_set_common_menu_flag): adjust menu flag for + all windows in the program. + (hildon_program_add_window), + (hildon_program_remove_window): add/remove the menu flag when + a window is added to the program. + + Fixes: NB#137814 (Indicator for view menu in app title area) + +2009-09-08 Claudio Saavedra + + Set a special window property for windows with menus + + * hildon/hildon-window-private.h: Add private + hildon_window_set_menu_flag() + * hildon/hildon-window.c: (+do_set_has_menu), + (+hildon_window_set_menu_flag): set + "_HILDON_WM_WINDOW_MENU_INDICATOR" to 1 in the window + or remove the property. + (hildon_window_set_main_menu), + (hildon_window_set_app_menu): call above methods to set or remove + the property when a menu is added or removed from the window. + + Partially fixes: NB#137814 (Indicator for view menu in app title area) + 2009-09-08 Claudio Saavedra Rename and move the methods to set flags to hildon-private.h