-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog
1487 lines (1035 loc) · 50 KB
/
ChangeLog
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
2010-07-05 Adam Endrodi <adam.endrodi@blumsoft.eu>
NB#127188 3PO: Uninstalled applications are still present in the Add Widget list
* libhildondesktop/hd-plugin-configuration.c (hd_plugin_configuration_get_available_plugins):
New function to return the hash table directly.
2010-06-21 Adam Endrodi <adam.endrodi@blumsoft.eu>
For NB#137880. Delay showing widgets until we're told so.
* libhildondesktop/hd-shortcuts.c:
Implement a "throttled" GObject property and don't show the widgets
as long as it's TRUE, and show them all when it becomes FALSE.
2010-05-25 Adam Endrodi <adam.endrodi@blumsoft.eu>
Release 2.1.42.
2010-05-07 Adam Endrodi <adam.endrodi@blumsoft.eu>
NB#162675 desktop recompilation with G_DISABLE_CAST_CHECKS
* configure.ac: add to $CFLAGS
2010-03-16 Marc Ordinas i Llopis <marc.ordinasillopis@collabora.co.uk>
Re-check loaders when the correct one cannot be found, in case it was just
installed.
Fixes: NB#159193 - Home plugin loaders are not being loaded automatically.
2010-02-19 Adam Endrodi <adam.endrodi@blumsoft.eu>
NB#157376 Copy and paste mistake in desktop item prevents xatom
to be set for settings
* libhildondesktop/hd-home-plugin-item.c (hd_home_plugin_item_realize, hd_home_plugin_item_set_settings):
Copy paste fix.
2009-12-18 Jan Arne Petersen <jpetersen@openismus.com>
Release 2.1.39
2009-12-18 Jan Arne Petersen <jpetersen@openismus.com>
Disable dh_installdocs.
Fixes: NB#149321 - Remove doc files from libhildondesktop deb
* debian/rules: Disable dh_installdocs
2009-12-15 Jan Arne Petersen <jpetersen@openismus.com>
Release 2.1.38
2009-12-15 Jan Arne Petersen <jpetersen@openismus.com>
Make sure HDHomePluginItem::client-event is propagated to parent
class.
Fixes: NB#150792 - "style-set" signal is not emitted on
HdHomePluginItem
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_client_event): Make sure
HDHomePluginItem::client-event is propagated to parent class.
2009-12-03 Jan Arne Petersen <jpetersen@openismus.com>
Do not install /usr/share/doc files.
Fixes: NB#149321 - Remove doc files from libhildondesktop deb
* debian/rules (DEB_DH_INSTALLCHANGELOGS_ARGS): Do not generate
/usr/share/doc/*/changelog.gz files.
2009-11-12 Gordon Williams <gordon.williams@collabora.co.uk>
Fixes: NB#143569 libhildondesktop pvr texture compression doesn't deal
with 2^n size textures correctly
* libhildondesktop/hd-pvr-texture.c: Fix conditionals to ensure that
a power of 2 size doesn't get doubled to the next biggest power of 2.
2009-11-04 Jan Arne Petersen <jpetersen@openismus.com>
Release 2.1.37
2009-11-04 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Increase version to 2.1.37
* libhildondesktop/hd-notification.c:
* libhildondesktop/hd-notification.h: Add hd_notification_is_closed
function.
2009-11-03 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.36
2009-11-02 Jan Arne Petersen <jpetersen@openismus.com>
Part of fix for NB#131297 and NB#142916.
* configure.ac: Increase version.
* libhildondesktop/hd-shortcuts.c: Create an own thumbnail icon which
is managed by the shortcut.
* libhildondesktop/hd-shortcuts.h: Add
hd_shortcuts_remove_bookmark_shortcut function to delete a bookmark
icon.
2009-10-28 Jan Arne Petersen <jpetersen@openismus.com>
Release 2.1.35
* configure.ac: 2.1.35
* debian/changelog: 2.1.35
2009-10-28 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#143259 - desktop bookmark disappears after reboot
* libhildondesktop/hd-shortcuts.c (MAX_URL_LENGTH,
hd_shortcuts_add_bookmark_shortcut): Add a max length of the ID so
it works with GConf.
2009-10-26 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.34
* configure.ac: 2.1.34
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_items_configuration_loaded): Fix Coverity warning
about not checking the return value of g_file_get_contents.
2009-10-21 Travis Reitter <travis.reitter@collabora.co.uk>
Support an API for status menu plugins to determine when the status
area is hidden. See NB#141707 - API for status area applets to detect
if they are invisible is absent.
* examples/status-menu/example-plugin.c: Add visibility detection to
example status menu plugin.
* libhildondesktop/hd-status-plugin-item.c: Add a "status-area-visible"
property to be set by the container when it becomes obscured or
unobscured.
2009-10-20 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#143531 - Status menu example plugin .desktop file X-Path
broken
* examples/status-menu/example-plugin.desktop: Fix example plugin
path.
2009-10-09 Jan Arne Petersen <jpetersen@openismus.com>
Release 2.1.33
* configure.ac: 2.1.33
2009-10-09 Jan Arne Petersen <jpetersen@openismus.com>
Fixes regression crashers.
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_remove_plugin_module,
hd_plugin_manager_plugin_module_updated): Fix for loops.
* libhildondesktop/hd-shortcuts.c (is_value_a_string_list): Check if
value != NULL.
2009-10-09 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.32
* configure.ac: 2.1.32
2009-08-27 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#127057 - Deleting views and rebooting device causes applets
from other views to appear on the first desktop view
* libhildondesktop/hd-shortcuts.c: Do not use GConfClient to cache the
current list shortcuts, but cahce it on our own.
* debian/changelog: Update.
2009-08-13 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.31
* configure.ac: 2.1.31
2009-08-13 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#132861 - "time" hint can not be set with
notify_notification_set_hint_int32 to new notifications
* libhildondesktop/hd-notification.c (hd_notification_get_time):
* debian/changelog: Update.
2009-08-07 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.30
* configure.ac: 2.1.30
2009-08-06 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#127303 - Very late or almost unsuccessful ringtone/vibra
playback on loaded system
* libhildondesktop/hd-notification.c (hd_notification_get_property,
hd_notification_get_hint, hd_notification_get_hints):
* libhildondesktop/hd-notification.h: Add function required to fix
NB#127303.
* debian/changelog: Update.
2009-07-08 Aapo Kojo <aapo.kojo@nokia.com>
Released 2.1.29
* configure.ac: 2.1.29
2009-07-02 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#126225 - SSU update of plugins results in loading multiple
plugin instances
* libhildondesktop/hd-plugin-manager.c (_HDPluginInfo::item,
load_plugin_idle, cmp_info_plugin_id): Make sure only one plugin
instance is loaded.
* debian/changelog: Update.
2009-07-01 Aapo Kojo <aapo.kojo@nokia.com>
Released 2.1.28
* configure.ac: 2.1.28
2009-06-29 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#123991 - Not able to launch the home applet again after it
crashes.
* libhildondesktop/hd-plugin-configuration.c
(hd_plugin_configuration_get_in_startup):
* libhildondesktop/hd-plugin-configuration.h: Add in_startup function.
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_items_configuration_loaded): After a crash remove
non safe plugins from the config file so they can be added back
later. Do not refuse to add non safe plugins later.
2009-06-29 Aapo Kojo <aapo.kojo@nokia.com>
Released 2.1.27
* configure.ac: 2.1.27
2009-06-29 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-config-file.c (hd_config_file_load_file): Fix
leaking GError.
* debian/changelog: Update.
2009-06-29 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#123171 - After SSU update Location widget is coming along
with other applet
Fixes: NB#123195 - After upgrade, applets from all desktops are
shifted to the first active screen.
* libhildondesktop/hd-plugin-configuration.c (PLUGIN_MODULE_UPDATED,
_HDPluginConfigurationPrivate::plugin_dir_monitors,
_HDPluginConfigurationPrivate::available_plugins,
hd_plugin_configuration_plugin_dir_changed,
hd_plugin_configuration_init, hd_plugin_configuration_finalize,
hd_plugin_configuration_configuration_loaded,
hd_plugin_configuration_class_init,
hd_plugin_configuration_get_all_plugin_paths):
* libhildondesktop/hd-plugin-manager.c (_HDPluginInfo::item,
load_plugin_idle, hd_plugin_manager_plugin_module_added,
hd_plugin_manager_plugin_module_updated, hd_plugin_manager_init):
* debian/changelog: Update.
2009-06-08 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.26
* configure.ac: 2.1.26
2009-06-05 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#119181 - Hidlon-status-menu crashing while performing SSU
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_plugin_module_added): Unload old plugins before
reloading them on package update.
* debian/changelog: Update.
2009-06-01 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.25
* configure.ac: 2.1.25
2009-05-25 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#115366 - [freetest] add shortcut to home does not work if
space was entered in URL field in web startup view
* libhildondesktop/hd-shortcuts.c (ID_VALID_CHARS): '+' is invalid.
* debian/changelog: Update.
2009-05-25 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.24
* configure.ac: 2.1.24
2009-05-20 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_realize): Set background pixmap to
transparent/black for RGB/RGBA Home widgets.
2009-05-18 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.23
* configure.ac: 2.1.23
2009-05-17 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#113632 - Document how to make applet backgrounds transparent
Fixes: NB#113631 - hd_status_plugin_item_set_status_area_icon() pixbuf
documentation
* libhildondesktop/hd-home-plugin-item.c: Update HDHomePluginItem
documentation.
* libhildondesktop/hd-status-menu-item.c:
* libhildondesktop/hd-status-plugin-item.c: Update HDStatusMenuItem
and HDStatusPluginItem documentation.
2009-05-17 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#116712 - HDPluginItem::plugin-id is undocumented
* doc/libhildondesktop-sections.txt:
* libhildondesktop/hd-plugin-item.c (hd_plugin_item_class_init,
hd_plugin_item_get_type, hd_plugin_item_get_dl_filename): Update
HDPluginItem documentation.
2009-05-11 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.22
2009-05-05 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-manager.c
(HD_PLUGIN_MANAGER_CONFIG_KEY_SAFE_SET, debug_plugins, safe_set,
hd_plugin_manager_load_plugin, hd_plugin_manager_finalize,
hd_plugin_manager_configuration_loaded,
hd_plugin_manager_items_configuration_loaded): Add support for an
additional safe set defintion of plugins we are allowed to be loaded
in safe mode.
* debian/changelog: Update.
2009-05-03 Jan Arne Petersen <jpetersen@openismus.com>
Fixes: NB#113633 - HD_DEFINE_PLUGIN_MODULE() is undocumented
* doc/libhildondesktop-sections.txt:
* libhildondesktop/hd-plugin-module.h: Update documentation.
* debian/changelog: Update.
2009-04-27 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-status-plugin-item.c: Fix documentation.
2009-04-27 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.21
* configure.ac: 2.1.21
2009-04-22 Gordon Williams <gordon.williams@collabora.co.uk>
* libhildondesktop/hd-pvr-texture.c: Modified texture expansion code
to get rid of a dark line that appeared at the top of an image if
the top and bottom weren't the same colour.
* libhildondesktop/pvr-texture.c: Added code for dithering in blocks
and pixels. Currently only the pixel dither is enabled.
2009-03-27 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.20
* configure.ac: 2.1.20
2009-03-26 Gordon Williams <gordon.williams@collabora.co.uk>
* libhildondesktop/pvr-texture.c: Compression quality improvements
2009-03-23 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.19
* configure.ac: 2.1.19
2009-03-09 Gordon Williams <gordon.williams@collabora.co.uk>
* libhildondesktop/pvr-texture.c
* libhildondesktop/pvr-texture.h:
Keeping in sync with clutter versions
* libhildondesktop/hd-pvr-texture.c:
Modify padding to pad texture with the last colour, not with black.
Solves problem with lines down side of textures in hildon-desktop
home images.
2009-03-19 Jan Arne Petersen <jpetersen@openismus.com>
* examples/home/example-label-home-applet.c
(example_label_home_applet_visible_notify,
example_label_home_applet_init): Add is-on-current-desktop property
example.
* libhildondesktop/hd-home-plugin-item.c (PROP_IS_ON_CURRENT_DESKTOP,
display_on_all_views, is_on_current_desktop,
hd_home_plugin_item_client_event,
hd_home_plugin_item_property_notify_event,
hd_home_plugin_item_get_property, hd_home_plugin_item_class_init,
hd_home_plugin_item_init): Add is-on-current-desktop property.
Fixes: NB#106343
* debian/changelog: Update.
2009-03-18 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-shortcuts.c (ID_VALID_CHARS): Remove '?' from
valid chars. Fixes: NB#106453
* debian/changelog: Update.
2009-03-10 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.18
* configure.ac: 2.1.18
2009-03-04 Jan Arne Petersen <jpetersen@openismus.com>
* debian/compat: 5 should be enough.
* examples/pvr-texture/example-pvr-texture.c (main):
* libhildondesktop/hd-pvr-texture.c (hd_pvr_texture_save):
* libhildondesktop/hd-pvr-texture.h (__HD_PVR_TEXTURE_H__):
* libhildondesktop/pvr-texture.c (pvr_texture_save_pvrtc4,
pvr_texture_save_pvrtc4_atomically):
* libhildondesktop/pvr-texture.h (PVR_FLAG_ALPHA): Add function with
error handling which stores the file atomically.
2009-03-02 Gordon Williams <gordon.williams@collabora.co.uk>
* libhildondesktop/hd-pvr-texture.c (Added)
* libhildondesktop/hd-pvr-texture.h (Added)
* libhildondesktop/pvr-texture.c (Added)
* libhildondesktop/pvr-texture.h (Added)
* libhildondesktop/Makefile.am:
Added PVRTC4 texture compressor
* debian/compat
* configure.ac
* examples/pvr-texture (Added)
* examples/pvr-texture/example-pvr-texture.c (Added)
* examples/pvr-texture/Makefile.am (Added)
* examples/Makefile.am:
Added example for use (a command-line file converter)
2009-02-23 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.17
* configure.ac: 2.1.17
2009-02-12 Jan Arne Petersen <jpetersen@openismus.com>
* examples/home/example-label-home-applet.c
(example_label_home_applet_realize,
example_label_home_applet_expose_event,
example_label_home_applet_class_init): Add alpha support to example
applet (works only in sbox currently).
* libhildondesktop/hd-plugin-configuration.c
(hd_plugin_configuration_plugin_dir_changed): Fix GnomeVFS unref.
2009-02-11 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
* libhildondesktop/hd-plugin-configuration.c
(hd_plugin_configuration_plugin_dir_changed): Fix a memory leak
detected by Coverity: free 'uri' before it goes out of scope.
2009-02-10 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.16
* configure.ac: 2.1.16
2009-02-10 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_constructed, hd_home_plugin_item_class_init):
Set accept-focus to FALSE for Home applets.
2009-02-09 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-shortcuts.c (delete_event_cb, shortcuts_notify,
hd_shortcuts_constructed, hd_shortcuts_add_bookmark_shortcut): Use
g_debug instead of g_warning because it is possible that the keys
are not set at all.
2009-02-03 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.15
* configure.ac: 2.1.15
2009-01-29 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-configuration.c
(hd_plugin_configuration_configuration_loaded): Fix memory leak.
2009-01-29 Jan Arne Petersen <jpetersen@openismus.com>
* doc/libhildondesktop.types:
* libhildondesktop/Makefile.am:
* libhildondesktop/libhildondesktop.h:
* libhildondesktop/hd-ui-policy.c (deleted):
* libhildondesktop/hd-ui-policy.h (deleted): Remove unused HDUiPolicy.
* libhildondesktop/hd-plugin-configuration.c
(hd_plugin_configuration_finalize,
hd_plugin_configuration_configuration_loaded):
* libhildondesktop/hd-plugin-loader-factory.c
(hd_plugin_loader_factory_create):
* libhildondesktop/hd-plugin-manager.c (hd_plugin_manager_load_plugin,
hd_plugin_manager_configuration_loaded,
hd_plugin_manager_items_configuration_loaded): Fix some memory
leaks.
2009-01-29 Jan Arne Petersen <jpetersen@openismus.com>
* debian/libhildondesktop1-examples.install:
* examples/status-menu/Makefile.am:
* examples/status-menu/example-plugin.c:
* examples/status-menu/example-plugin.desktop:
* examples/status-menu/example-plugin.h:
* examples/status-menu/example-plugin.desktop (added):
* examples/status-menu/example-plugin.c (added):
* examples/status-menu/example-plugin.h (added):
* examples/status-menu/example-signal-status-area-item.h (deleted):
* examples/status-menu/example-icon-status-menu-item.c (deleted):
* examples/status-menu/example-clock-status-menu-item.c (deleted):
* examples/status-menu/example-icon-status-menu-item.h (deleted):
* examples/status-menu/example-status-area-icon-1.png (deleted):
* examples/status-menu/example-clock-status-menu-item.h (deleted):
* examples/status-menu/example-icon.desktop (deleted):
* examples/status-menu/example-status-area-icon-2.png (deleted):
* examples/status-menu/example-status-area-icon-3.png (deleted):
* examples/status-menu/example-status-area-icon-4.png (deleted):
* examples/status-menu/example-clock.desktop (deleted):
* examples/status-menu/example-volume-status-menu-item.c (deleted):
* examples/status-menu/example-status-area-icon-battery.png (deleted):
* examples/status-menu/example-button-status-menu-item.c (deleted):
* examples/status-menu/example-icon.png (deleted):
* examples/status-menu/example-volume-status-menu-item.h (deleted):
* examples/status-menu/example-status-area-icon-signal.png (deleted):
* examples/status-menu/example-battery-status-area-item.c (deleted):
* examples/status-menu/example-volume.desktop (deleted):
* examples/status-menu/example-button-status-menu-item.h (deleted):
* examples/status-menu/example-signal-status-area-item.c (deleted):
* examples/status-menu/example-battery.desktop (deleted):
* examples/status-menu/example-button.desktop (deleted):
* examples/status-menu/example-battery-status-area-item.h (deleted):
* examples/status-menu/example-signal.desktop (deleted): Do not ship
the test status menu plugins but only an "official" example.
2009-01-27 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.14
2009-01-27 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_class_init):
* libhildondesktop/hd-home-plugin-item.h: Revert changes to class
structure to preserve old ABI.
2009-01-26 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.13
2009-01-21 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_set_settings,
hd_home_plugin_item_set_resize_type):
* libhildondesktop/hd-home-plugin-item.h
(HD_HOME_PLUGIN_ITEM_GET_CLASS, HD_HOME_PLUGIN_ITEM_RESIZE_NONE,
HD_HOME_PLUGIN_ITEM_RESIZE_VERTICAL,
HD_HOME_PLUGIN_ITEM_RESIZE_HORIZONTAL,
HD_HOME_PLUGIN_ITEM_RESIZE_BOTH, HDHomePluginItemResizeType,
show_settings): Mark hd_home_plugin_item_set_resize_type as
deprecated.
2009-01-21 Jan Arne Petersen <jpetersen@openismus.com>
* doc/libhildondesktop-sections.txt: Add documentation.
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_client_event, hd_home_plugin_item_realize,
hd_home_plugin_item_set_property, hd_home_plugin_item_class_init,
hd_home_plugin_item_heartbeat_signal_add,
hd_home_plugin_item_get_applet_id,
hd_home_plugin_item_set_settings): Add support for settings in Home
applets.
* libhildondesktop/hd-home-plugin-item.h (parent, get_applet_id,
show_settings): Update API to support settings. Removed API for
resizeable applets.
2009-01-13 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.12
2009-01-09 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-shortcuts.c (hd_shortcuts_new): Improve doc.
(hd_shortcuts_add_bookmark_shortcut): Make icon optional, add checks
for URL and label. Improve doc. Fixes NB#97385.
* libhildondesktop/hd-shortcuts.h: Improve doc.
* doc/libhildondesktop-docs.xml:
* doc/libhildondesktop-sections.txt:
* doc/libhildondesktop.types: Improve doc.
* configure.ac: 2.1.12.
* debian/changelog: Update.
2008-12-29 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.11
* configure.ac: bump up the version.
2008-12-19 Jan Arne Petersen <jpetersen@openismus.com>
* doc/libhildondesktop-sections.txt: Update HDConfigFile doc.
* libhildondesktop/hd-config-file.c
(hd_config_file_constructed): Try to create user config directory if
it does not exist yet, before it is monitored. Fixes NB#92206.
(hd_config_file_load_file, hd_config_file_save_file): Update docs.
* debian/changelog: Update.
2008-12-15 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.10
2008-12-09 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Increase version.
* debian/changelog: Update changelog.
2008-12-08 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-shortcuts.c
(hd_shortcuts_add_bookmark_shortcut):
* libhildondesktop/hd-shortcuts.h: Add function to create bookmark
shortcuts. Fixes NB#94814
2008-12-03 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.9
* configure.ac: 2.1.9
2008-11-28 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-loader-factory.c
(hd_plugin_loader_factory_create): Do not try to load a plugin from
an unknown loader.
* libhildondesktop/hd-shortcuts.c (delete_event_cb): Do not destroy
widget here (it is destroyed after the lists are synced).
2008-11-25 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.8
2008-11-18 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Increase version to 2.1.8
* debian/changelog: Add entry for 2.1.8
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_get_applet_id_real,
hd_home_plugin_item_class_init,
hd_home_plugin_item_get_applet_id): Add virtual function to get the
applet id. By default use the plugin id.
* libhildondesktop/hd-home-plugin-item.h (get_applet_id): Add virtual
function to get the applet id.
2008-11-17 Kimmo Hämäläinen <kimmo.hamalainen@nokia.com>
Release 2.1.7
2008-11-11 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Increase version to 2.1.7.
* debian/changelog: Add 2.1.7~unreleased entry.
2008-11-11 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-home-plugin-item.c
(create_applet_id): Add a function to generate an unique ID which
can be used as gconf key.
(hd_home_plugin_item_realize): Set _HILDON_APPLET_ID to ID generated
by the create_applet_id function.
* libhildondesktop/hd-shortcuts.c:
* libhildondesktop/hd-shortcuts.h: Moved from hildon-home (made more
generic by Xavier Claessens <xavier.claessens@collabora.co.uk>). Fixes
NB#90553.
* libhildondesktop/libhildondesktop.h: Add hd-shortcuts.h.
* libhildondesktop/Makefile.am: Add hd-shortcuts.[ch].
2008-11-06 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_load_plugin): Fix crash if applet could not be
loaded.
2008-10-31 Jan Arne Petersen <jpetersen@openismus.com>
* debian/control:
* debian/rules: Fix lintian warnings.
2008-10-31 Jan Arne Petersen <jpetersen@openismus.com>
* debian/changelog: Release 2.1.6
2008-10-30 Jan Arne Petersen <jpetersen@openismus.com>
* debian/changelog: Prepare for 2.1.6 release.
* libhildondesktop/hd-config-file.c
(hd_config_file_new_with_defaults): Add new convenience function to
create a HDConfigFile instance with the default directories.
(hd_config_file_load_file): Add support for empty user config files,
i.e. no applet selected.
(hd_config_file_save_file): Add function to atomically store a key
file (atomically).
* libhildondesktop/hd-config-file.h: Add new function protoypes.
* libhildondesktop/hd-plugin-configuration.c: Rename
plugin-configuration to items-configuration.
(hd_plugin_configuration_store_items_key_file): Add function to
store the items key file (atomically).
* libhildondesktop/hd-plugin-configuration.h: Rename
plugin-configuration to items-configuration. Add new function
protoypes.
* libhildondesktop/hd-plugin-manager.c: Update to
HDPluginConfiguration changes.
2008-10-29 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Increase version to 2.1.6.
* libhildondesktop/Makefile.am: Add hd-plugin-configuration.[ch] to
SOURCES.
* libhildondesktop/hd-config-file.c:
* libhildondesktop/hd-config-file.h: Use GInitiallyUnowned as
parent class.
* libhildondesktop/hd-plugin-configuration.c:
* libhildondesktop/hd-plugin-configuration.h: Create a new base class
for HDPluginManager which contains all the plugin configuration
related code. This base class can also be used by HDAppletManager in
hildon-desktop to manage plugins without loading them.
* libhildondesktop/hd-plugin-manager.c:
* libhildondesktop/hd-plugin-manager.h: Uses the new
HDPluginConfiguration base class.
* libhildondesktop/libhildondesktop.h: Add hd-plugin-configuration.h.
2008-10-16 Jan Arne Petersen <jpetersen@openismus.com>
* debian/rules: Add call of autogen.sh to makebuilddir to generate
the configure scripts.
2008-10-16 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac:
* debian/changelog: Prepare 2.1.5 release.
2008-10-16 Jan Arne Petersen <jpetersen@openismus.com>
* debian/compat: Set compat to 5.
* debian/control: Requires debhelper (>= 5) and cdbs.
* debian/libhildondesktop1-dev.install:
* debian/libhildondesktop1-doc.install:
* debian/libhildondesktop1-examples.install:
* debian/libhildondesktop1.install: Update install paths for switch to
cdbs.
* debian/rules: Switch buildsystem to use cdbs.
2008-10-16 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-home-plugin-item.c
(hd_home_plugin_item_load_desktop_file): Load default values from
.desktop file.
(hd_home_plugin_item_init_plugin_item): Implement virtual
load_desktop_file function.
(hd_home_plugin_item_realize): Set X Window properties.
2008-09-24 Jan Arne Petersen <jpetersen@openismus.com>
* debian/changelog: Released 2.1.4
2008-09-24 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_plugin_configuration_loaded): Only load safe set
of plugins if in safe mode after a crash.
* libhildondesktop/hd-stamp-file.c (hd_stamp_file_init): Warn if stamp
file could not be created.
2008-09-24 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-notification.c:
* libhildondesktop/hd-notification.h: Add HDNotification class.
* libhildondesktop/hd-notification-plugin.c
(hd_notification_plugin_notify):
* libhildondesktop/hd-notification-plugin.h: Use HDNotification.
Remove ::closed signal.
* examples/notification/example-notification-plugin.c: Use the updated
notification plugin API.
* libhildondesktop/Makefile.am: Add hd-notification.[ch].
* libhildondesktop/libhildondesktop.h: Add hd-notification.h
* doc/libhildondesktop-docs.xml: Add documentation for HDNotification
and HDHomePluginItem.
* doc/libhildondesktop-sections.txt: Add documentation for
HDNotification and HDHomePluginItem.
* doc/libhildondesktop.types: Add missing types.
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_configuration_loaded): Don't call g_strstrip with
a NULL argument.
2008-09-15 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Fix hildonhomedesktopentrydir expansion.
* libhildondesktop/libhildondesktop.pc.in: Add
hildonhomedesktopentrydir vairable.
2008-09-15 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-loader-default.c
(hd_plugin_loader_default_open_module,
hd_plugin_loader_default_load): Change plugin type to GObject.
* libhildondesktop/hd-plugin-loader-factory.c
(hd_plugin_loader_factory_new, hd_plugin_loader_factory_create):
Change plugin type to GObject.
* libhildondesktop/hd-plugin-loader-factory.h: Change plugin type to
GObject.
* libhildondesktop/hd-plugin-loader.c: Change plugin type to GObject.
* libhildondesktop/hd-plugin-loader.h: Change plugin type to GObject.
* libhildondesktop/hd-plugin-module.c (hd_plugin_module_new): Change
plugin type to GObject.
* libhildondesktop/hd-plugin-module.h: Change plugin type to GObjct.
* libhildondesktop/hd-plugin-manager.c
(hd_plugin_manager_load_plugin): Change plugin type to GObject.
(hd_plugin_manager_plugin_module_added, hd_plugin_manager_class_init,
hd_plugin_manager_new): Move stamp file support to
hd-stamp-file[ch].
* libhildondesktop/hd-plugin-manager.h: Move stamp file support to
hd-stamp-file[ch].
* libhildondesktop/Makefile.am: Add hd-stamp-file.[ch].
* libhildondesktop/hd-stamp-file.c:
* libhildondesktop/hd-stamp-file.h: Add stamp file support from
HDPluginManager and hildon-status-menu.c.
* libhildondesktop/libhildondesktop.h: Add hd-stamp-file.h
2008-09-13 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/hd-plugin-item.c
(hd_plugin_item_load_desktop_file): Add support to load data from a
.desktop file.
* libhildondesktop/hd-plugin-item.h (load_desktop_file): Add virtual
load_desktop_file function which can be overridden to read additional
data from the .desktop file.
* libhildondesktop/hd-plugin-loader-default.c
(hd_plugin_loader_default_open_module): Call
hd_plugin_item_load_desktop_file if the loaded plugin is a
HDPluginItem.
2008-09-12 Jan Arne Petersen <jpetersen@openismus.com>
* debian/libhildondesktop1-examples.install: Install example home
applet .desktop file.
* configure.ac:
* examples/Makefile.am:
* examples/home/Makefile.am:
* examples/home/example-label-applet.desktop:
* examples/home/example-label-home-applet.c:
* examples/home/example-label-home-applet.h: Add example home applet
plugin.
* libhildondesktop/Makefile.am: Add hd-home-plugin-item.[ch]
* libhildondesktop/hd-home-plugin-item.c:
* libhildondesktop/hd-home-plugin-item.h: Add home applet plugin API.
* libhildondesktop/hd-status-plugin-item.c
(hd_status_plugin_item_get_dl_filename): Call
hd_plugin_item_get_dl_filename instead of another implementation.
* libhildondesktop/libhildondesktop.h: Add hd-home-plugin-item.h and
hd-heartbeat.h.
2008-09-12 Jan Arne Petersen <jpetersen@openismus.com>
* libhildondesktop/Makefile.am: Add hd-heartbeat.[ch].
* libhildondesktop/hd-heartbeat.c
(hd_heartbeat_source_new, hd_heartbeat_add,
hd_heartbeat_add_full):
* libhildondesktop/hd-heartbeat.h: Extract the heartbeat code from
HDStatusPluginItem to make it easier to use it from the
HDHomePluginItem.
* libhildondesktop/hd-status-plugin-item.c
(hd_status_plugin_item_heartbeat_signal_add): Use
hd_heartbeat_add_full and refactor heartbeat code into own file.
2008-09-12 Jan Arne Petersen <jpetersen@openismus.com>
* configure.ac: Increase version. Add
hildonnotificationdesktopentrydir variable. Add notification plugin
example.
* debian/libhildondesktop1-examples.install: Add notification plugin
example.
* doc/libhildondesktop-docs.xml: Add HDNotificationPlugin doc.
* doc/libhildondesktop-sections.txt: Add HDNotificationPlugin doc.
* examples/Makefile.am: Add notification plugin example.
* examples/notification/Makefile.am:
* examples/notification/example-notification-plugin.c:
* examples/notification/example-notification-plugin.h:
* examples/notification/example-notification.desktop: Add notification plugin example.
* libhildondesktop/Makefile.am: Add HDNotificationPlugin.
* libhildondesktop/hd-notification-plugin.c:
* libhildondesktop/hd-notification-plugin.h: Add HDNotificationPlugin.