daf6fad6993b4acdcf1a5555c88c4a17df0fdafb
[hildon] / ChangeLog
1 2008-05-20 Alejandro G. Castro <alex@igalia.com>
2
3         * src/hildon-pannable-area.c:
4         (hildon_pannable_area_dispose): Fixed a crash when closing the
5         window and kinetics is activated.
6         
7 2008-05-19  Alberto Garcia  <agarcia@igalia.com>
8
9         * src/hildon-pannable-area.h
10         * src/hildon-pannable-area.c
11         Changed indentation style to meet the one used in Hildon
12
13 2008-05-19 Alejandro G. Castro <alex@igalia.com>
14
15         Reviewed the interaction of the AUTO mode, now we use the time
16         attribute of the events and calculate the velocity in the motion,
17         doing a gimp like calculation. The velocity is calculated in each
18         motion event using the last velocity and the current one, the
19         SMOOTH_FACTOR controls the percentage of the new velocity we use.
20         
21         * src/hildon-pannable-area.c: Replaced the time based algorithm
22         for the AUTO mode.
23         (hildon_pannable_area_motion_notify_cb): now we do not launch the
24         timeout for the AUTO mode when we are still moving the cursor. We
25         added also the velocity calculation in this function.
26         (hildon_pannable_area_button_release_cb): launch the timeout in
27         case we are in AUTO mode. There are still some constants here that
28         come from the old implementation that should be reviewed and
29         handled properly.
30         
31 2008-05-15  Alberto Garcia  <agarcia@igalia.com>
32
33         * doc/hildon-docs.sgml
34         * doc/hildon.types
35         * src/Makefile.am
36         * src/hildon-stackable-window.c
37         * src/hildon-stackable-window.h
38         * src/hildon.h
39         New HildonStackableWindow widget
40
41         * examples/hildon-dialog-example.c
42         * examples/hildon-pannable-area-example.c
43         Updated copyright
44
45 2008-05-14  Alberto Garcia  <agarcia@igalia.com>
46
47         * src/hildon-dialog.c
48         (hildon_dialog_new_with_buttons): New constructor.
49
50         * examples/hildon-dialog-example.c
51         (main): Update the example to use the new
52         hildon_dialog_new_with_buttons().
53
54         * examples/hildon-pannable-area-example.c
55         (main): Update example.
56
57 2008-05-13 Alberto Garcia <agarcia@igalia.com>
58
59         * doc/hildon-docs.sgml
60         * doc/hildon.types
61         Added HildonPannableArea to the documentation.
62
63 2008-05-13 Victor Jaquez <vjaquez@igalia.com>
64
65         * doc/visual_index.xml
66         Fix reference to HildonLoginDialog in documentation
67
68         * doc/hildon-docs.sgml
69         * doc/hildon.types
70         * examples/Makefile.am
71         * examples/hildon-dialog-example.c
72         * src/Makefile.am
73         * src/hildon-dialog.c
74         * src/hildon-dialog.h
75         * src/hildon.h
76         New HildonDialog widget.
77
78 2008-05-09 Alberto Garcia <agarcia@igalia.com>
79
80         * src/hildon-pannable-area.c
81         Merge latest changes (r4318, r4342) from libmokoui trunk
82
83 2008-05-09 Alberto Garcia <agarcia@igalia.com>
84
85         * examples/Makefile.am
86         * examples/hildon-pannable-area-example.c
87         * src/Makefile.am
88         * src/hildon-pannable-area.c
89         * src/hildon-pannable-area.h
90         * src/hildon.h
91         New HildonPannableArea widget.
92
93 2008-04-15 18:05:19    <timj@imendio.com>
94
95         * src/hildon-banner.c: revert the recent change, that introduced
96         gtk_window_present() calls. this reopens:
97           Bug 78481 - [freetest] information banners are hidden under browser menu
98         But resolves another variant of:
99           Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
100
101 2008-04-15 13:21:13    <timj@imendio.com>
102
103         * src/hildon-banner.c: refetch layout pointer after GtkLabel possibly
104         recreated its layout, spotted by Kris. this fixes all remaining
105         artefacts and stability issues with the banner code. in particular:
106         Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
107
108 2008-04-14 16:52:59    <timj@imendio.com>
109
110         * src/hildon-banner.c: guard force_to_wrap_truncated() against
111         operating on unrealized widgets, fixes:
112         Bug 83953 - Lock dialog is not visible when device is locked for the first time after flash
113
114         * src/hildon-banner-private.h: coalesce boolean fields into bitfield.
115
116 2008-04-09  Kristian Rietveld  <kris@imendio.com>
117
118         Fixes: NB#77775: Media Player, Save Now playing list, too long name
119         makes banner disappear.
120         Fixes: NB#79182: info banner flickering with certain message lengts.
121
122         * src/hildon-banner.c (hildon_banner_constructor),
123         (hildon_banner_init), (hildon_banner_set_text),
124         (hildon_banner_set_markup): call hildon_banner_reset_wrap_state(),
125         (hildon_banner_reset_wrap_state): new function: reset wrap flags to
126         FALSE, reset size requests of label and banner,
127         (force_to_wrap_truncated): when the text is too wide, always enforce
128         the maximum possible width instead of recalculating it from the
129         layout; enforce the maximum banner height of 3 lines,
130         (hildon_banner_init): set WORD_CHAR wrapping, this will result in
131         nicer wrapping and no truncated chars if space gets tight.
132
133         * src/hildon-banner-private.h: add has_been_wrapped and
134         has_been_truncated fields.
135
136 2008-04-07  Sven Herzberg  <sven@imendio.com>
137
138         Fixes: NB#78896: libhildon code inspection/coverity: uninitialised
139         local values in hildon_date_editor_size_allocate
140
141         * src/hildon-date-editor.c: moved the real allocation code into the
142         if() branch
143
144 2008-04-07  Sven Herzberg  <sven@imendio.com>
145
146         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
147         local values in hildon_date_editor_size_allocate
148
149         * src/hildon-date-editor.c: merged the two if() branches together
150
151 2008-04-07  Sven Herzberg  <sven@imendio.com>
152
153         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
154         local values in hildon_date_editor_size_allocate
155
156         * src/hildon-date-editor.c: changed the arguments of the if()
157         conditions
158
159 2008-04-07  Sven Herzberg  <sven@imendio.com>
160
161         Prepares: NB#78896: libhildon code inspection/coverity: uninitialised
162         local values in hildon_date_editor_size_allocate
163
164         * src/hildon-date-editor.c: split the calculation of the allocation
165         from the real allocation
166
167 2008-03-27  Michael Natterer  <mitch@imendio.com>
168
169         Fixes: NB#81696: The passcode is not overwritten even after
170         selecting
171
172         * src/hildon-code-dialog.c
173         (hildon_code_dialog_button_clicked)
174         (hildon_code_dialog_im_commit): don't use gtk_entry_append_text()
175         because that doesn't overwrite selected text. Instead, emit the
176         "commit" signal on the entry's im_context so the entry's normal
177         insert logic is triggered. Set the cursor to the end of the entry
178         after each insert operation so that we *only* insert in the middle
179         of the text if something was selected.
180
181 2008-03-27  Michael Natterer  <mitch@imendio.com>
182
183         Enable fixing: NB#79916 and NB#79918: The help topic for Color
184         selector cannot be opened
185
186         * src/hildon-color-button.c: add signal "setup-dialog" and emit it
187         when the popup color selector is created. Please connect to this
188         signal in order to set the dialog's help ID.
189
190 2008-03-25  Sven Herzberg  <sven@imendio.com>
191
192         Fixes: MB#1212: Hide info banners (infoprints) on click
193
194         * src/hildon-banner.c: (simulate_close), (hildon_banner_timeout):
195         extracted the close event simulation into an extra function
196         (hildon_banner_button_press_event): simulate a close event and destroy
197         the widget if the event wasn't handled
198         (hildon_banner_class_init): added the button_press_event handler
199         (hildon_banner_init): added button-press events to the widget
200
201 2008-03-25  Sven Herzberg  <sven@imendio.com>
202
203         Fixes: MB:#924: Hildon widgets doesn't support RTL mode
204         Patch from: Mohammad Anwari  <mdamt@maemo.org>
205
206         * src/hildon-banner.c: let the HildonBanners pop up on the left side
207         instead of the right in RTL mode
208         * src/hildon-bread-crumb-trail.c: mirror the appearance of the
209         breadcrumb button list in RTL mode
210         * src/hildon-caption.c: mirror the appearance of the caption widget in
211         RTL mode
212         * src/hildon-date-editor.c: mirror appearance of the date editor in
213         RTL mode
214         * src/hildon-time-editor.c: mirror appearance of the time editor in
215         RTL mode
216         * src/hildon-window.c: fix the position of the popup in RTL mode
217
218 2008-03-25  Sven Herzberg  <sven@imendio.com>
219
220         Amendment to the fix of NB#22072. Fix compilation.
221
222         * src/hildon-banner.c: (hildon_banner_timeout): fix compilation
223
224 2008-03-19  Sven Herzberg  <sven@imendio.com>
225
226         Fixes: NB#22072: Revisiting fix for "Implement robust timer handling
227         in Info Banner" bug
228
229         * src/hildon-banner.c: (hildon_banner_timeout): reset the current
230         timeout id properly when the timeout will disappear this leaves no
231         artifacts around in the destroy(); there will only be the timeout
232         created by hildon_banner_ensure_timeout() and adding a new timeout
233         will also work if the timeout gets removed because the timeout_handler
234         returned FALSE
235
236 2008-03-19  Michael Natterer  <mitch@imendio.com>
237
238         Fixes: NB#79791: Cannot set focus to Master volume using stylus
239
240         * src/hildon-volumebar.c
241         * src/hildon-vvolumebar.c
242         * src/hildon-hvolumebar.c (init): remove UNSET_FLAGS(CAN_FOCUS) so
243         the widget becomes focussable at all.
244
245         * src/hildon-volumebar.c: implement GtkWidget::grab_focus() and
246         set the focus to wither the mute button or the volumebar.
247
248         Remove own "can-focus" property and instead listen to
249         notify::can-focus in order to update the widget's state.
250
251         Implement GtkWidget::focus() and make sure we can also *leave* the
252         widget, not only enter it, depending on volumebar orientation and
253         requested focus direction.
254
255         Clean up set_mute() to cooperate nicely with all the above.
256
257 2008-03-04  Michael Natterer  <mitch@imendio.com>
258
259         Fixes: NB#78481: information banners are hidden under browser menu
260
261         * src/hildon-banner.c: call gtk_window_present() on the banners so
262         they are risen if they are already visible.
263
264 2008-03-03  Sven Herzberg  <sven@imendio.com>
265
266         Fixes: MB#1220: HildonWindow should take GtkMenu accel_group into account
267
268         * examples/hildon-window-menu-example.c: (main): extended the window
269         menu example to serve as a testcase for automatically added
270         accelerator groups, too
271         * src/hildon-window.c: (hildon_window_add_accel_group),
272         (hildon_window_set_menu): added patch by Tommi Komulainen
273
274 2008-03-03  Sven Herzberg  <sven@imendio.com>
275
276         Fixes: MB#1276: wrong allocators used in hildon_window_get_borders
277
278         * src/hildon-window.c: (hildon_window_get_borders): don't imply any
279         knowledge about the border allocators used within GTK+
280
281 2008-02-26  Sven Herzberg  <sven@imendio.com>
282
283         Fixes: MB#2981: Build with asserts broken
284
285         * src/hildon-date-editor.c,
286         * src/hildon-number-editor.c,
287         * src/hildon-time-editor.c,
288         * src/hildon-weekday-picker.c: replace HILDON_IS_EDITOR_EDITOR by a
289         the proper GType instance check
290
291 2008-02-25  Sven Herzberg  <sven@imendio.com>
292
293         Fixed: MB#1221: HildonWindow shouldn't call show_all for GtkMenu
294
295         * doc/Makefile.am: tell gtk-doc about HILDON_DISABLE_DEPRECATED
296         * examples/hildon-window-menu-example.c: (main): explicitly show
297         the menu item
298         * src/hildon-window.c:
299         (hildon_window_set_main_menu): moved most of the code from set_menu()
300         to this place; skipped the call to gtk_widget_show_all(); also didn't
301         introduce gtk_widget_show() as gtk_menu_popup() will call that anyways
302         (hildon_window_set_menu): removed most of the code, just keep the
303         questionable gtk_widget_show_all()
304         * src/hildon-window.h: added the new function and deprecate the old
305         one
306
307 2008-01-10  Xan Lopez  <xan.lopez@nokia.com>
308
309         [2.0.1-1 release]
310
311         * NEWS:
312         * configure.ac:
313         * debian/changelog: Updating.
314
315 2008-01-10  Xan Lopez  <xan.lopez@nokia.com>
316
317         * configure.ac:
318         * pkgconfig/Makefile.am:
319         * pkgconfig/hildon.pc.in:
320         * src/Makefile.am:
321
322         Do not use PACKAGE_VERSION_MAJOR as the API revision,
323         use newly created API_MAJOR_VERSION.
324         
325 2008-01-09  Xan Lopez  <xan.lopez@nokia.com>
326
327         [2.0.0-1 release]
328
329         * NEWS:
330         * configure.ac:
331         * debian/changelog: Updating.
332
333 2008-01-09  Xan Lopez  <xan.lopez@nokia.com>
334
335         * src/hildon-color-chooser.c (hildon_color_chooser_class_init): 
336
337         Add outer_border style property, we use it but don't define it (!).
338
339         Fixes NB#75310
340
341 2007-12-21  Xan Lopez  <xan.lopez@nokia.com>
342
343         * examples/hildon-bread-crumb-trail-example.c (main): 
344
345         Add clear button.
346
347         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_remove): 
348
349         Fix logic for the bread crumb trail node removal.
350
351         Fixes: NB#78616
352
353 2007-12-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
354
355         [1.99.1-1 release]
356
357         * NEWS:
358         * configure.ac:
359         * debian/changelog: Updating.
360
361 2007-11-08  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
362
363         Patch by Alejandro to get/set passwords dialogs accesibility.
364
365         * hildon-1/src/hildon-get-password-dialog.c:
366         * hildon-1/src/hildon-set-password-dialog.c: 
367         Set atk_set_name to the passwd entries in order to allow 
368         accessibility by name on this entries.
369         
370 2007-10-11  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
371
372         [1.99.0-2 release]
373
374         * debian/changelog:
375         * debian/control: Updating gtk dep.
376
377 2007-10-10  Mohammad Anwari  <Mohammad.Anwari@nokia.com>
378
379         * configure.ac, pkgconfig/hildon-1.pc: Turn on -DMAEMO_CHANGES only if
380         USE_MAEMO_GTK is enabled.
381
382 2007-10-10  Xan Lopez  <xan.lopez@nokia.com>
383
384         * src/hildon-code-dialog.c (hildon_code_dialog_init): check for
385         MAEMO_GTK or GTK+ > 2.11 before using GTK_BUTTONBOX_CENTER mode.
386
387 2007-10-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
388
389         [1.99.0-1 release]
390
391         * NEWS:
392         * configure.ac:
393         * debian/changelog: Updating.
394
395 2007-10-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
396
397         * examples/Makefile.am:
398         * examples/hildon-logical-color-example.c:
399         * src/hildon-helper.c: Fixing the way logical colors/fonts are being
400         applied + adding a test case. Fixes: NB#71660.
401
402 2007-10-08  Xan Lopez  <xan.lopez@nokia.com>
403
404         * src/hildon-window.c (hildon_window_map): only map the vbox if it's supposed
405         to be visible, fixes warning on map for windows without toolbars.
406
407 2007-10-02  Xan Lopez  <xan.lopez@nokia.com>
408
409         * src/hildon-seekbar.c: gtk_range_get_fill_level is available in GTK+ since
410         2.11.0, add a check for that besides the MAEMO_GTK check.
411
412 2007-09-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
413
414         [1.0.17-1 release]
415
416         * NEWS:
417         * configure.ac:
418         * debian/changelog: Updating.
419
420 2007-09-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
421
422         * src/hildon-window.c: Applying patches by Xan to fix the toolbar
423         visibility. Fixes: NB#70842 and MB#615.
424
425 2007-09-25  Xan Lopez  <xan.lopez@nokia.com>
426
427         * src/hildon-bread-crumb-widget.c (hildon_bread_crumb_widget_constructor):
428         set the separator as no-show-all so it doesn't unintentionally appear when
429         someone does a show_all.
430
431 2007-09-25  Xan Lopez  <xan.lopez@nokia.com>
432
433         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_text)
434         (hildon_bread_crumb_trail_push_icon): Do not show the separator for the
435         toplevel item. Fixes: NB#62031
436
437 2007-09-24  Xan Lopez  <xan.lopez@nokia.com>
438
439         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_push_icon):
440         fix the name of the function in the docs.
441
442 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
443
444         [1.0.16-1 release]
445
446         * NEWS:
447         * configure.ac:
448         * debian/changelog: Updating.
449
450 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
451
452         * examples/hildon-banner-long-example.c: Adding a test-case for long
453         hildon banner.
454
455         * src/hildon-find-toolbar.c: Fixing the get_last_index function.
456
457 2007-09-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
458
459         * src/hildon-color-chooser-dialog.c:
460         * src/hildon-color-chooser.c:
461         * src/hildon-font-selection-dialog.c: Adding two patches by Tommi to fix
462         memory leaks in font selector and color selector. Fixes: NB#70499 and
463         NB#70474.
464
465 2007-09-20  Johan Bilien  <johan.bilien@nokia.com> 
466
467         * src/hildon-helper.c: Fixed the leak of the a GList. Fixes: NB#70273.
468
469 2007-09-18  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
470
471         * src/hildon-code-dialog.c: Making the hardcoded WIDTH/HEIGHT values a
472         little bit bigger. Fixes: #NB63694.
473
474 2007-09-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
475
476         [1.0.15-1 release]
477
478         * NEWS:
479         * configure.ac:
480         * debian/changelog: Updating.
481
482 2007-09-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
483
484         * doc/Makefile.am:
485         * doc/hildon-docs.sgml:
486         * doc/images/bread-crumb-trail.png:
487         * doc/images/calendar-popup.png:
488         * doc/images/caption.png:
489         * doc/images/code-dialog.png:
490         * doc/images/color-button.png:
491         * doc/images/color-chooser-dialog.png:
492         * doc/images/color-chooser.png:
493         * doc/images/controlbar.png:
494         * doc/images/date-editor.png:
495         * doc/images/font-selection-dialog.png:
496         * doc/images/get-password-dialog.png:
497         * doc/images/hvolumebar.png:
498         * doc/images/login-dialog.png:
499         * doc/images/note.png:
500         * doc/images/number-editor.png:
501         * doc/images/range-editor.png:
502         * doc/images/seekbar.png:
503         * doc/images/set-password-dialog.png:
504         * doc/images/sort-dialog.png:
505         * doc/images/time-editor.png:
506         * doc/images/time-picker.png:
507         * doc/images/vvolumebar.png:
508         * doc/images/weekday-picker.png: Adding the new generated widget shots.
509         Adding the bread-crumb-trial and helpers to the documentation.
510
511 2007-09-14  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
512
513         * examples/hildon-find-toolbar-example.c:
514         * src/hildon-find-toolbar.c:
515         * src/hildon-find-toolbar.h: FIxing the default history-append handler to
516         actually continue firing the other handlers if connected. Adding a new
517         function:
518         hildon_find_toolbar_get_last_index that gets the index of the most
519         recently added (last) item. Fixes: NB#52301.
520
521 2007-09-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
522
523         * src/hildon-caption.c: Applying a patch by Tommi to fix the focus
524         behaviour. Fixes: NB#68610. 
525
526 2007-09-10  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
527
528         * src/hildon-banner.c: Actually reverting the previous change. It somehow
529         looks a bit worse.
530
531 2007-09-06  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
532
533         * src/hildon-banner.c: Changing the infobanner background pixmap to NULL
534         when realizing the banner. Should make the infonbanner effect a bit more
535         bearable.
536
537 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
538
539         * src/hildon-volumebar.c:
540         * src/hildon-volumebar.h: Changing the GtkWidget to HildonVolumebar in
541         hildon_volumebar_set_range_insensitive_message and
542         hildon_volumebar_set_range_insensitive_messagef. Fixes MB#1848.
543
544 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
545
546         * src/hildon-window.c: Fixing the border freeing on destroy.
547
548 2007-09-05  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
549
550         * src/hildon-code-dialog-private.h:
551         * src/hildon-code-dialog.c: Adding a patch by Tomas Junnonen to fix the
552         kw keyboard support in HildonCodeDialog.
553
554 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
555
556         [1.0.14-1 release]
557
558         * NEWS:
559         * configure.ac:
560         * debian/changelog: Updating.
561
562 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
563
564         * src/hildon-date-editor.c:
565         * src/hildon-number-editor.c:
566         * src/hildon-private.c:
567         * src/hildon-private.h:
568         * src/hildon-time-editor.c:
569         * src/hildon-weekday-picker.c: A patch by Xan Lopez to fix focus
570         handling in subclassed composite widgets. Fixes: NB#66628.
571
572 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
573
574         * src/hildon-window.c: Removing extra gtk_main_iteration () processing
575         from destroy_ callback as it introduces problems in async dbus signal
576         handlers. Fixes NB#66673.
577
578 2007-08-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
579
580         * examples/hildon-hvolumebar-example.c:
581         * src/hildon-volumebar.c: Improving the focus handling in the
582         volumebar widgets. Fixes NB#63955 and NB#65155. Also fixing the
583         set_property accessor so that "mute" property can be actually set. I'm
584         scared that nobody noticed it's totally broken.
585
586 2007-08-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
587
588         * debian/control: Use libesd0-dev or osso-esd-dev as esd dependancy.
589         Fixes NB#66548.
590
591 2007-08-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
592
593         * src/hildon-calendar.c:
594         * src/hildon-number-editor.c:
595         * src/hildon-time-picker.c: Changing the timeout repeat so that it
596         matches the spec of 6 chars per second. Fixes: NB#60489.
597
598 2007-08-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
599
600         * src/hildon-helper.c: Really fixing NB#58352. Looks like
601         gtk_style_lookup_color sometime returns FALSE even though color was
602         found and values were filled properly. Weird. Removing the warning for the
603         time being.
604
605 2007-08-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
606
607         * src/hildon-find-toolbar.c: Puting the combobox inside alignment to not
608         expand vertically. Adding some extra space to the find toolbar buttons to
609         make them thumbable. Fixes NB#66060.
610
611 2007-08-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
612
613         * src/hildon-calendar-popup.c: Replacing the "Done" button in the calendar
614         popup with "Ok" and "Cancel". Fixes NB#59299.
615
616 2007-08-20  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
617
618         * src/hildon-calendar.c: Process all window updates before executing next
619         timeout. Fixes: NB#54146.
620
621 2007-08-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
622
623         [1.0.13-1 release]
624
625         * NEWS:
626         * configure.ac:
627         * debian/changelog: Updating.
628
629 2007-08-16  Xan Lopez  <xan.lopez@nokia.com>
630
631         * src/hildon-banner.c: (hildon_banner_client_event): connect directly to
632         the client event and ignore it, since we use the delete event to close
633         after timeouts.
634
635 2007-08-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
636
637         * src/hildon-helper.c: Remove the bogus warning about color not being
638         found. Fixes NB#58352.
639
640 2007-08-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
641
642         * examples/Makefile.am:
643         * examples/hildon-toolbar-seekbar-example.c: Adding an example to test a
644         HildonSeekbar widget inside a toolbar.
645
646 2007-08-16  Xan Lopez  <xan.lopez@nokia.com>
647
648         * src/hildon-banner.c (hildon_banner_init): mark the banners as
649         temporary, depends on maemo-gtk >= 2.10.12-osso7. Also ignore the
650         delete event that will come from _GTK_DELETE_TEMPORARIES, as we
651         don't want to be closed by non-temporary windows on map.
652
653         Also use G_DEFINE_TYPE instead of manually typed code.
654
655 2007-08-06  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
656
657         [1.0.12-1 release]
658
659         * NEWS:
660         * configure.ac:
661         * debian/changelog:
662         * debian/rules: Updating.
663
664 2007-08-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
665
666         * examples/Makefile.am:
667         * examples/hildon-hvolumebar-timer-example.c: Adding an exmaple to debug
668         bug NB#61128. Strangely it works.
669
670 2007-08-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
671
672         * src/hildon-date-editor.c: When the date editor entry has been changed
673         but the numbers of characters < max, turn off the skip validation flag.
674         Prevents a situation when we enter first a valid year and later re-write
675         it with an invalid one. Fixes NB#60154.
676
677 2007-07-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
678
679         * src/hildon-code-dialog.c: Fixing the dialog button alignment inside the
680         code dialog. Fixes NB#64355.
681
682 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
683
684         * src/hildon-wizard-dialog.c: Don't call the _set_sensitivity again after
685         switching the page. Fixes NB#49374.
686
687         * examples/Makefile.am:
688         * examples/hildon-wizard-dialog-example.c: Adding an example for
689         HildonWizardDialog that shows how to handle manual sensitivity setting on
690         the wizard dialog.
691
692 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
693
694         * configure.ac:
695         * src/Makefile.am:
696         * src/hildon-version.h.in:
697         * src/hildon.h: Adding the HILDON_CHECK_VERSION macro. Fixes: NB#62061.
698
699 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
700
701         * src/hildon-volumebar.c: Updating the docs.
702
703 2007-07-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
704
705         [1.0.11-1 release]
706
707         * NEWS:
708         * configure.ac:
709         * debian/changelog: Updating.
710
711 2007-07-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
712
713         * src/hildon-find-toolbar.c:
714         * src/hildon-find-toolbar.h: Adding a few new functions to control the
715         selected item: hildon_find_toolbar_set_active,
716         hildon_find_toolbar_set_active_iter, hildon_find_toolbar_get_active, 
717         hildon_find_toolbar_get_active_iter . They correspond to respective
718         GtkComboBox functions. 
719
720         * examples/Makefile.am:
721         * examples/hildon-find-toolbar-example.c: Adding the example to test the
722         new functionality.
723
724 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
725
726         * examples/Makefile.am:
727         * examples/hildon-seekbar-example.c: Adding the seekbar example to check
728         theming easily.
729
730         * src/hildon-font-selection-dialog.c: Fixing the default focus for dialog
731         when font size > 32 and we pack a focusable widget inside. Actually using
732         the default response would work too, but since we don't show default
733         response state in any way (no theming) it would not be visible to the
734         user. Fixes NB#63430.
735
736 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
737
738         * src/hildon-date-editor.c: Adding the missing variable setter in the
739         set_property handler. Fixes NB#54182.
740
741 2007-07-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
742
743         * src/hildon-window.h: Changing the long key press time from 1500ms to
744         800ms as requested in NB#63700. I have a bad feeling about this, let's
745         see... Fixes NB#63700.
746
747 2007-07-12  Tommi Komulainen  <tommi.komulainen@nokia.com>
748
749         * src/hildon-time-picker.c (hildon_time_picker_class_init,
750         hildon_time_picker_map, hildon_time_picker_realize,
751         hildon_time_picker_style_set): Split the contents of map to more
752         appropriate functions; set window decorations on realize and update
753         arrows' size requisitions on style-set. Avoids unnecessary resizing.
754
755 2007-07-02  Xan Lopez <xan.lopez@nokia.com>
756
757         [1.0.10-2 release]
758
759         * NEWS:
760         * debian/changelog: Updating.
761
762 2007-07-02  Johan Bilien  <johan.bilien@nokia.com>
763
764         * src/Makefile.am: fixed installation of the header files
765
766 2007-06-29  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
767
768         [1.0.10-1 release]
769
770         * NEWS:
771         * configure.ac:
772         * debian/changelog: Updating.
773
774 2007-06-27  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
775
776         * configure.ac: Removing some remaining of --enable-xan.
777
778 2007-06-26  Xan Lopez  <xan.lopez@nokia.com>
779
780         * src/hildon-date-editor.c: (hildon_date_editor_keypress):
781         * src/hildon-time-editor.c: (hildon_time_editor_entry_keypress):
782
783         Move all focus crazyness to the rc files. This depends on gtk+2.0 >=
784         2.10.12-osso6 because the move-focus signal needs to be available in
785         GtkWidget.
786
787 2007-06-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
788
789         * examples/Makefile.am:
790         * examples/hildon-hvolumebar-insensitive-map-example.c: Adding an example
791         that makes a HildonVolumebar insensitive before mapping it. Seems to work
792         fine. Prolly NB#61128 is fixed now.
793
794 2007-06-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
795
796         * src/hildon-volumebar.c:
797         * src/hildon-volumebar.h: Adding the
798         hildon_volumebar_set_range_insensitive_message and
799         hildon_volumebar_set_range_insensitive_messagef functions to set
800         insensitive message on the slider of the volumebar. Fixes NB#61129.
801
802         * examples/Makefile.am:
803         * examples/hildon-hvolumebar-insensitive-example.c: Adding an example to
804         test the new insensitive messsage functionality on HildonVolumebar.
805
806 2007-06-14  Xan Lopez  <xan.lopez@nokia.com>
807
808         * src/hildon-private.c (hildon_private_composite_focus): make the focus handler
809         work again.
810
811 2007-06-13  Xan Lopez  <xan.lopez@nokia.com>
812
813         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_clear): workaround
814         http://bugzilla.gnome.org/show_bug.cgi?id=56070 hiding and showing the back
815         button on after clearing the trail.
816
817 2007-06-13  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
818
819         * src/hildon-code-dialog.c: Removing the separator from the dialog.
820
821 2007-06-12  Xan Lopez  <xan.lopez@nokia.com>
822
823         * src/Makefile.am: remove circular dependency in hildon-enum-types.h creation
824         by splitting the installed headers in generated and non-generated groups. Use
825         only the non-generated headers to create the hildon-enum-types.h file.
826
827         * src/hildon-seekbar.h: gtkscale.h already includes gtkrange.h.
828
829 2007-06-12  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
830
831         * src/hildon-window.c: Hide the window before performing the destroy.
832         Should make the app closing a little tiny bit more snappy. 
833
834 2007-06-12  Xan Lopez  <xan.lopez@nokia.com>
835
836         * src/hildon-seekbar.c: add gtkrange.h header
837         * src/hildon-caption.c: remove unused variable
838
839 2007-06-08  Tommi Komulainen  <tommi.komulainen@nokia.com>
840
841         * configure.ac: Remove dysfunctional AC_ARG_ENABLE. Pointed out by
842         Loic Minier.
843
844 2007-06-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
845
846         [1.0.9-1 release]
847
848         * NEWS:
849         * configure.ac:
850         * debian/changelog: Updating.
851
852 2007-06-07  Tommi Komulainen  <tommi.komulainen@nokia.com>
853
854         * src/hildon-window.c (hildon_window_window_state_event,
855         hildon_window_is_topmost_notify, hildon_window_class_init): Stop the
856         escape timeout on focus-out-event rather than notify::is-topmost; the
857         latter doesn't get called when menus pop up. Fixes: NB#52946, MB#1101
858
859 2007-06-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
860
861         * src/hildon-window.c: Adding a patch from Tommi Komulainen to pass the
862         correct timestamp and button to gtk_menu_popup. Fixes MB#1466. 
863
864 2007-06-07  Xan Lopez  <xan.lopez@nokia.com>
865
866         * src/hildon-window: actually, you need to use the macro always, there's
867         no private pointer in the instance structure. We should have cleaned this up
868         when we had the chance...
869         
870 2007-06-07  Xan Lopez  <xan.lopez@nokia.com>
871
872         * src/hildon-window.c: do not get the private date from HildonWindow before
873         it passes the g_return_if_fail check. Once it's passed the test, there's no
874         need to g_assert that it exists. Do not create a HildonWindowPrivate variable
875         if you are only going to access the data once. Whitespace cleanups.
876
877 2007-06-04  Xan Lopez  <xan.lopez@nokia.com>
878
879         * src/hildon-bread-crumb-trail.c: set children visible before allocation.
880         * src/hildon-bread-crumb-widget.c: set xalign to 0.0 for labels.
881
882 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
883
884         [1.0.8-1 release]
885
886         * NEWS:
887         * configure.ac:
888         * debian/changelog: Updating.
889
890 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
891
892         * src/hildon-window.c: When destroying the window, remove (if exists) the
893         escape timeout handler. Fixes #NB59276.
894
895 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
896
897         * src/hildon-banner.c: When realizing the widget, set the window
898         transiency. Setting the transiency in the gobject constructor is not
899         good, as the widget is not realized at that point. Fixes: #NB56624.
900
901 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
902
903         * src/hildon-bread-crumb-trail.h (struct _HildonBreadCrumbTrailClass):
904         Add padding for future expansions.
905
906 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
907
908         * src/hildon-bread-crumb-trail.c (hildon_bread_crumb_trail_class_init):
909         Add a new signal "move-parent", bind Escape and BackSpace to it. The handler
910         will fake an activation on the previous to the last item of the trail, so
911         the effect can be overrided by the developer as usual.
912         Also change the callback for the back button to do the same thing, so its
913         effect can be overrided too. Fixes: NB#58982
914
915 2007-05-30  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
916
917         * src/hildon-caption.c: Implementing the proper focus grabbing in the
918         HildonCaption. Fixes NB#52379. 
919
920 2007-05-30  Xan Lopez  <xan.lopez@nokia.com>
921
922         * src/hildon-bread-crumb-trail.c (crumb_activated_cb): be very paranoid about
923         the internal state of the trail after the user has had the chance of executing
924         his handler for the signal. Specifically, it may happen that the activated button
925         is removed and the user still lets the default handler run. This would segfault
926         previously.
927
928 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
929
930         * src/hildon-font-selection-dialog.c: When the font is really big, add the
931         scrollbar to the preview dialog. Fixes NB#54147.
932
933 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
934
935         * src/hildon-date-editor.c: Changing the default max year to 2037. The
936         max/min year properties can be altered, so the client can modify it
937         anyways. 1970 - 2037 sounds like a sane default. Fixes NB#54147.
938
939 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
940
941         * src/hildon-calendar.c: Removing the unused 'hildonlike' property, making
942         hildonlike by default. Fixing a problem with disappearing arrows when
943         scrolling through months and years. Fixes NB#54127. 
944
945 2007-05-28  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
946
947         * examples/hildon-date-editor-example.c: Adding error callback to the date
948         editor example. 
949
950 2007-05-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
951
952         [1.0.7-1 release]
953
954         * NEWS:
955         * debian/changelog:
956         * configure.ac: Updating.
957
958 2007-05-24  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
959
960         * configure.ac: Adding a special '--enable-xan' configure option that
961         turns off the -Werror compilation setting. Usefull for development.
962
963         * src/hildon-calendar.c:
964         * src/hildon-number-editor.c:
965         * src/hildon-time-picker.c: Adding the 5* multiplier to
966         gtk-timeout-update.
967
968 2007-05-24  Xan Lopez  <xan.lopez@nokia.com>
969
970         * src/hildon-note.c (hildon_note_init): Use g_object_ref_sink
971         instead of g_object_ref + gtk_object_sink.
972
973 2007-05-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
974
975         [1.0.6-1 release]
976
977         * NEWS:
978         * configure.ac:
979         * debian/changelog: Updating.
980
981 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
982
983         * src/hildon-color-chooser-dialog.c:
984         * src/hildon-color-chooser.c: A few more GdkColor struct allocation fixes
985         straight from Tommi labs.
986
987 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
988
989         * examples/hildon-finger-example.c: Correcting the header file path.
990
991         * src/hildon-color-chooser-dialog.c: Allocate the color on the stack for 
992         the changed signal. Fixes a small memory leak.
993
994 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
995
996         * autogen.sh:
997         * debian/rules:
998         * src/hildon-banner.c: Importing several usefull fixes from the
999         ubuntu-mobile branch.
1000
1001 2007-05-21  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1002
1003         * examples/Makefile.am:
1004         * examples/hildon-finger-example.c: Adding a finger-checking code
1005         example. 
1006
1007         * src/hildon-font-selection-dialog.c: Do not allocate the color
1008         structure using the g_new. Fixes NB#54061.
1009
1010 2007-05-09  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1011
1012         * src/hildon-helper.c: Correcting tabs in file.
1013
1014 2007-05-08  Xan Lopez  <xan.lopez@nokia.com>
1015
1016         * src/hildon-bread-crumb-trail.c: Use set_child_visible only to
1017         control the visibility of the children.
1018
1019         * examples/hildon-bread-crumb-trail-example.c: Plug leak.
1020
1021 2007-05-07  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1022
1023         [1.0.5-1 release]
1024
1025         * NEWS:
1026         * configure.ac:
1027         * debian/changelog: Updating.
1028
1029 2007-05-04  Xan Lopez  <xan.lopez@nokia.com>
1030
1031         * src/hildon-bread-crumb-trail.c:
1032         (hildon_bread_crumb_trail_size_allocate): 
1033
1034         Make the back button always a square.
1035
1036 2007-05-04  Xan Lopez  <xan.lopez@nokia.com>
1037
1038         * src/hildon-bread-crumb-trail.h: Include hildon-bread-crumb-widget.h
1039         from the .c file as it's a private file. 
1040
1041 2007-05-03  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1042
1043         * examples/hildon-vvolumebar-example.c: The VVolumebar example now
1044         uses slightly bigger height.
1045
1046         * src/hildon-font-selection-dialog.c: Adding some checks before
1047         freeing memory in the font selection dialog.
1048
1049 2007-05-02  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1050
1051         * src/hildon-font-selection-dialog.c: Adding a small check when
1052         freeing memory. 
1053
1054         * src/hildon-wizard-dialog.c: Applying a patch by Iain Holmes to fix
1055         buttons sensitivity on page switching.
1056
1057 2007-04-27  Xan Lopez  <xan.lopez@nokia.com>
1058
1059         * src/hildon-bread-crumb-trail.c: make the add method handle all the
1060         internal details of adding a bread crumb to the trail.
1061
1062 2007-04-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1063
1064         [1.0.4-1 release]
1065
1066         * README:
1067         * configure.ac:
1068         * debian/changelog: Updating.
1069
1070         * src/hildon-bread-crumb-trail.h:
1071         * src/hildon-bread-crumb.h: Changing the API guard to
1072         HILDON_ENABLE_UNSTABLE_API.
1073
1074 2007-04-26  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1075
1076         [1.0.3-1 release]
1077
1078         * NEWS:
1079         * configure.ac:
1080         * debian/changelog:
1081         * debian/rules:
1082         * src/hildon-helper.h: Updating.
1083
1084 2007-04-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1085
1086         [1.0.2-1 release]
1087
1088         * NEWS:
1089         * configure.ac:
1090         * debian/changelog:
1091
1092 2007-04-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1093
1094         * README:
1095         * configure.ac:
1096         * src/hildon-helper.h: Small fix to make the package actually compile.
1097
1098 2007-04-25  Xan Lopez  <xan.lopez@nokia.com>
1099
1100         * src/hildon-bread-crumb-trail.h:
1101         * src/hildon-bread-crumb.h:
1102
1103         Guard with ENABLE_UNSTABLE_API. To use the bread crumb you'll need
1104         to define ENABLE_UNSTABLE_API in the code that includes these headers.
1105         
1106 2007-04-25  Xan Lopez  <xan.lopez@nokia.com>
1107         
1108         * examples/hildon-bread-crumb-trail-example.c:
1109         * src/Makefile.am:
1110         * src/hildon-bread-crumb-trail.c:
1111         * src/hildon-bread-crumb-trail.h:
1112         * src/hildon-bread-crumb.c:
1113         * src/hildon-bread-crumb.h:
1114         * src/hildon-marshalers.list:
1115         * src/hildon-bread-crumb-widget.c:
1116         * src/hildon-bread-crumb-widget.h:
1117
1118         Slight change in the widget design. The bread crumb trail API is
1119         unchanged, but HildonBreadCrumb is now an interface. A *private*
1120         implementation, hildon-bread-crumb-widget, is provided and used
1121         internally by the trail for the push_text/push_icon functions.
1122
1123         The generic push API is still available, so anyone can implement
1124         and use its own bread crumb widget.
1125         
1126 2007-04-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1127
1128         * debian/rules: Fixing the shlibs.
1129
1130 2007-04-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1131
1132         * src/hildon-banner.c: Fixing a problem with timed banners having
1133         their parrent destroyed before they are.
1134
1135 2007-04-17  Xan Lopez  <xan.lopez@nokia.com>
1136
1137         * src/hildon-bread-crumb.c:
1138         * src/hildon-bread-crumb.h:
1139
1140         Make the get_natural_size function a vfunc.
1141
1142 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
1143
1144         * src/hildon-bread-crumb.c:
1145         * src/hildon-bread-crumb-trail.c:
1146
1147         Some cleanups.
1148
1149 2007-04-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1150
1151         [1.0.1-1 release]
1152
1153         * AUTHORS:
1154         * NEWS:
1155         * configure.ac:
1156         * debian/changelog: Updating for release.
1157
1158 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
1159
1160         * src/hildon-bread-crumb.c (hildon_bread_crumb_get_natural_size):
1161         don't leak the pango layout.
1162
1163 2007-04-16  Xan Lopez  <xan.lopez@nokia.com>
1164
1165         * src/hildon.h:
1166         * examples/hildon-bread-crumb-trail-example.c:
1167
1168         Fix example.
1169
1170 2007-04-16  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1171
1172         * debian/changelog: Removing the bug-fixed entries that were actually
1173         resolved as WONTFIX.
1174
1175         * src/hildon-date-editor.c: Removing a redundant check. Fixes
1176         NB#54182.
1177
1178 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
1179
1180         * src/hildon-bread-crumb-trail.c:
1181         * src/hildon-bread-crumb-trail.h:
1182         * src/hildon-bread-crumb.c:
1183         * src/hildon-bread-crumb.h:
1184
1185         Untabify.
1186         
1187 2007-04-13  Xan Lopez  <xan.lopez@nokia.com>
1188
1189         * src/hildon-bread-crumb-trail.c: don't use the priv data of bct
1190         until it's passed the type check.
1191
1192 2007-04-12  Xan Lopez  <xan.lopez@nokia.com>
1193
1194         * examples/hildon-bread-crumb-trail-example.c
1195
1196         Add license.
1197         
1198 2007-04-12  Xan Lopez  <xan.lopez@nokia.com>
1199
1200         * examples/Makefile.am
1201         * examples/hildon-bread-crumb-trail-example.c
1202         * src/Makefile.am
1203         * src/hildon-bread-crumb-trail.c
1204         * src/hildon-bread-crumb-trail.h
1205         * src/hildon-bread-crumb.c
1206         * src/hildon-bread-crumb.h
1207
1208         New HildonBreadCrumbTrail widget.
1209
1210 2007-04-02  Lucas Rocha  <lucas.rocha@nokia.com>
1211
1212         * src/hildon-range-editor.c (hildon_range_editor_init),
1213         src/hildon-seekbar.c (hildon_seekbar_get_fraction,
1214         hildon_seekbar_set_fraction, hildon_seekbar_set_position),
1215         src/hildon-time-editor.c (hildon_time_editor_tap_and_hold_setup,
1216         hildon_time_editor_class_init, hildon_time_editor_init),
1217         src/hildon-get-password-dialog.c (invalid_input,
1218         hildon_get_password_set_property, hildon_get_password_get_property,
1219         create_contents, hildon_get_password_dialog_set_max_characters),
1220         src/hildon-set-password-dialog.c (create_contents),
1221         src/hildon-date-editor.c (hildon_date_editor_init),
1222         src/hildon-login-dialog.c (hildon_login_dialog_init),
1223         src/hildon-number-editor.c (hildon_number_editor_init),
1224         src/hildon-find-toolbar.c (hildon_find_toolbar_emit_invalid_input,
1225         hildon_find_toolbar_emit_close, hildon_find_toolbar_init): made all
1226         the Maemo GTK+ specific API optional by adding a --with-maemo-gtk
1227          configure option and adding the respective checks in the code.
1228         * src/hildon-calendar.c (hildon_calendar_paint_week_numbers,
1229         hildon_calendar_drag_data_received): fixed some build warnings.
1230
1231 2007-03-29  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
1232
1233         * debian/changelog: A 1.0.0 release notes.
1234