X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=ChangeLog;h=01017a11690f5c6d4665c17b3274889742647498;hb=c90de293989134c9cfd1a121e827a5f81f21df7b;hp=cbda09aef39151614fbab558fde293ffe6b19d8c;hpb=cf36e5d840f57b01f22c0c58a2756a9f86b8e5dc;p=hildon diff --git a/ChangeLog b/ChangeLog index cbda09a..01017a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,220 @@ +2008-04-14 16:52:59 + + * src/hildon-banner.c: guard force_to_wrap_truncated() against + operating on unrealized widgets, fixes: + Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash + + * src/hildon-banner-private.h: coalesce boolean fields into bitfield. + +2008-04-09 Kristian Rietveld + + Fixes: NB#77775: Media Player, Save Now playing list, too long name + makes banner disappear. + Fixes: NB#79182: info banner flickering with certain message lengts. + + * src/hildon-banner.c (hildon_banner_constructor), + (hildon_banner_init), (hildon_banner_set_text), + (hildon_banner_set_markup): call hildon_banner_reset_wrap_state(), + (hildon_banner_reset_wrap_state): new function: reset wrap flags to + FALSE, reset size requests of label and banner, + (force_to_wrap_truncated): when the text is too wide, always enforce + the maximum possible width instead of recalculating it from the + layout; enforce the maximum banner height of 3 lines, + (hildon_banner_init): set WORD_CHAR wrapping, this will result in + nicer wrapping and no truncated chars if space gets tight. + + * src/hildon-banner-private.h: add has_been_wrapped and + has_been_truncated fields. + +2008-04-07 Sven Herzberg + + Fixes: NB#78896: libhildon code inspection/coverity: uninitialised + local values in hildon_date_editor_size_allocate + + * src/hildon-date-editor.c: moved the real allocation code into the + if() branch + +2008-04-07 Sven Herzberg + + Prepares: NB#78896: libhildon code inspection/coverity: uninitialised + local values in hildon_date_editor_size_allocate + + * src/hildon-date-editor.c: merged the two if() branches together + +2008-04-07 Sven Herzberg + + Prepares: NB#78896: libhildon code inspection/coverity: uninitialised + local values in hildon_date_editor_size_allocate + + * src/hildon-date-editor.c: changed the arguments of the if() + conditions + +2008-04-07 Sven Herzberg + + Prepares: NB#78896: libhildon code inspection/coverity: uninitialised + local values in hildon_date_editor_size_allocate + + * src/hildon-date-editor.c: split the calculation of the allocation + from the real allocation + +2008-03-27 Michael Natterer + + Fixes: NB#81696: The passcode is not overwritten even after + selecting + + * src/hildon-code-dialog.c + (hildon_code_dialog_button_clicked) + (hildon_code_dialog_im_commit): don't use gtk_entry_append_text() + because that doesn't overwrite selected text. Instead, emit the + "commit" signal on the entry's im_context so the entry's normal + insert logic is triggered. Set the cursor to the end of the entry + after each insert operation so that we *only* insert in the middle + of the text if something was selected. + +2008-03-27 Michael Natterer + + Enable fixing: NB#79916 and NB#79918: The help topic for Color + selector cannot be opened + + * src/hildon-color-button.c: add signal "setup-dialog" and emit it + when the popup color selector is created. Please connect to this + signal in order to set the dialog's help ID. + +2008-03-25 Sven Herzberg + + Fixes: MB#1212: Hide info banners (infoprints) on click + + * src/hildon-banner.c: (simulate_close), (hildon_banner_timeout): + extracted the close event simulation into an extra function + (hildon_banner_button_press_event): simulate a close event and destroy + the widget if the event wasn't handled + (hildon_banner_class_init): added the button_press_event handler + (hildon_banner_init): added button-press events to the widget + +2008-03-25 Sven Herzberg + + Fixes: MB:#924: Hildon widgets doesn't support RTL mode + Patch from: Mohammad Anwari + + * src/hildon-banner.c: let the HildonBanners pop up on the left side + instead of the right in RTL mode + * src/hildon-bread-crumb-trail.c: mirror the appearance of the + breadcrumb button list in RTL mode + * src/hildon-caption.c: mirror the appearance of the caption widget in + RTL mode + * src/hildon-date-editor.c: mirror appearance of the date editor in + RTL mode + * src/hildon-time-editor.c: mirror appearance of the time editor in + RTL mode + * src/hildon-window.c: fix the position of the popup in RTL mode + +2008-03-25 Sven Herzberg + + Amendment to the fix of NB#22072. Fix compilation. + + * src/hildon-banner.c: (hildon_banner_timeout): fix compilation + +2008-03-19 Sven Herzberg + + Fixes: NB#22072: Revisiting fix for "Implement robust timer handling + in Info Banner" bug + + * src/hildon-banner.c: (hildon_banner_timeout): reset the current + timeout id properly when the timeout will disappear this leaves no + artifacts around in the destroy(); there will only be the timeout + created by hildon_banner_ensure_timeout() and adding a new timeout + will also work if the timeout gets removed because the timeout_handler + returned FALSE + +2008-03-19 Michael Natterer + + Fixes: NB#79791: Cannot set focus to Master volume using stylus + + * src/hildon-volumebar.c + * src/hildon-vvolumebar.c + * src/hildon-hvolumebar.c (init): remove UNSET_FLAGS(CAN_FOCUS) so + the widget becomes focussable at all. + + * src/hildon-volumebar.c: implement GtkWidget::grab_focus() and + set the focus to wither the mute button or the volumebar. + + Remove own "can-focus" property and instead listen to + notify::can-focus in order to update the widget's state. + + Implement GtkWidget::focus() and make sure we can also *leave* the + widget, not only enter it, depending on volumebar orientation and + requested focus direction. + + Clean up set_mute() to cooperate nicely with all the above. + +2008-03-04 Michael Natterer + + Fixes: NB#78481: information banners are hidden under browser menu + + * src/hildon-banner.c: call gtk_window_present() on the banners so + they are risen if they are already visible. + +2008-03-03 Sven Herzberg + + Fixes: MB#1220: HildonWindow should take GtkMenu accel_group into account + + * examples/hildon-window-menu-example.c: (main): extended the window + menu example to serve as a testcase for automatically added + accelerator groups, too + * src/hildon-window.c: (hildon_window_add_accel_group), + (hildon_window_set_menu): added patch by Tommi Komulainen + +2008-03-03 Sven Herzberg + + Fixes: MB#1276: wrong allocators used in hildon_window_get_borders + + * src/hildon-window.c: (hildon_window_get_borders): don't imply any + knowledge about the border allocators used within GTK+ + +2008-02-26 Sven Herzberg + + Fixes: MB#2981: Build with asserts broken + + * src/hildon-date-editor.c, + * src/hildon-number-editor.c, + * src/hildon-time-editor.c, + * src/hildon-weekday-picker.c: replace HILDON_IS_EDITOR_EDITOR by a + the proper GType instance check + +2008-02-25 Sven Herzberg + + Fixed: MB#1221: HildonWindow shouldn't call show_all for GtkMenu + + * doc/Makefile.am: tell gtk-doc about HILDON_DISABLE_DEPRECATED + * examples/hildon-window-menu-example.c: (main): explicitly show + the menu item + * src/hildon-window.c: + (hildon_window_set_main_menu): moved most of the code from set_menu() + to this place; skipped the call to gtk_widget_show_all(); also didn't + introduce gtk_widget_show() as gtk_menu_popup() will call that anyways + (hildon_window_set_menu): removed most of the code, just keep the + questionable gtk_widget_show_all() + * src/hildon-window.h: added the new function and deprecate the old + one + +2008-01-10 Xan Lopez + + [2.0.1-1 release] + + * NEWS: + * configure.ac: + * debian/changelog: Updating. + +2008-01-10 Xan Lopez + + * configure.ac: + * pkgconfig/Makefile.am: + * pkgconfig/hildon.pc.in: + * src/Makefile.am: + + Do not use PACKAGE_VERSION_MAJOR as the API revision, + use newly created API_MAJOR_VERSION. + 2008-01-09 Xan Lopez [2.0.0-1 release]