-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog.2
5594 lines (4023 loc) · 185 KB
/
ChangeLog.2
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
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*****************************************************************
*****************************************************************
*****************************************************************
NOTE:
This is the ChangeLog from before the gtk 2.10 consolidation.
*****************************************************************
*****************************************************************
*****************************************************************
2007-03-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Changing the license headers and all the licesing stuff to
LGPL version 2 OR LATER.
2007-03-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am:
* src/hildon-calendar-popup.c:
* src/hildon-calendar-private.h:
* src/hildon-calendar.c:
* src/hildon-calendar.h:
* src/hildon-date-editor.c:
* src/hildon.h: Adding the HildonCalendar based on Gtk Calendar. This
effectively changes the license to LGPL version 2 OR LATER.
* src/hildon-get-password-dialog.c:
* src/hildon-marshalers.list:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c: Fixing some timeout issues and input-mode
issues (deprecated properties).
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/hildon.types:
* examples/Makefile.am:
* examples/hildon-date-editor-example.c: Example to test the new
HildonCalendar.
2007-03-27 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c:
* src/hildon-helper.h: Adding a hildon_helper_set_thumb_scrollbar
function to enable/disable a thumb scrollbar on a GtkScrolledWindow.
Note: requires a 'hildon-thumb-scrollbar' style defined in the theme.
* examples/Makefile.am:
* examples/hildon-thumb-scrollbar-example.c: Example that demoes the
thumb scrollbar functionality.
2007-03-26 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/Makefile.am: Actually take the libtool versioning into account.
2007-03-20 Tommi Komulainen <tommi.komulainen@nokia.com>
* doc/gtk-doc.make: Update from gtk-doc 1.7, and fix '*.sgml'
prerequisite with $(wildcard) to work in absence of any files.
* doc/Makefile.am (MAINTAINERCLEANFILES): Add 'tmpl/*.sgml' here, it
used to be handled in the modified gtk-doc.make
(HTML_IMAGES): Fix images locations by adding missing 'images/'
* doc/visual_index.xml: Remove extraneous 'html/' from image
references that were breaking the generated gallery page.
2007-03-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/rules: Force link creation and do not complain if failed.
2007-03-13 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-banner.c: Use TYPE_HINT_NOTIFICATION instead of
TYPE_HINT_MESSAGE.
2007-03-09 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-helper.c: Remove guard for NULL message in
_set_insensitive_message. Passing NULL is accepted with the semantics
of removing any previous message.
2007-03-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c: Fixing a double free in
_set_insenstive_message. Fixes NB#52928.
2007-03-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-color-pop-example.c:
* src/hildon-color-button.c:
* src/hildon-color-button.h: Correcting the color button popup API as
suggested by Tommi to follow the GtkComboBox popup API. The propery
name is now 'popup-shown' and the force-function is _popdown.
2007-03-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac:
* doc/Makefile.am:
* po/Makefile.am:
* po/POTFILES.in:
* po/en_GB.po: Fixing the 'engineering english' translation and adding
it back to the build system. Prolly needs some more updates in the
future when we resync the 'real' translation package names.
2007-03-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-button-private.h:
* src/hildon-color-button.c:
* src/hildon-color-button.h: Adding a property 'is-popped' and some
functions to pop-up the color selection dialog.
* configure.ac:
* examples/Makefile.am:
* examples/hildon-color-pop-example.c: An example that pops-up the
dialog from another thread.
2007-03-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-caption.c:
* src/hildon-program.c:
* src/hildon-volumebar-range.h: A few more consolidation corrections.
2007-03-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-time-picker.c: Renaming gtk-timeout-update to
gtk-timeout-repeat.
2007-03-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-hvolumebar-example.c:
* examples/hildon-vvolumebar-example.c: Making the bars in examples
larger to see if theeming is correct.
* src/hildon-time-picker-private.h:
* src/hildon-time-picker.c: Do not pull the timeout settings in the
init function. Do it when needed.
2007-03-02 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-caption-example.c:
* examples/hildon-scrolled-window-example.c: Adding an example to
check scrolled window theming.
* src/hildon-caption.c:
* src/hildon-caption.h: Adding hildon_caption_set_label_markup to set
markup on the caption. Fixes NB#51736.
2007-03-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Small fix, check for NULL before comparing
strings.
2007-03-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Do not set the text on the label if it's
exactly same as the existing text. Fixes some wrapping problems. Fixes
NB#50496.
2007-02-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-window.c: When the window name is empty, don't put
extra dash there. Fixes NB#47989.
2007-02-28 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-color-button-example.c:
* examples/hildon-number-editor-example.c: Adding number editor
example.
* src/hildon-window.c: Free the list used to detach menus. Fixes the
MB#1065.
2007-02-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/hildon.types:
* src/Makefile.am:
* src/hildon-input-mode-hint.h: Removing this file.
Now all the input-method related things are declared in gtkenums.h.
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-time-editor.c:
* src/hildon.h:
* src/hildon-date-editor.c:
* src/hildon-get-password-dialog.c: Use the input-mode enums defined
in gtkenums.h
2007-02-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog:
* src/hildon-code-dialog.c:
* src/hildon-code-dialog.h: Adding the
hildon_code_dialog_set_input_sensitive function requested by Santtu
Lakkala to enable/disable the input on the code dialog.
2007-02-16 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/visual_index.xml: Documentation fixes.
* src/hildon-banner-private.h:
* src/hildon-banner.c:
* src/hildon-banner.h: Adding Lucas patch to enable settable timeout
on the banners and settable icon.
* examples/hildon-banner-example.c: Set timeout manually.
2007-02-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.h:
* src/hildon-color-chooser.c:
* src/hildon-program.h: Doc fixes.
2007-02-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-time-editor.c: Check before freeing am/pm strings in
finalize.
* tests/check-hildon-caption.c:
* tests/check-hildon-controlbar.c:
* tests/check-hildon-date-editor.c:
* tests/check-hildon-font-selection-dialog.c:
* tests/check-hildon-note.c: Fixing the tests a little.
2007-02-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-lookup-example.c: Adding an example test program to
check icon-lookup functionality.
* src/hildon-caption.c:
* src/hildon-color-button.c:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c:
* src/hildon-get-password-dialog.c:
* src/hildon-hvolumebar.c:
* src/hildon-login-dialog.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-seekbar.c:
* src/hildon-set-password-dialog.c:
* src/hildon-sort-dialog.c:
* src/hildon-sound.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c:
* src/hildon-weekday-picker.c:
* src/hildon-wizard-dialog.c: Doc update.
2007-02-13 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-hvolumebar-example.c: A hvolumebar test program.
* src/hildon-code-dialog.c:
* src/hildon-code-dialog.h: Adding a patch by Santtu Lakkala that adds
an 'input' signal to the code dialog that is fired each time the user
presses any of the dialog input buttons.
* examples/hildon-code-dialog-example.c: Adding test case for the
new signal.
2007-02-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-window-example.c: Adding some title setting to check
the program/window naming.
2007-02-12 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/visual_index.xml: Adding the widgets-gallery chapter. Works now.
* doc/images/colour-button.png:
* doc/images/colour-chooser-dialog.png:
* doc/images/colour-chooser.png: Removing not needed images.
2007-02-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/images:
* doc/images/calendar-popup.png:
* doc/images/caption.png:
* doc/images/code-dialog.png:
* doc/images/color-button.png:
* doc/images/color-chooser-dialog.png:
* doc/images/color-chooser.png:
* doc/images/colour-button.png:
* doc/images/colour-chooser-dialog.png:
* doc/images/colour-chooser.png:
* doc/images/controlbar.png:
* doc/images/date-editor.png:
* doc/images/font-selection-dialog.png:
* doc/images/get-password-dialog.png:
* doc/images/hvolumebar.png:
* doc/images/login-dialog.png:
* doc/images/note.png:
* doc/images/number-editor.png:
* doc/images/range-editor.png:
* doc/images/seekbar.png:
* doc/images/set-password-dialog.png:
* doc/images/sort-dialog.png:
* doc/images/time-editor.png:
* doc/images/time-picker.png:
* doc/images/vvolumebar.png:
* doc/images/weekday-picker.png: Adding screenshots of widgets
generated by shooter.
* doc/Makefile.am:
* doc/hildon-docs.sgml:
* doc/visual_index.xml: Startup of the hildon widgets gallery. Not
ready yet.
* examples/Makefile.am:
* examples/hildon-code-dialog-example.c:
* src/hildon-code-dialog.c: Show the contents of the dialog box
vbox during creation.
* src/hildon-note.c:
* src/hildon-note.h: Fixing the enum.
2007-02-09 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-toolbar-example.c:
* src/hildon-window.c: Adding a toolbar example. Making the add/remove
toolbar documentation in HildonWindow a bit more verbose about
visibility and memory management.
2007-02-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-vvolumebar-example.c: Adding an exmaple for
HildonVVolumeBar.
2007-02-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-window-cmn-menu-example.c:
* examples/hildon-window-menu-example.c: Adding a common menu example
and a window menu example.
* src/hildon-program.c: Adding a note to the documentation about
HildonProgram reffing. Fixes MB#867.
* src/hildon-window.c: Fixing the menu ref counting problem. Now
applications are NOT supposed to take care about menu destroying since
the HildonWindow handles that. Adding this to the documentation. Fixes
NB#46434.
2007-02-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-program.c:
* src/hildon-window.c: Trap the X error instead of aborting. A patch
by Johan Bilien, fixes MB#900.
2007-02-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-number-editor.c:
* src/hildon-number-editor.h: Prefixing the number editor enums with
HILDON_NUMBER_EDITOR_ERROR_. Not sure why I haven't really noticed
this before.
2007-02-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: Small documentation fixes.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-get-password-dialog-example.c:
* examples/hildon-login-dialog-example.c:
* examples/hildon-set-password-dialog-example.c: Adding examples for
password dialogs.
* src/hildon-get-password-dialog.c: Doc fix.
* src/hildon-login-dialog.c: Do not show the username as hidden field.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* HACKING: Adding a HACKING file with some basic rules of styling and
code formatting.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-button.c:
* src/hildon-color-button.h: Updating documentation.
* src/hildon-helper.c: Correcting some formatting glitches.
2007-02-06 Xan Lopez <xan.lopez@nokia.com>
* src/hildon-helper.c:
* src/hildon-helper.h:
Fix the insensitive message function to copy the string in the widget,
as it might not valid anymore when the banner needs to be displayed.
Also add a version with printf-like string formatting.
2007-02-06 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-insensitive-example.c: Correcting the example for
insensitive press to use HildonWindow. For strange reasons doesn't
work with Dialogs.
2007-02-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-insensitive-example.c: Example for the insensitive
message setting.
* src/hildon-helper.c: Insensitive implementation by Xan Lopez.
2007-02-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-controlbar-example.c:
* src/hildon-controlbar.c: Fixing the controlbar to behave as if
minimal-bars-visible (old 2.6 mod) was equal 1.
* src/hildon-banner-private.h:
* src/hildon-banner.c: Fixing the problem with two information banners
being spawned one after another.
2007-02-04 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-find-toolbar.c: Fixing the documentation for the
FindToolbar.
2007-02-02 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* doc/gtk-doc.make: EXTRA_DIST cleanup.
* src/hildon-defines.c:
* src/hildon-defines.h: Icon sizes fixture.
* examples/Makefile.am:
* examples/hildon-icon-sizes-example.c: Example for new icon defines.
* src/hildon-time-editor.c:
* src/hildon-wizard-dialog.c:
* src/hildon-date-editor.c: Fixes for new icon sizes.
2007-02-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-helper.c:
* src/hildon-helper.h: Adding the
hildon_helper_set_insensitive_message function. Implementation not
done yet.
2007-02-01 Johan Bilien <johan.bilien@nokia.com>
* src/hildon-window.c:
Fixed the check for which property changed in _notify
Removed unused static function. Fixes: MB#962
2007-02-01 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/gtk-doc.make:
* doc/Makefile.am: Small adjustments to directory layout.
* examples/Makefile.am:
* examples/hildon-time-editor-example.c: A new example for time
editor.
2007-01-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/hildon-caption-example.c: Adding checkbutton to the caption
examples to see how things are looking.
* src/hildon-caption.c: Xan's fix for caption and checkbutton.
2007-01-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: Adding some documentation.
2007-01-31 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac:
* pkgconfig/hildon.pc.in:
* src/hildon-seekbar.c: Xan's fixes for new gtk compilation.
2007-01-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: More documentation fixes.
2007-01-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* src/hildon-hvolumebar.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-program.c:
* src/hildon-range-editor.c: Moving thesgml documentation to code.
2007-01-29 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* doc/Makefile.am:
* src/hildon-calendar-popup.c:
* src/hildon-color-button.c:
* src/hildon-color-chooser-dialog.h:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-get-password-dialog.c:
* src/hildon-login-dialog.c:
* src/hildon-login-dialog.h:
* src/hildon-note.c:
* src/hildon-program.c:
* src/hildon-sort-dialog.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-vvolumebar.c:
* src/hildon-weekday-picker.c:
* src/hildon-window.c:
* src/hildon-wizard-dialog.c: Moving the sgml documentation to code.
2007-01-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Big documentation fix mess continued.
2007-01-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Big documentation fix mess.
2007-01-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-sort-dialog.c:
* src/hildon-sort-dialog.h:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-volumebar-range.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c:
* src/hildon-weekday-picker.c:
* src/hildon-window.c:
* src/hildon-wizard-dialog.c: Cleaning up the documentation.
2007-01-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-program.c:
* src/hildon-program.h:
* src/hildon-range-editor.c:
* src/hildon-seekbar.c:
* src/hildon-set-password-dialog.c: Cleaing up the documentation.
2007-01-24 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-get-password-dialog.c:
* src/hildon-helper.c:
* src/hildon-hvolumebar.c:
* src/hildon-login-dialog.c:
* src/hildon-note.c:
* src/hildon-note.h:
* src/hildon-number-editor.c: Cleaning up the documentation.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-defines.h: Removing accidentaly left function prototypes.
* src/hildon-find-toolbar.c: Fixing documentation for
HildonFindToolbar.
* src/hildon-font-selection-dialog.c: Fixing documentation for
HildonfontSelectionDialog.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c: Fixing the documentation for
HildonTimeEditor. Removing the year limitations.
* src/hildon-defines.c:
* src/hildon-defines.h: Fixing the defines documentation.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Fixing documentation for HildonBanner.
* src/hildon-caption.c:
* src/hildon-caption.h: Fixing documentation for HildonCaption.
* src/hildon-code-dialog.c: Fixing documentation for HildonCodeDialog.
* src/hildon-controlbar.c: Fixing docuemtnation for HildonControlbar.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c:
* src/hildon-banner.h: Fixing documentation. Removing the n-lines
helper function.
* src/hildon-note.c: Removing the n-lines wrapping stuff.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* tests/Makefile.am: Missing MAINTAINERCLEAN files.
* tests/hildon-clock-widgets_tests.c:
* tests/hildon-widgets_tests.c: Removing, old outo stuff.
* tests/tc_banner_truncate.c: More info in header.
2007-01-23 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* tests/check-hildon-banner.c:
* tests/check-hildon-calendar-popup.c:
* tests/check-hildon-caption.c:
* tests/check-hildon-code-dialog.c:
* tests/check-hildon-color-button.c:
* tests/check-hildon-color-chooser.c:
* tests/check-hildon-controlbar.c:
* tests/check-hildon-date-editor.c:
* tests/check-hildon-dialoghelp.c:
* tests/check-hildon-find-toolbar.c:
* tests/check-hildon-font-selection-dialog.c:
* tests/check-hildon-get-password-dialog.c:
* tests/check-hildon-helper.c:
* tests/check-hildon-name-password-dialog.c:
* tests/check-hildon-note.c:
* tests/check-hildon-number-editor.c:
* tests/check-hildon-program.c:
* tests/check-hildon-range-editor.c:
* tests/check-hildon-scroll-area.c:
* tests/check-hildon-seekbar.c:
* tests/check-hildon-set-password-dialog.c:
* tests/check-hildon-sort-dialog.c:
* tests/check-hildon-system-sound.c:
* tests/check-hildon-time-editor.c:
* tests/check-hildon-time-picker.c:
* tests/check-hildon-volumebar-range.c:
* tests/check-hildon-volumebar.c:
* tests/check-hildon-weekday-picker.c:
* tests/check-hildon-window.c:
* tests/check-hildon-wizard-dialog.c:
* tests/check_test.c:
* tests/check_utils.c:
* tests/check_utils.h:
* tests/hildon-clock-widgets_tests.c:
* tests/hildon-widgets_tests.c:
* tests/tc_banner_truncate.c:
* tests/test_suites.h: Updating the copyright header.
2007-01-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/libhildon1-dbg.install:
* debian/libhildon1-dev.docs:
* debian/libhildon1-dev.install:
* debian/libhildon1.install:
* configure.ac:
* debian/control:
* debian/rules: Updating deps, making hildon0 a hildon1.
* pkgconfig/hildon.pc.in: Fixing a dash expansion problem.
2007-01-22 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/libhildon0-dbg.install:
* debian/libhildon0-dev.docs:
* debian/libhildon0-dev.install:
* debian/libhildon0.install:
* debian/changelog:
* debian/control: Adjusting package name to libhildon.
* debian/rules: Auto sh-libs generation.
2007-01-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-calendar-popup.c:
* src/hildon-caption.c:
* src/hildon-code-dialog.c:
* src/hildon-color-chooser-dialog.c:
* src/hildon-controlbar.c:
* src/hildon-date-editor.c:
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c:
* src/hildon-get-password-dialog.c:
* src/hildon-login-dialog.c:
* src/hildon-note.c:
* src/hildon-number-editor.c:
* src/hildon-range-editor.c:
* src/hildon-set-password-dialog.c:
* src/hildon-sort-dialog.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c:
* src/hildon-wizard-dialog.c: For the time being changing the
tranlslation package from PACKAGE (hildon) to hildon-libs to force/get
the old translations.
2007-01-19 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c:
* src/hildon-time-editor.c:
* src/hildon-number-editor.c: Adding some missing bugfixes from
pre-consolidation from another branch.
* src/hildon-helper.c:
* src/hildon-helper.h: Adding the missing finger event recognition
helper.
* tests/test_suites.h: Fixing the test suite.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon.h:
* src/Makefile.am:
* src/hildon-defines.c:
* src/hildon-helper.c:
* src/hildon-helper.h: Introducing the hildon-helper and moving some
-defines functions there.
* tests/Makefile.am:
* tests/Makefile.in:
* tests/TEST-CASES.txt:
* tests/check-hildon-defines.c:
* tests/check_test.c: Modyfying tests for hildon helper.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-input-mode-hint.h: Cleaning up the
hildon-input-mode-hint.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-defines.c:
* src/hildon-defines.h: Cleaning up hildon-defines.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-find-toolbar.c:
* src/hildon-program.c:
* src/hildon-volumebar.c:
* src/hildon-vvolumebar.c: Adding the proper HAVE_CONFIG where needed.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-composite-widget.c:
* src/hildon-composite-widget.h:
* src/hildon-date-editor.c:
* src/hildon-number-editor.c:
* src/hildon-time-editor.c:
* src/hildon-weekday-picker.c:
* src/Makefile.am:
* src/hildon-private.c:
* src/hildon-private.h: Moving "composite widget" to private since
essentially it's just a handy private function.
* src/hildon.h: Removing it from exported headers.
* tests/Makefile.am:
* tests/Makefile.in:
* tests/TEST-CASES.txt:
* tests/check-hildon-composite-widget.c:
* tests/check_test.c: Removing the composite test case, since it's
external/not exported anymore.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* debian/changelog: Adding missing.
* src/hildon-banner.c: Modyfying to allow creation with null window.
* tests/check-hildon-calendar-popup.c:
* tests/check-hildon-color-button.c:
* tests/check-hildon-note.c: Fixing the unit tests.
2007-01-18 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ChangeLog-hildon-lgpl: Moving to ChangeLog.1.
* ChangeLog.2: Creating from the ChangeLog. Will hold all changelogs
before consolidations.
* debian/changelog:
* debian/control:
* debian/hildon-dev.docs:
* debian/hildon-dev.install:
* debian/hildon-libs-dev.docs:
* debian/hildon-libs-dev.install:
* debian/hildon-libs0-dbg.install:
* debian/hildon-libs0.install:
* debian/hildon-libs0.links:
* debian/hildon0-dbg.install:
* debian/hildon0.install:
* debian/rules: Updating the debian stuff.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-login-dialog-example.c: Adding login dialog example.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/: Moving the examples out of the directory.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon.h: Changing from hildon-widgets.h
* examples/hildon-banner/hildon-banner-example.c:
* examples/hildon-caption/hildon-caption-example.c:
* examples/hildon-color-button/hildon-color-button-example.c:
* examples/hildon-color-chooser/hildon-color-chooser-example.c:
* examples/hildon-controlbar/hildon-controlbar-example.c:
* examples/hildon-note/hildon-note-example.c:
* examples/hildon-sort-dialog/hildon-sort-dialog-example.c:
* examples/hildon-time-picker/hildon-time-picker-example.c:
* examples/hildon-weekday-picker/hildon-weekday-picker-example.c:
* examples/hildon-window/hildon-window-example.c: Fixing the example
license header.
* src/Makefile.am: Fixing the noinst headers.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* ./: Upgrading the license headers, moving package name to "hildon"
etc.
2007-01-17 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-color-button:
* examples/hildon-color-button/hildon-color-button-example.c:
* examples/hildon-color-chooser:
* examples/hildon-color-chooser/hildon-color-chooser-example.c: Adding
the color button and color chooser examples.
* src/hildon-color-button.c:
* src/hildon-color-button.h:
* src/hildon-color-chooser-dialog.c:
* src/hildon-color-chooser.c: Fixing the color-returning functions.
* src/hildon-find-toolbar.c:
* src/hildon-font-selection-dialog.c: Adjusting to new color-returning
functions.
* tests/Makefile.am:
* tests/Makefile.in:
* tests/check-hildon-color-button.c:
* tests/check-hildon-color-popup.c:
* tests/check-hildon-color-selector.c:
* tests/check_test.c:
* tests/test_suites.h: Adding the tests for color button and color
chooser.
2007-01-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* Makefile.am:
* configure.ac:
* tests:
* tests/Makefile.am:
* tests/Makefile.in:
* tests/TEST-CASES.txt:
* tests/check-hildon-banner.c:
* tests/check-hildon-calendar-popup.c:
* tests/check-hildon-caption.c:
* tests/check-hildon-code-dialog.c:
* tests/check-hildon-color-button.c:
* tests/check-hildon-color-popup.c:
* tests/check-hildon-color-selector.c:
* tests/check-hildon-composite-widget.c:
* tests/check-hildon-controlbar.c:
* tests/check-hildon-date-editor.c:
* tests/check-hildon-defines.c:
* tests/check-hildon-dialoghelp.c:
* tests/check-hildon-find-toolbar.c:
* tests/check-hildon-font-selection-dialog.c:
* tests/check-hildon-get-password-dialog.c:
* tests/check-hildon-name-password-dialog.c:
* tests/check-hildon-note.c:
* tests/check-hildon-number-editor.c:
* tests/check-hildon-program.c:
* tests/check-hildon-range-editor.c:
* tests/check-hildon-scroll-area.c:
* tests/check-hildon-seekbar.c:
* tests/check-hildon-set-password-dialog.c:
* tests/check-hildon-sort-dialog.c:
* tests/check-hildon-system-sound.c:
* tests/check-hildon-time-editor.c:
* tests/check-hildon-time-picker.c:
* tests/check-hildon-volumebar-range.c:
* tests/check-hildon-volumebar.c:
* tests/check-hildon-weekday-picker.c:
* tests/check-hildon-window.c:
* tests/check-hildon-wizard-dialog.c:
* tests/check_test.c:
* tests/check_utils.c:
* tests/check_utils.h:
* tests/hildon-clock-widgets_tests.c:
* tests/hildon-widgets_tests.c:
* tests/run_tests:
* tests/tc_banner_truncate.c:
* tests/test_suites.h: Adding the test suite.
2007-01-15 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-time-picker:
* examples/hildon-time-picker/hildon-time-picker-example.c: Adding a
hildon-time-picker example.
2007-01-11 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* configure.ac:
* examples/Makefile.am: Adding the --with-examples and --with-asserts
configure options (defaulting to no ; no respectively).
2007-01-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-note:
* examples/hildon-note/hildon-note-example.c: Example for hildon note.
* src/hildon-note.c:
* src/hildon-note.h: Fixing buggy code in new object creation.
2007-01-10 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* examples/Makefile.am:
* examples/hildon-controlbar:
* examples/hildon-controlbar/hildon-controlbar-example.c: Adding an
example for the HildonControlBar.
* src/hildon-banner.c: Fixing some refactoring bugs.
* src/hildon-defines.c:
* src/hildon-number-editor.c:
* src/hildon-time-editor.c:
* src/hildon-time-picker.c: Gtk 2.10 fixes.
2007-01-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-date-editor.c:
* src/hildon-date-editor.h:
* src/hildon-time-editor.c:
* src/hildon-time-editor.h: Cleaning up the enum name.
2007-01-08 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-wizard-dialog-private.h:
* src/hildon-wizard-dialog.c:
* src/hildon-wizard-dialog.h: Cleaning up the HildonWizardDialog.
2007-01-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-set-password-dialog-private.h:
* src/hildon-set-password-dialog.c:
* src/hildon-set-password-dialog.h: Cleaning up the
HildonSetPasswordDialog.
2007-01-07 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-get-password-dialog-private.h:
* src/hildon-get-password-dialog.c:
* src/hildon-get-password-dialog.h: Cleaning up the
HildonGetPasswordDialog.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-font-selection-dialog.c:
* src/hildon-font-selection-dialog.h:
* src/hildon-font-selection-dialog-private.h: Cleaning up the
HildonFontSelectionDialog.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-login-dialog.c:
* src/hildon-login-dialog.h:
* src/Makefile.am:
* src/hildon-login-dialog-private.h:
* src/hildon-widgets.h: Cleaning up the HildonNamePassword dialog and
renaming it to HildonLoginDialog.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c: Introducing static protos, removing the
macrofied GType init, full the parent_class with proper value.
2007-01-05 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
* src/hildon-banner.c:
* src/hildon-banner.h:
* src/hildon-note.c:
* src/hildon-banner-private.h: Cleaning up the HildonBanner.