1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
|
hildon-libs (0.9.35-1) unstable; urgency=low
* po/Makefile.am:
* - Fixed the 'make merge'
* POTFILES.in:
* - Added missing and removed nonexisting files, corrected path
* po/README:
* - Updated the description how to properly merge the translations
* Fixed #13744 (again): Tapping time editor's am/pm field changes time
to "xx:54"
* Fixed #13897: Time editor does not display the AM/PM indicator
correctly always
* hildon-time-editor.c:
* - Fixed broken-ness in validation logic, if the validation had been
done already, the values inserted were ignored (oops)
* Fixed #14100: hildon-number-editor: truncation of number at left of
entry box.
* - Modified: hildon-number-editor.c
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 27 Jun 2005 15:51:38 +0300
hildon-libs (0.9.34-1) unstable; urgency=low
* Implementation fixed for bug #14392: Duration Editor specification
prevents user from inputting values freely
* hildon-time-editor.c:
* - Change duration validation to validate by whole time (in seconds)
instead of by individual values. Removed the resulted unused and
obsolete function.
-- Luc Pionchon <luc.pionchon@nokia.com> Fri, 17 Jun 2005 10:49:40 +0300
hildon-libs (0.9.33-1) unstable; urgency=low
* code clean up
* Fixed 13744, 13897, 13827, 12549, at least
* - Time editor rewrite
* get-password-dialog.c:
* - added option max characters reached.
* - fixed minor bugs.
* - Application options for setting strings
* get-password-dialog.h:
* - necessary changes for supporting the above.
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 16 Jun 2005 19:54:59 +0300
hildon-libs (0.9.32-1) unstable; urgency=low
* Fixed #13990: HildonNote: There's no Cancel note w/o a progress bar
anymore
* hildon-note.c:
* - removed automatic progressbar creation if cancel note has NULL
progressbar
-- Luc Pionchon <luc.pionchon@nokia.com> Tue, 14 Jun 2005 12:32:17 +0300
hildon-libs (0.9.31-1) unstable; urgency=low
* Fixed #13831: Wizard widget: Pixel perfecting
* hildon-wizard-dialog.c:
* - fixed icon name and placement, removed frame and separator
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 13 Jun 2005 17:00:25 +0300
hildon-libs (0.9.30-1) unstable; urgency=low
* hildon-scroll-area.c:
* code cleanup.
* Fixed #13827: Time editor: pixel perfecting
* Fixed #13828: Time picker: pixel perfecting
* hildon-date-editor.c,hildon-time-editor.c:
* - Don't use xthickness and ythickness here, as the border is drawn
by the frame which already handles them
* - Correct spacing between 'entry' and button
* hildon-time-picker.c:
* - Specs-compliant spacing, sizing, etc
* Fixed #13992 - some old code present in hildon_wizard widget
* hildon-wizard-dialog.c:
* Stock icon usage changed to icon theme usage
* Fixed #13897: Time editor does not display the AM/PM indicator
correctly always
* hildon-time-editor.c:
* - Commented out unneccesary, duplicate and invalid higlighting from
hildon_time_editor_entry_clicked (shall be removed when the code is
cleaned up properly)
-- Luc Pionchon <luc.pionchon@nokia.com> Fri, 10 Jun 2005 10:53:29 +0300
hildon-libs (0.9.29-1) unstable; urgency=low
* hildontimeeditor.c:
* - De-crackify size allocation
* - Set frame border width to 0
* hildon-date-editor.c:
* - Set frame border width to 0
* Fixed #13534: TimePicker text misaligned
* hildon-time-editor.c:
* - Play with ythickness correctly
* Fixed #13213: time values retrieval from HildonTimeEditor is
incorrect
* hildon-time-editor.c:
* - Update ticks after invalid value correction
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 6 Jun 2005 11:53:06 +0300
hildon-libs (0.9.28-1) unstable; urgency=low
* hildon-composite-widget.c:
* - Added more checking to fix gtk-warning
* Fixed #11129: some strings are not localizable
* hildon-calendar-popup.c:
* - removed erroneous-date signal handling as deprecated and the
associated infoprint as non-supported
* hildon-grid.c:
* - default "no items" label is now an empty string
* hildon-time-editor.c:
* - separator now uses logical name
* hildon-time-picker.c:
* - separator now uses logical name
* en_GB.po:
* - added new logical strings in hildon-time-editor and hildon-time-
picker
* Fixed #9869: Search Field: Isn't this HildonSearch?
* hildon-libs-docs-xml,hildon-libs-section.txt,hildon-libs.types:
* - removed HildonSearch, HildonFindObjectDialog and
HildonFindReplaceDialog
-- Luc Pionchon <luc.pionchon@nokia.com> Fri, 27 May 2005 11:04:27 +0300
hildon-libs (0.9.27-1) unstable; urgency=low
* hildon-time-editor.c:
* - Removed leftover test that wasn't catched at build time
* Fixed #7298: Preview of font properties Superscript and Subscript
are not shown
* Fixed #8493: Notable to select Italic in Font Dialog
* Fixed #10259: HildonFontSelectionDialog - Inital focus mismatch
* Fixed #11371: AF-BAT: HildonFontDialog field separators displayed as
::
* Fixed #8400: Font selection dialog not showing the already applied
attribute to text
* API changes:
* - deprecated the following functions:
* - hildon_font_selection_dialog_set_buffer
* - hildon_font_selection_dialog_get_text_tag
* hildon-font-selection-dialog.[ch]:
* - old api doesnt work at all, redesign to have property approach
* - remove things like two overlapping property enumeration, unused
private member, over-larged private structure, unecessary self
written loop(which can be replaced by g_list_foreach), and much
more.
* - try to make the code flow clear and readable, more comment added
* - make things actually work, this includes: intermedia(inconsistent)
state of widget general state setting of the widget et.
* po/en_GB.po:
* - remove ":"
* Fixed #12675: HildonSearch container implementation bug (Gazpacho
integration)
* hildon-widgets/Makefile.am:
* - removed references to removed widgets
* Removed:
* - hildon-find-object-dialog.c, hildon-find-object-dialog.h, hildon-
find-replace-dialog.c, hildon-find-replace-dialog.h, hildon-
search.c, hildon-search.h
* ut/hildon-widgets_tests.c:
* - removed unit tests for removed widgets
* Fixed #12252: AF-BAT: HildonTimeEditor: Time picker flashes when
"Select" key is pressed
* hildon-time-picker.c:
* - moved handling of Select and Escape keys from key-release event to
key-press event
* Fixed #12785 - NOKGTK-35 HildonNote gazpacho integration
* hildon-note.c:
* - Removed G_PARAM_CONSTRUCT_ONLY from all properties
* - code needed to change properties at any time
* - fixed a potential crash in finalize()
* - makes the property blurbs somewhat more verbose
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 26 May 2005 16:00:59 +0300
hildon-libs (0.9.26-1) unstable; urgency=low
* hildon-find-replace-dialog.c,hildon-file-handling-note.{h,c},hildon-
sort-dialog.c,hildon-get-password-dialog.c,hildon-name-password-
dialog.c,hildon-set-password-dialog.c:
* - Fixed compilation problems if HILDON_DISABLE_DEPRECATED is
defined
* hildon-time-editor.c:
* - Change the max time value to be 23.59.59 instead of 24.59.59
* Fixed #12674: NOKGTK-36 HildonSeekbar gazpacho integration
* hildon-seekbar.c:
* - When changing the properties "total_time" and "position", the
widget needs to be updated, instead of just setting the new value.
* Fixed #12176: it_IT Control Panel Date Time: Calendar view in
English
* hildon-calendar.c:
* - sets week_start property of GtkCalendar if week_start string is
localized
* Fixed #9624: Incorrect values in <Filetype> Details Dialog
* en_GB.po:
* - changed File details -> Details (once again...)
* Fixed #12276: AF-BAT: HildonVolumebar: When the mute button is
hidden, on pressing "select" h/w key, the volumebar is dimmed.
* hildon-volumebar.c:
* - select hardkey doesn't toggle mute button anymore if it is not
visible
-- Luc Pionchon <luc.pionchon@nokia.com> Tue, 24 May 2005 19:15:27 +0300
hildon-libs (0.9.25-1) unstable; urgency=low
* Fixed #9690: Derived classes shouldn't connect to own signals
* Fixed #12229: hildon libs not ready for publishing
* - Applied Nokia patch from #12229 (Correct copyright/license
statements)
* Fixed #4289 (partly): Design doc has information that should be in
the developer documentation
* Modified: hildon-scroll-area.c,hildon-grid-item.sgml,hildon-
grid.sgml,hildon-scroll-area.sgml
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 23 May 2005 17:14:17 +0300
hildon-libs (0.9.24-1) unstable; urgency=low
* hildon-time-editor.c:
* - fixed size allocation for widget's frame.
* hildon-scroll-area.sgml:
* - Added some missing documentation
* hildon-file-details-dialog.c:
* - Added missing NULL check
* Fixed #12128 - HildonControlbar: minimum_visible_bars does not work
properly
* controlbar.c:
* - handle minimum_visible_bars property correctly
* - fix widget sensitivity issues
* - use internal structures instead of public functions in private API
* Fixed #10129 (again): Af-BAT: HildonPasswordDialog fields have "::"
as separators
* hildon-get-password-dialog.c,hildon-name-password-dialog.c,hildon-
set-password-dialog.c:
* - caption separators set to ":"
* Fixed #4061 - HildonDateEditor: date fields not properly localized
* hildon-date-editor.c:
* - date separator is now a localizable string instead of being parsed
from nl_langinfo output (which was kludgy and risky)
* en_GB.po:
* - added missing date editor strings (separator + "Date does not
exist" that seemed to be missing although logical name was used in
the code)
* Fixed #12251: Range editor separator displayed in logical string.
* hildon-controlbar.c,hildon-range-editor.c,hildon-weekday-picker.c:
* - Changed to use dgettext insted of gettext.
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 23 May 2005 10:59:39 +0300
hildon-libs (0.9.23-1) unstable; urgency=low
* Fixed #9350: Hildon-libs-test is an empty package
* Fixed #9191 - Lot of Critical GTK Warnings are thrown
* hildon-file-details-dialog.c:
* - Fixed unref warnings by adding checks in all instances of
g_object_unref()
* Fixed #11383: Text in the notification displayed when a search item
is deleted shows logical string
* en_GB.po:
* - restored several logical strings that were removed in rev. 1.11
for reasons unknown is deleted shows logical string
-- Luc Pionchon <luc.pionchon@nokia.com> Wed, 18 May 2005 11:07:50 +0300
hildon-libs (0.9.22-1) unstable; urgency=low
* Fixed #11265: PDF Reader - Wrong information banner on entering
invalid page number in the switch to page dialog box
* - added signal range_error and its handler to hildon number editor
* hildon-grid.c:
* - removed marshaler code
* hildon-number-editor.h:
* - make error enumeration public
* - add function pointer for the signal handler
* hildon-number-editor.c:
* - add signal "range_error"
* - implemented default handler
* hildon-marshalers.list:
* - list for our customized marshalers
* hildon-widgets/Makefile.am:
* - make target for marshalers
* Fixed #10755: Control panel grid has layout problems
* API changes:
* - Bunch of changes in hildon-grid-item-private.h
* hildon-grid.c:
* - New purpose for style-properties
* - Allocation-fixes
* - Restructured the thing
* - Use new private API
* hildon-grid-item.c:
* - New allocate to match changes in hildon-grid
* - New private API
* hildon-grid-item-private.h:
* - New private API
* Fixed #11941: HildonFileDetailsDialog: there's a frame around the
additional tab widget
* hildon-file-details-dialog.c:
* - removed shadow of the viewport contained in additional tab
* Fixed #11968: Memory Leak in Hildon Range Editor API
* hildon-range-editor.c:
* - remove unnecessary strdups
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 16 May 2005 15:21:24 +0300
hildon-libs (0.9.21-1) unstable; urgency=low
* Fixed #11372: AF-BAT: HildonFontSelectionDialog: Font Size field
displayed in logical strings
* Fixed #11373: AF-BAT: HildonFontSelectionDialog: The field name
'Colour' displayed as 'Color'
* Fixed #11096: Hildon number editor size request is calculated
incorrectly
* Fixed #10251: HildonTimePicker - left right keys not working at the
extreme end fields of the timepicker
* en_GB.po: Logical string corrections
* hildon-number-editor.c: Sanitize size requisition function
* hildon-time-picker.c: Fixed up/down/left/right keys + a few cleanups
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 12 May 2005 15:53:56 +0300
hildon-libs (0.9.20-1) unstable; urgency=low
* Fixed #11129: Some strings are not localizable
* hildon-date-editor.c:
* - plain English infoprints changed to localizable logical names
* hildon-file-handling-note.c:
* - plain English strings changed to logical names
* hildon-note.c:
* - default title set to empty string since not supported by spec (and
not visible anyway)
* hildon-range-editor.c:
* - separator now uses logical name
* - typofix: hildon_range_editor_new_with_separator was setting
"separtor" property, which only produces an error message and sets
nothing
* hildon-time-editor.c:
* - plain English strings changed to logical names
* en_GB.po:
* - updates related to the above
* Fixed #11501: Re-added the translation for the modify-button
* Fixed #9880 - wrong infobanner shown in HildonTimeEditor
* hildon-time-editor.c:
* - Changed the infoprints to be clever in duration mode. They now
check the other field to determine values for the infoprint
* - Fixed few comparison bugs and entry<->internal value inconsistency
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 12 May 2005 13:41:47 +0300
hildon-libs (0.9.19-1) unstable; urgency=low
* Fixed #11128: BM - Sorting - double colons
* hildon-sort-dialog.c:
* - both caption separators set to empty string
-- Luc Pionchon <luc.pionchon@nokia.com> Tue, 10 May 2005 10:17:06 +0300
hildon-libs (0.9.18-1) unstable; urgency=low
* Fixed #10221: Preview in font selection dialog ellipzises text
invalidly after font size reduction
* hildon-font-selection-dialog.c:
* - Lot's of code reordering to make preview dialog destroyable
* - widget can be controlled with keyboard
-- Luc Pionchon <luc.pionchon@nokia.com> Wed, 4 May 2005 15:49:47 +0300
hildon-libs (0.9.17-1) unstable; urgency=low
* Fixed #10249 - HildonTimePicker - ESC key is not closing the
timepicker
* hildon-time-picker.c:
* - Set Escape and Return keys to emit the "response" signal in
hildon_time_picker_event_box_key_release()
-- Luc Pionchon <luc.pionchon@nokia.com> Tue, 3 May 2005 17:14:43 +0300
hildon-libs (0.9.16-1) unstable; urgency=low
* Fixed #9919: HildonGrid - weird behaviour when switching between
views
* Fixed #10253: HildonTimeEditor - Infoprint mismatch on deletion of a
number in a field
* hildon-grid.c:
* - scroll view to show something (in size_request)
* hildon-grid-item.c:
* - change default icon to something that exists
* en_GB.po:
* - changed the string in question
* hildon-volumebar.c,hildon-volumebar-range.c
* - Added properties
* hildon-volumebar.c:
* - Added lost gtk_toggle_button_set_active call
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 2 May 2005 14:38:31 +0300
hildon-libs (0.9.15-1) unstable; urgency=low
* Fixed #8759 (Content area missing in username/password dialog)
* Fixed #10256 (HildonSortDialog - UI string mismatch)
* Fixed #10221 (Preview in font selection dialog ellipzises text
invalidly after font size reduction)
* Fixed #3092 (Horizontal scroll bar shown unnecessarily when using
multiline textview)
* Updated .po files from SDL were integrated
* hildon-note.[c|h]: Added requested properties and gtype to Note.
* hildon-get-password-dialog.h: Updated logical strings.
* hildon-get-password-dialog.c: Largely rewritten. Added a function.
* hildon-set-password-dialog.h: Logical strings were updated. Added a
function.
* hildon-set-password-dialog.c: Added a function.
* hildon-name-password-dialog.h: Updated logical strings. Added a
function.
* hildon-name-password-dialog.c: Added a function.
* hildon-note.h: added a function to set note dialog's button labels,
both of them.
* hildon-note.c: added a function to set note dialog's button labels,
both of them. Added requested properties and gtype to Note
* hildon-font-selection-dialog.c: Reorder code, so window is resized
correctly
* hildon-scroll-area.c: Scrollarea no longer displays horizontal
scroll bar when not needed. Some other cleanup.
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 28 Apr 2005 15:08:25 +0300
hildon-libs (0.9.14-1) unstable; urgency=low
* Fixed #9694: Deprecated APIs should be marked with
HILDON_DISABLE_DEPRECATED
* hildon-file-details-dialog.[ch],hildon-widgets_tests.c,hildon-font-
selection-dialog.c:
* - Added HILDON_DISABLE_DEPRECATED ifdefs
* hildon-range-editor.[ch]:
* - Added properties; lower, higher, min, max, separator
* hildon-controlbar.c:
* - Added properties; min, max, value
-- Luc Pionchon <luc.pionchon@nokia.com> Wed, 27 Apr 2005 13:36:40 +0300
hildon-libs (0.9.13-1) unstable; urgency=low
* Fixed #6840: gtk_dialog_help_enable () is broken
* Fixed #10123: Font Dialog - Contents of 'size' choice list is not as
per widget specification
* Fixed #10132 AF-BAT: HildonUserName and Password Dialog title
incorrect.
* Fixed #10133 AF-BAT: HildonSetPasswordDialog second field displayed
incorrectly.
* Fixed #10136 AF-BAT: File handling Notes display logical strings.
* Fixed #4061: HildonDateEditor: date fields not properly localized
* Fixed #10257: HildonRangeEditor - accepting alphabets also from VKB
* Fixed #10129: HildonPasswordDialog fields have "::" as separators
* Fixed #9624: Incorrect values in <Filetype> Details Dialog
* hildon-dialoghelp.c: changed the help signal type to GTK_TYPE_DIALOG
* en_GB.po: added translation for trailing text
* en_GB.po:
* - added translation for trailing text
* - added localizations for logical names in hildon-file-handling-
note.c
* - fixed incorrect strings for hildon-name-password-dialog.c and
hildon-set-password-dialog.c
* hildon-date-editor.c:
* - removed the hard coded "/" delimeter characters
* - added localized delimiters
* hildon-date-editor.[ch]:
* - Added year, month, day properties
* hildon-range-editor.c:
* - set the entries to use the numeric input-mode
* hildon-time-editor.[ch]:
* - added following public functions:
* -- hildon_time_editor_set_ticks ()
* -- hildon_time_editor_get_ticks ()
* -- hildon_time_editor_set_show_seconds ()
* -- hildon_time_editor_get_show_seconds ()
* -- hildon_time_editor_set_duration_mode ()
* -- hildon_time_editor_get_duration_mode ()
* -- hildon_time_editor_set_duration_min ()
* -- hildon_time_editor_get_duration_min ()
* -- hildon_time_editor_set_duration_max ()
* -- hildon_time_editor_get_duration_max ()
* - Added the following properties and rewrote some of the widget to
accommodate internal changes:
* -- "ticks": uint: The time/duration in seconds (from midnight if
appr.)
* -- "duration_mode": boolean: The mode of operation (true for
duration)
* -- "duration_min": uint: Smallest accepted duration
* -- "duration_max": uint: Greates accepted duration
* -- "show_seconds": boolean: Show seconds in the editor (or not if
false)
* hildon-get-password-dialog.c,hildon-name-password-dialog.c,hildon-
set-password-dialog.c:
* - caption separators set to empty string
* hildon-file-details-dialog.c
* - set two caption separators to empty strings to remove double
colons (first colon comes from localized string, second from caption
control)
* - wrapped <Filetype> view to a scrolled window to implement vertical
scrollbar
* - file type string is now localized
* - set G_PARAM_CONSTRUCT flag for show-tabs property hildon-
libs/po/en_GB.po
* - fixed string "File details" -> "Details"
* - Added HILDON_DISABLE_DEPRECATED ifdefs
-- Luc Pionchon <luc.pionchon@nokia.com> Wed, 27 Apr 2005 13:34:13 +0300
hildon-libs (0.9.12-1) unstable; urgency=low
* Fixed #8557: Even after muting the audio Seek bar thumb progressess
and after that unmute also mute mark enabled
* hildon-volumebar.c:
* - The 'keyboard' navigation was made possible by enabling the mute
button to get focus. The icon for the focused button was set to the
same as mute icon because the mute button can have focus only when
volume is muted. After the volume was unmuted, the focus for mute
button was disabled and focus grabbed for the volumebar. If the
volumebar was unable to get focus, the mute button didn't lose focus
and a wrong icon was displayed -> fixed by adding a check if
volumebar can indeed focus and choosing the action based on that
information.
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 14 Apr 2005 20:08:51 +0300
hildon-libs (0.9.11-1) unstable; urgency=low
* Fixed #8358 (Clicking mute button on volume bar does not affect the
mute icon.)
* Fixed #8400 (Font selection dialog not showing the already applied
attribute to text)
* Fixed #9155 (HildonTimeEditor - The border of the editors are
incomplete)
* hildon-date-editor.[c|h]: changed the widget to use a validate date
signal
* Fixed #9195 (HildonColorSelector - UI string mismatch)
* Fixed #9198 (HildonColorSelector - Tapping on custom colour does not
open the 5-bit palette)
* hildon-color-popup.c: fixed logical name of Cancel button
* hildon-color-selector.c: - Modify button is now dimmed when
predefined colour is selected
* - when a custom colour is selected, tapping on the selected colour
or pressing enter now opens the 5-bit colour selected
* - added parameter motion to select_color to distinguish between
button_press and motion_notify events (i.e. tapping on selected
colour and dragging the selected colour)
* - moved code related to creating and returning from the popup from
hildon_color_selector_response to a new function modify_selected to
avoid duplicating code
* .po changes: added Modify button text for Color Selector
-- Luc Pionchon <luc.pionchon@nokia.com> Thu, 14 Apr 2005 14:10:12 +0300
hildon-libs (0.9.10-1) unstable; urgency=low
* Added osso-esd-dev dependency to hildon-libs-dev
-- Luc Pionchon <luc.pionchon@nokia.com> Wed, 13 Apr 2005 16:59:11 +0300
hildon-libs (0.9.9-1) unstable; urgency=low
* Pretty much rewritten time picker
-- Luc Pionchon <luc.pionchon@nokia.com> Wed, 13 Apr 2005 10:58:32 +0300
hildon-libs (0.9.8-1) unstable; urgency=low
* hildon-note.c: Fixes text ellipsizing (related to #8426, but does
not fix it)
* hildon-number-editor.c: Fixed (partially?) #5005 (In Settings
dialog,it is possible to enter alphabets to define the cache size)
* Hildon Note now uses ESD for the sound support instead of OSSO
multimedia
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 11 Apr 2005 17:55:01 +0300
hildon-libs (0.9.7-1) unstable; urgency=low
* hildon-date-editor.c: improved enter key press handling
* - added hint for input mode only numeric
* - fixed setting of values if the some field is left empty
* - also made small pixel adjust
* hildon-time-editor.c:
* - improved enter key press handling
* - also made small pixel adjusts
* - the semicolon between hour and minutes is now visible
* - changed the rc file and size allocate to improve the look of the
widget
* Fixed #5381 (HildonTimeEditor - The api
hildon_time_editor_highlight_field() does not compile.)
* *.po clean up
* Fixed #5079 (Hildon Timeeditor-Accepting alphabets also from VKB)
* Fixed #5075 (HildonTimeEditor-Improper alignment of the clockicon)
* - added numeric input mode hints to the allow only numeric input
from the VKB
-- Luc Pionchon <luc.pionchon@nokia.com> Mon, 11 Apr 2005 12:03:59 +0300
hildon-libs (0.9.6-2) unstable; urgency=low
* removed extra locales
-- Luc Pionchon <luc.pionchon@nokia.com> Sun, 22 May 2005 18:27:55 +0300
hildon-libs (0.9.6-1) unstable; urgency=low
* Cleaned non-logical and obsolete strings
* Updated localization
-- First Release <Nokia> Wed, 6 Apr 2005 18:27:55 +0300
hildon-libs (0.9.5-1) unstable; urgency=low
* Seekbar fixes
* Updated dependency to newest GTK
hildon-libs (0.9.4-1) unstable; urgency=low
* Fixed #2953 (HildonNumberEditor returns maximum value when it is
empy)
* Fixed #5542 (Hildon number editor behaviour is not inlined with UI
SPEC)
* Fixed #8386 (Incorrect + and - button showing in HildonNumberEditor)
hildon-libs (0.9.3-1) unstable; urgency=low
* Fixed #8416 (Icons were missing in most of the information notes
displayed by the applications)
* Removed a useless focus grabbing to avoid focus flashing when
scrolling the page with focused item in it (task1645).
* Fixed #4276 (HildonDateEditor - When user enters a date manually in
the dateeditor, it is not accepted)
* Fixed #6050 (HildonDateEditor : No calendar icon debchange Fixed
hildon-libs (0.9.2-1) unstable; urgency=low
* Updated to GTK 2.6
hildon-libs (0.9.1-1) unstable; urgency=low
* GTK 2.6 Fixes
hildon-libs (0.8.25-1) unstable; urgency=low
* Fixed hildon-time-editor to use icon name instead of stock icons
* Fixed hildon-time-editor pixels so that the previously unvisible
frame is show.
* Fixed po headers
* Fixed #3440 (HildonSetPasswordDialog - on pressing ENTER hard key
the field is getting cleared(reset))
hildon-libs (0.8.24-1) unstable; urgency=low
* Update HildonGrid not to change focus when scrolled
* Dialogs: Keyboard navigation for each dialog, the focus must cycle
around the dialog widgets
hildon-libs (0.8.23-1) unstable; urgency=low
* Fixed po issues
* Fixed logical localization IDs in all widgets according to WS 2.0
part 2
* Separated the More Colors selector to its own widget from the Color
Selector Widget
hildon-libs (0.8.22-1) unstable; urgency=low
* Added es_MX and fr_CA
* Renamed localization packages: fi -> fi_FI
hildon-libs (0.8.21-2) unstable; urgency=low
* Updated dependency to hildon-fm1
hildon-libs (0.8.21-1) unstable; urgency=low
* ControlBar: application option for minimum number of visible bars
hildon-libs (0.8.20-1) unstable; urgency=low
* Fixed #4638 (Updates to <Filetype> Details Dialog (WUD-DIA272)
* ColorSelector: add new color
* Number editor errorhandling improvements and localization
* VolumeBar: hardkey mute/unmute addition
hildon-libs (0.8.19-1) unstable; urgency=low
* Seekbar: Added a feature that allows a different stream graphics to be shown
when streaming is complete.
* Fixed #6383 (hildon-libs, hildon-lgpl --- refers to new API provided
by updated gtk, but this is not specified in build-deps.)
* Fixed #6355 (HildonFontSelectionDialog - Segmentation Fault)
hildon-libs (0.8.18-1) unstable; urgency=low
* Merge had happened against non-100% HEAD code, thus rebuilding...
hildon-libs (0.8.17-1) unstable; urgency=low
* Added support for GTK icon theme names (task1777)
* hildon
hildon-libs (0.8.16-1) unstable; urgency=low
* Fixed #5705 (HildonFontSelectionDialog crashes with Nokia Sans font
when selecting bold face)
* Fixed #5739 (FontSelectionDialog allows choosing italic face even
though it doesn't exist for some fonts)
hildon-libs (0.8.15-1) unstable; urgency=low
* HildonFontSelectionDialog updates
hildon-libs (0.8.14-1) unstable; urgency=low
* Fixed #3827 (HildonVolumebar is not dimmed when volume is muted)
hildon-libs (0.8.13-1) unstable; urgency=low
* Timepicker skin updates
hildon-libs (0.8.12-1) unstable; urgency=low
* Debianized locale-packages
* Fixed #4704 (libraries should be versioned)
hildon-libs (0.8.11-1) unstable; urgency=low
* Fixed #1638 (HildonSeekBar & HilldonVolumeBar: widgets grab focus and
keypress events). Fixed by adding an option for applications to set focus
on/off
hildon-libs (0.8.10-1) unstable; urgency=low
* Editors: Changed the focus behaviour inside a widget
* Fixed #3689 (It is not possible to adjust sound level through navigational
keys.). Mute button no longer can get focus.
hildon-libs (0.8.9-1) unstable; urgency=low
* Fixed #4285 (API docs contain old/deprecated widgets)
hildon-libs (0.8.8-2) unstable; urgency=low
* Added GnomeVFS dependencies
hildon-libs (0.8.8-1) unstable; urgency=low
* Added sound support to hildon-note. Requires DBUS and osso-sounds-ui.
* Removed erroneus version dependency from pkgconfig file for fm and lgp.
hildon-libs (0.8.7-1) unstable; urgency=low
* Fixed #4652 (missing dependency to hildon-fm-dev)
* Removed dependency to matchbox
hildon-libs (0.8.6-1) unstable; urgency=low
* Lots of updates from development.
hildon-libs (0.8.5-1) unstable; urgency=low
* Release 0.8.5
hildon-libs (0.8.4-3) unstable; urgency=low
* HildonRangeEditor: Changed author, removed #include
* Updated GTK doc
hildon-libs (0.8.4-1) unstable; urgency=low
* 0.8.4 Release
|