X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=ChangeLog;h=afcdea46aab964dd1f7e98b0475e4b8979a58630;hb=c33d7303191523722a0b1fe93292ba8782fc28dc;hp=e83ddc26b6592b0f946a3b9145828b99a6f5ff42;hpb=b562b2a75ee324c4829f6342e39e46097d90078c;p=hildon diff --git a/ChangeLog b/ChangeLog index e83ddc2..afcdea4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,391 @@ +2009-05-25 Alejandro G. Castro + + * hildon/hildon-pannable-area.c, + (hildon_pannable_area_init), + (hildon_pannable_area_scroll_indicator_fade), + (hildon_pannable_area_button_press_cb), + (hildon_pannable_axis_scroll), + (hildon_pannable_area_timeout), + (hildon_pannable_area_motion_notify_cb), + (hildon_pannable_area_button_release_cb): Changed the name of the + clicked attribute to button_pressed, it is more clear about its use. + +2009-05-25 Alejandro Pinheiro + + * src/hildon-pannable-area.c + (hildon_pannable_area_init): set scroll_delay_counter and scrollbar_fade_delay + to 0 + (hildon_pannable_area_initial_effect): avoid to compute horizontal and + vertical scrollbar visibility, and use the data on private section instead, + remove the initial_hint check + (hildon_pannable_area_expose_event): add the initial_hint check here + +2009-05-25 Alejandro Pinheiro + + * src/hildon-pannable-area.c + (hildon_pannable_area_initial_effect): set to FALSE initial_effect + if the fadeout effect was used + (hildon_pannable_area_expose_event): check if it is required to + manage the initial effect on the begining of the function. Previously + it was made at the end, but this doesn't ensure that the scrollbars + will be painted on the first show. Do not set to FALSE initial_effect, + to ensure that the initial hint is showed the first time the pannable + becomes scrollable. + * examples/Makefile.am + * examples/hildon-pannable-area-initial-hint-example.c: + New example, to show that the initial-hint is showed when the widget + becomes scrollable + + Fixes: NB#116607 (Pannable area should always have scrollbar visible + initially if the application can be scrolled) + +2009-05-25 Alberto Garcia + + * hildon/hildon-app-menu.c (hildon_app_menu_repack_items): + Resize table before adding new items to make sure that + gtk_table_resize() is called just once. + +2009-05-25 Alberto Garcia + + * hildon/hildon-app-menu-private.h + * hildon/hildon-app-menu.c (item_visibility_changed) + (filter_visibility_changed, hildon_app_menu_show_all) + (hildon_app_menu_hide_all, hildon_app_menu_init): + Rearrange items just once when gtk_widget_show_all()/hide_all() + are used. + +2009-05-25 Alberto Garcia + + * hildon/hildon-app-menu.c + (hildon_app_menu_insert, hildon_app_menu_add_filter): + Don't call gtk_widget_show() on added items. + + Fixes: NB#109063 (HildonAppMenu shouldn't show its items + automatically when they're added) + +2009-05-20 Alberto Garcia + + * hildon/hildon-banner.c + (hildon_banner_realize, +hildon_banner_unrealize) + (+screen_size_changed, hildon_banner_class_init): + Redisplay the banner if the screen is rotated. + + Fixes: NB#117870 ('Disconnect charger...' info banner is truncated + on transition from landscape to portrait) + +2009-05-20 Alejandro Pinheiro + + * hildon/hildon-banner.[ch]: + (hildon_banner_show_information_override_dnd): remove icon_name from the + method definition as it is ignored. + * examples/hildon-banner-dnd-example.c: updated with the change on + hildon-banner.h API + +2009-05-20 Alejandro Pinheiro + + * hildon/hildon-banner-private.h: new require_override_dnd and + overrides_dnd variables + * hildon/hildon-banner.h: + (hildon_banner_show_information_override_dnd): new method, that shows + the information but sets the override flag, in order to show important + messages + * hildon/hildon-banner.c + (hildon_banner_show_information_override_dnd): new method + (hildon_banner_set_override_flag): new utility function + (hildon_banner_real_show_information): new utility function, in order to + generalize the current hildon_banner_show_information_override_dnd and + hildon_banner_show_information_override_dnd + * examples/Makefile.am + * examples/hildon-banner-dnd-example.c: New example that show how to + use the new hildon_banner_show_information_override_dnd + + Fixes: NB#114874 (There is no possibility to show hildon banners with + DND flag set) + +2009-05-20 Claudio Saavedra + + * hildon/hildon-pannable-area.c: Add a comment explaining the math + behind hildon_pannable_calculate_vel_factor(). + +2009-05-20 Claudio Saavedra + + * hildon/hildon-pannable-area.c + (hildon_pannable_calculate_vel_factor): Correct the sum of the + deceleration factors. + +2009-05-20 Claudio Saavedra + + * hildon/hildon-pannable-area.c (hildon_pannable_area_class_init): + Reduce the default value for 'scroll_time' to 1 second, since the + current initial scrolling takes too much time. + +2009-05-20 Claudio Saavedra + + * hildon/hildon-pannable-area.c (hildon_pannable_area_init): Do not + calculate velocity factor during initialization, since the properties + are not yet set. + +2009-05-20 Claudio Saavedra + + * hildon/hildon-pannable-area.c + (hildon_pannable_area_set_property): Calculate the velocity factor + after setting the deceleration property and not after. + +2009-05-20 Alberto Garcia + + * hildon/hildon-entry.c + (hildon_entry_class_init, +set_property, hildon_entry_new) + * hildon/hildon-check-button.c + (hildon_check_button_class_init) + (+set_property, hildon_check_button_new): + Make the theme size a property. + + Fixes: NB#117928 (Widgets such as Entry and CheckButton (and + others) do too much in the _new function) + +2009-05-18 Claudio Saavedra + + * configure.ac: post release version bump + * debian/changelog: post release version bump + +2009-05-18 Claudio Saavedra + + [Release 2.1.74] + + * NEWS: Updates. + * configure.ac: Bump version. + * debian/changelog: Updates. + +2009-05-15 Alberto Garcia + + * hildon/hildon-gtk.h + * hildon/hildon-gtk.c (hildon_gtk_window_take_screenshot): + New API function to take a screenshot of a window + + Fixes: NB#106374 (Need API to take a loading screenshot) + +2009-05-15 Alejandro Pinheiro + + * hildon/hildon-time-selector.c + (update_format_policy): prevent to use hours and minutes unitialized + +2009-05-15 Alberto Garcia + + * hildon/hildon-window.c (hildon_window_size_request): + Always request the full size of the screen (minus the title bar if + not in fullscreen mode). + + Fixes: NB#107486 (HildonWindow should size itself properly) + +2009-05-14 Claudio Saavedra + + * hildon/hildon-note-private.h: Add idle_handler to the private data. + * hildon/hildon-note.c (hildon_note_init), (hildon_note_finalize), + (on_show_cb), (sound_handling): Disconnect the idle handler for + the sound when the note is finalized to avoid possible crashes. + + Fixes: NB#116786 (Image viewer crases whie trying to launch menu, + in a scenario) + +2009-05-13 Artem Egorkine + + * src/hildon-animation-actor.c, + * src/hildon-remote-texture.c: + Added proper object cleanup to remove signal handler and object + references as HildonAnimationActor and HildonRemoteTexture + objects get destroyed. + + Fixes: NB#116682 (Destroying parented animation actors when + parent in unmapped leads to crash) + +2009-05-13 Claudio Saavedra + + Based on a patch by Christian Dywan (christian@imendio.com) + + * doc/hildon-sections.txt: + * hildon/hildon-helper.c (+hildon_format_file_size_for_display): + * hildon/hildon-helper.h: New file size formatting method. + * debian/changelog: + * debian/control: Depend on osso-filemanager l10n package for + proper localization strings. + +2009-05-13 Claudio Saavedra + + * tests/Makefile.am: Include top_srcdir to make possible to build + tests in a different builddir. + * tests/*.c: Include to allow building tests + on a different builddir. + +2009-05-12 Claudio Saavedra + + * hildon/hildon-touch-selector.c (disconnect_model_handlers), + (hildon_touch_selector_remove): Disconnect model's signal handler + on column removal. + + Fixes: NB#116289 (Hildon home crashes while adding task + shortcuts.) + +2009-05-11 Alberto Garcia + + * hildon/hildon-button.c + (hildon_button_set_title, hildon_button_set_value): + Hide labels containing an empty string. + +2009-05-11 Claudio Saavedra + + * configure.ac: post release version bump + * debian/changelog: post release version bump + +2009-05-11 Claudio Saavedra + + [Release 2.1.72] + + * NEWS: Updates. + * configure.ac: Bump version. + * debian/changelog: Updates. + +2009-05-08 Alejandro Pinheiro + + * hildon/hildon-note-private.h: Removed sound_signal_handler + * hildon/hildon-note.c + (on_show_cb): new callback on note "show" event, this simply adds + a idle, with the function sound_handling + (sound_handling): removed the sound_signal_handler management + (hildon_note_init): connect note "show" event to on_show_cb + (hildon_note_realize): remove the connection to "expose-event" + + Fixes: NB#115242 (Sound is not played every time for the 'Switch off + device?' confirmation note) + +2009-05-08 Alberto Garcia + + * hildon/hildon-note.c + (hildon_note_new_information_with_icon_name) + (hildon_note_new_confirmation_with_icon_name): + Terminate the list of parameters in g_object_set() calls + + Fixes: NB#115166 (Formatting memory card is not taking place) + +2009-05-08 Claudio Saavedra + + * hildon/hildon-sound.c (hildon_play_system_sound): Set the + "dialog-information" role for the sound being played. + +2009-05-06 Alberto Garcia + + * hildon/hildon-app-menu.c (hildon_app_menu_init): + Don't make the menu a modal window, it causes strange interactions + with the pointer grab and it's not really needed. + + Fixes: NB#105529 (Empty App menu is launched in a scenario.) + +2009-05-06 Alejandro Pinheiro + + * hildon/hildon-touch-selector.[ch] + (hildon_touch_selector_optimal_size_request): function added to get a + optimal size request from the touch selector, when you want a dialog to + show as much of the selector + * hildon/hildon-picker-dialog.c: + Removed HILDON_TOUCH_SELECTOR_HEIGHT macro + (hildon_app_menu_class_init): + New "max-height-landscape" and "max-height-portrait" style properties + (hildon_picker_dialog_size_request): redefined GtkWidget::size_request + (hildon_picker_dialog_get_max_height): returns the maximum height using + the style properties defined and checking the current portrait/landscape + status + (_hildon_picker_dialog_set_selector): removed the set_size_request + + Fixes: NB#109369 (Hard-coded height in HildonPickerDialog) + +2009-05-06 Claudio Saavedra + + * hildon/hildon-bread-crumb-trail.c: + * hildon/hildon-bread-crumb.c: + * hildon/hildon-seekbar.c: + Add reference to replacements for these deprecated widgets. + + Fixes: MB#4461 (Documentation: All deprecations should mention + replacements) + +2009-05-06 Alejandro Pinheiro + + * examples/hildon-remote-texture-example.c + + Change the include to the hildon-remote-texture in order to compile + properly the examples on the installed libhildon1-examples package + +2009-05-05 Claudio Saavedra + + * tests/Makefile.am: Add check for HildonPickerButton. + * tests/check-hildon-picker-button.c (fx_setup), (fx_teardown), + (START_TEST), (create_hildon_picker_button_suite): Add three simple + checks for the HildonPickerButton. + * tests/check_test.c (configure_tests): Add the test suite. + * tests/test_suites.h: likewise. + +2009-05-05 Claudio Saavedra + + * hildon/hildon-touch-selector.c + (+on_row_changed): Emit HildonTouchSelector:changed when the + contents of a selected row change. + (_create_new_column), (_hildon_touch_selector_set_model): connect + to GtkTreeModel:row-changed on a newly set model. + + Fixes: NB#114253 (HildonPickerButton not refreshing its value) + +2009-05-05 Alberto Garcia + + Based on a patch by Mox Soini (ext-mox.soini@nokia.com) + + * hildon/hildon-banner.c (hildon_banner_destroy) + (hildon_banner_show_progress, hildon_banner_set_fraction): + Remove the progress bar from HildonBanner and use a progress + indicator instead. + + Fixes: NB#113761 (Update progress banner to use progress + indicator) + +2009-05-04 Alberto Garcia + + * hildon/hildon-banner.c: + Calculate size of the banner label using the actual screen width + rather than using a fixed value. + + Fixes: NB#114395 ('Disconnect charger...' info banner in portrait + is truncated) + +2009-05-04 Alejandro G. Castro + + * hildon/hildon-pannable-area.c, + (hildon_pannable_area_class_init): Fixed signals documentation + typo. + +2009-05-04 Claudio Saavedra + + * configure.ac: post release version bump + * debian/changelog: post release version bump + +2009-05-04 Claudio Saavedra + + [Release 2.1.70] + + * NEWS: Updates. + * configure.ac: Bump version. + * debian/changelog: Updates. + +2009-05-01 Alberto Garcia + + * hildon/hildon-edit-toolbar.c + (hildon_edit_toolbar_init): + Don't let buttons in HildonEditToolbar receive focus. + + Fixes: NB#111160 (!HildonEditToolbar buttons are focused after + typing on an HW arrows key) + +2009-04-30 Claudio Saavedra + + * doc/Makefile.am: Fix build. + 2009-04-30 Claudio Saavedra * doc/Makefile.am: Do not redefine content_files.