-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
3143 lines (2096 loc) · 99.2 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-08-20 Adam Endrodi <[email protected]>
NB#186852 .desktop file in ~/.local/share/applications/hildon
not used for shortcut list
* src/Makefile.am:
Added directory definition.
* src/hd-shortcut-widgets.c (hd_shortcut_widgets_get):
Scan that directory as well.
2010-07-29 Adam Endrodi <[email protected]>
NB#165381 Hildon-home is not responding if theme is changed
when all shortcuts are added to home view.
We were super-busy restyling widgets when the theme was changed
and couldn't respond to the window manager in time. This task
not only takes ages but also unnecessary because we exit anyway
to prevent memory leaks.
* hildon-home.c:
Make gtk ignore _GTK_READ_RCFILES completely.
* hd-cairo-surface-cache.c:
Don't monitor the theme link and don't react to its changes.
* hd-task-shortcut.c
* hd-bookmark-shortcut.c
* hd-incoming-event-window.c:
Don't react to theme change.
2010-07-29 Adam Endrodi <[email protected]>
Add as tight D-BUS message matches as possible.
* src/hd-hildon-home-dbus.c
* src/hd-incoming-events.c:
Use dbus_message_get_args() rather than iterators.
2010-07-29 Adam Endrodi <[email protected]>
Don't run waitidle if we exited because of a theme change.
* src/hildon-home.c (main):
Rename the stamp file and check for it too on startup
when deciding about enabling waitidle.
2010-07-29 Adam Endrodi <[email protected]>
Make waitidle compatible with libhildondesktop 2.1.42,
and disable it by default. This allows for independent
releasing of hildon-home with the waitidle feature and
libhildondesktop with the necessary enablers.
* src/hildon-home.c:
Recognize the Waitidle::enabled configuration parameter.
* src/home.conf.in:
Move comments around.
* src/hd-task-shortcut.c (hd_task_shortcut_desktop_file_changed_cb):
Check the existence of the "throttled" property before getting
its value to prevent the emission of warnings.
2010-07-08 Adam Endrodi <[email protected]>
Release 0.3.70-1.
2010-07-07 Adam Endrodi <[email protected]>
NB#162298 hildon-sv-notification-daemon memory leak during long chat.
* src/hd-sv-notification-daemon.c (hd_sv_notification_daemon_stop_event):
Free the invocation context.
2010-06-21 Adam Endrodi <[email protected]>
NB#137880 Selecting bookmark is slow to launch site, resulting
in multiple clicks and multiple browser instances
Don't show the widgets as long as the load is high.
Configurable via /etc/hildon-desktop/home.conf.
Also initiate the application-loading transition rather than
waiting for the application when opening a web bookmark.
* debian/control:
Depend on new version of libhildondesktop.
* src/home.conf.in:
New configuration settings.
* src/hd-applet-manager.c (plugin_added_cb):
If hd_applet_manager_throttled() keep a list of @throttled_plugins
and only gtk_widget_show() them when we're ready.
* src/hd-task-shortcut.c (hd_task_shortcut_desktop_file_changed_cb):
Don't show the shortcut if the HDShortcuts is throttled.
* src/hildon-home.c (waitidle):
Right when entering the main loop start watching the CPU activity,
show the idle-percentage on a banner and show the widgets when it
reaches the desired level.
* src/hd-shortcut-widgets.c (hd_shortcut_widgets_launch_task):
Replaced...
* src/hd-dbus-utils.c (hd_utils_launch_task):
...by this...
* src/hd-bookmark-shortcut.c (hd_bookmark_shortcut_activate):
...and used by this.
* src/hd-shortcut-widgets.c (hd_shortcut_widgets_get_app_mgr_proxy):
Removed as unused.
2010-06-10 Adam Endrodi <[email protected]>
Release 0.3.69.
2010-06-10 Adam Endrodi <[email protected]>
NB#159589 Change background. Logical ID for 'Get more from Ovi Store'
"home_li_get_ovi"
* src/hd-available-backgrounds.c (hd_available_backgrounds_run):
Use explicit message catalog with dgettext() because plugins
may decide to change the default.
2010-05-25 Adam Endrodi <[email protected]>
Release 0.3.68.
2010-06-04 Adam Endrodi <[email protected]>
NB#172384 hildon-home leaks X resources: Pixmaps during generic use
* src/hd-incoming-event-window.c (hd_incoming_event_window_realize):
Once passed to the notification window, release the background
pixmap.
2010-05-25 Adam Endrodi <[email protected]>
Release 0.3.67.
2010-05-07 Adam Endrodi <[email protected]>
NB#162675 desktop recompilation with G_DISABLE_CAST_CHECKS
* configure.ac: add to $CFLAGS
2010-02-19 Adam Endrodi <[email protected]>
Release 0.3.66-2.
2010-02-18 Adam Endrodi <[email protected]>
For NB#154984: commit uncommitted work when the display goes off
* src/hd-notification-manager.c (hd_notification_manager_db_commit_now)
* src/hd-incoming-events.c (hd_incoming_events_system_bus_signal_handler)
2010-02-18 Marc Ordinas i Llopis <[email protected]>
Release 0.3.66-1.
2010-02-18 Marc Ordinas i Llopis <[email protected]>
Fixes: NB#155462 - Ovi Store Promotional links to themes and backgrounds
* src/hd-available-backgrounds.c
* src/hd-background.h
* src/hd-change-background-dialog.c
* src/hd-dbus-utils.c
* src/hd-dbus-utils.h
2010-02-18 Adam Endrodi <[email protected]>
NB#155904 Task Switcher is not glowing after reboot in case of
new unread SMS message
We didn't exit cleanly when we received the shutdown_ind signal.
* src/hd-hildon-home-dbus.c (hd_hildon_home_system_bus_signal_handler):
Only quit the main loop, not main(), and let it clean up.
2010-02-17 Adam Endrodi <[email protected]>
Send ActionInvoked signals without a concrete destination.
The unique names we used as destinations become invalid after
rebooting so the intended address didn't get it eventually.
* src/hd-notification-manager.c (hd_notification_manager_create_signal):
Don't specify a concrete destination.
2010-02-17 Adam Endrodi <[email protected]>
NB#152279 Tapping grouped message preview doesn't bring
conversation to foreground
Because we just sent GroupMessageInvoked but messaging-ui needs
ActionInvoked. So send both of them, just in case.
* src/hd-incoming-events.c:
Make it possible for D-Bus-Callback to have a list of values,
and recognize "default" to indicate sending the ActionInvoked
signal.
2010-02-08 Adam Endrodi <[email protected]>
Release 0.3.65-1.
2010-02-04 Adam Endrodi <[email protected]>
Release 0.3.65.
2010-02-04 Adam Endrodi <[email protected]>
NB#154418 Text in chat-invitation notifications is unchangeable
* src/notification-groups.conf:
Copied [chat-invitation] to [group-chat-invitation] with
a different Secondary-Text.
2009-12-18 Jan Arne Petersen <[email protected]>
Release 0.3.62.
2009-12-18 Jan Arne Petersen <[email protected]>
Fix length of NULL-terminated string array.
Fixes: NB#151417 - Hildon Crashes always in a scenario
* src/hd-search-service.c: Fix length of NULL-terminated string array.
2009-12-17 Jan Arne Petersen <[email protected]>
Release 0.3.61.
2009-12-17 Jan Arne Petersen <[email protected]>
Fixes: NB#150971 - hildon-home crashed while changing background.
* src/hd-available-backgrounds.c: Unref models correctly.
2009-12-17 Jan Arne Petersen <[email protected]>
Fixes: NB#149133 - Remove doc files from hildon-home deb
* debian/rules: disable dh_installdocs.
2009-12-14 Jan Arne Petersen <[email protected]>
Release 0.3.60.
2009-12-14 Jan Arne Petersen <[email protected]>
Strip spaces in path values from keyfiles
Fixes: NB#148916 - Hildon-home crashes always when trying to change
custom wallpaper
* src/hd-imageset-background.c: Strip spaces in path values.
2009-12-04 Jan Arne Petersen <[email protected]>
Release 0.3.59
2009-12-04 Jan Arne Petersen <[email protected]>
Add support for wallpaper backgrounds.
Fixes: NB#145131 - Support full size background jpeg files
* src/Makefile.am:
* src/hd-activate-views-dialog.c:
* src/hd-background.c:
* src/hd-background.h:
* src/hd-backgrounds.c:
* src/hd-backgrounds.h:
* src/hd-change-background-dialog.c:
* src/hd-dbus-utils.c:
* src/hd-dbus-utils.h:
* src/hd-led-pattern.c:
* src/hd-pixbuf-utils.c:
* src/hd-pixbuf-utils.h:
* src/hd-search-service.c:
* src/hd-search-service.h:
* src/hd-wallpaper-background.c:
* src/hd-wallpaper-background.h: Add support for wallpaper
backgrounds.
2009-12-03 Jan Arne Petersen <[email protected]>
Do not install /usr/share/doc files.
Fixes: NB#149133 - Remove doc files from hildon-home deb.
* debian/rules (DEB_DH_INSTALLCHANGELOGS_ARGS): Do not generate
/usr/share/doc/*/changelog.gz files.
2009-12-01 Jan Arne Petersen <[email protected]>
Fixes: NB#142790 - Group chat invitation notifications are not
implemented
* src/notification-groups.conf: Add chat-invitation category.
2009-12-01 Jan Arne Petersen <[email protected]>
Add support for live search in dialogs.
* src/hd-applet-manager.c:
* src/hd-bookmark-widgets.c:
* src/hd-shortcut-widgets.c:
* src/hd-widgets.c:
* src/hd-widgets.h: Add get_text_column method.
* src/hd-install-widgets-dialog.c: Set "text-column" property
* src/hd-change-background-dialog.c: Set "text-column" property.
2009-11-12 Jan Arne Petersen <[email protected]>
Release 0.3.58
2009-11-12 Jan Arne Petersen <[email protected]>
Fixes: NB#146369 - theme change dialog shoudl be open for longer time
till the theme change is completely applied.
* src/hd-edit-mode-menu.c: Run theme change dialog with
g_spawn_command_line_async.
2009-11-10 Jan Arne Petersen <[email protected]>
Release 0.3.57
2009-11-06 Jan Arne Petersen <[email protected]>
Release 0.3.56
2009-11-06 Jan Arne Petersen <[email protected]>
Fixes: NB#135795 - Desktop hanged in a mentioned scenario.
* src/hd-edit-mode-menu.c:
* src/hd-edit-mode-menu.h:
* src/Makefile.am: Extract edit mode menu into an own widget.
Override GtkWidgetClass->show to only show if no other modal dialog is
shown.
* src/hd-hildon-home-dbus.c: Use new HDEditModeMenu.
2009-11-06 Jan Arne Petersen <[email protected]>
Fixes: NB#142515 - Increase in memory usage of hildon-home while
changing theme from layout mode.
* src/hd-command-thread-pool.c:
* src/hd-command-thread-pool.h: A thread pool which supports different
commands.
* src/Makefile.am: Add new source files.
* src/hd-backgrounds.c: Restart hildon-home on theme change. Use
HDCommandThreadPool.
* src/hd-backgrounds.h: Add hd_backgrounds_set_image_set function to
set an image set.
* src/hd-change-background-dialog.c: Use hd_backgrounds_set_image_set
for image sets.
* src/hildon-home.c: Clean hildon-home stamp when hildon-home is
quit on prupose.
2009-11-04 Jan Arne Petersen <[email protected]>
Release 0.3.55
2009-11-04 Jan Arne Petersen <[email protected]>
Fixes: NB#123966 - Already closed notifications are displayed
* configure.ac:
* debian/control: Depend on new libhildondesktop.
* src/hd-incoming-events.c (notifications_new_for_notification,
show_preview_window): Check if notifications were already closed.
* src/test-notifications.py: Update for test.
2009-11-04 Jan Arne Petersen <[email protected]>
Fixes: NB#128853 - list not scrolling to selected item
* src/hd-change-background-dialog.c (scroll_to_selected,
add_image_dialog_response): Scroll to selected item in an idle
handler.
2009-11-04 Jan Arne Petersen <[email protected]>
Fixes: 143078 - Missed call icon in notifications should use phone app
icon
* src/notification-groups.conf: Use general_application_call instead
of general_missed as the missed call icon.
2009-11-04 Jan Arne Petersen <[email protected]>
Fixes: NB#127501 - Task Switcher timestamp not rounded correctly.
* src/hd-time-difference.c:
* src/hd-time-difference.h: Add hd_time_difference_get_text and
hd_time_difference_get_timeout helper functions (with unit tests) to
handle time difference display (and timeout for next update).
* src/Makefile.am: Add src/hd-time-difference.[ch] to SOURCES.
* src/hd-incoming-event-window.c
(hd_incoming_event_window_update_time): Us the new hd_time_difference
2009-11-03 Kimmo Hämäläinen <[email protected]>
Release 0.3.54
* configure.ac: 0.3.54
2009-11-02 Jan Arne Petersen <[email protected]>
Fixes: NB#131297 and NB#142916
* configure.ac:
* debian/control: Depends on new libhildondesktop.
* src/hd-bookmark-shortcut.c: Add fallback for thumbnail when the
thumbnail icon is not available.
* src/hd-bookmark-widgets.c: Use new functions to handle bookmark
shortcut creation and deletion in libhildondesktop.
2009-10-28 Jan Arne Petersen <[email protected]>
Release 0.3.53
2009-10-28 Jan Arne Petersen <[email protected]>
Fixes: NB#144239 - Shortcut of customized application is missing after
device restart
* src/hd-shortcut-widgets.c (hd_shortcut_widgets_load_desktop_file):
Use symoblic constants for icon size.
(hd_shortcut_widgets_is_available):
* src/hd-shortcut-widgets.h (hd_shortcut_widgets_is_available): Add
new function to check if .desktop file was already scanned.
* src/hd-task-shortcut.c (load_icon_from_absolute_path,
load_icon_from_theme, load_default_icon, load_icon_from_icon_name,
hd_task_shortcut_desktop_file_changed_cb, hd_task_shortcut_show,
hd_task_shortcut_class_init): Show shortcut as soon as .desktop file
is changed. Also show icon when icon is not available.
2009-10-13 Kimmo Hämäläinen <[email protected]>
Release 0.3.52
* configure.ac: 0.3.52
2009-10-13 Jan Arne Petersen <[email protected]>
* src/hd-applet-manager.c (hd_applet_manager_setup_column_renderes):
Center the widgets in the Add widget again. Fix regression.
2009-10-13 Jan Arne Petersen <[email protected]>
Fixes: NB#139471 - Hildon-home crash when moving large number of
bookmarks
Fixes: NB#142632 - hildon-home crashes (sefgault) when receiving a
custom notification
* src/hd-bookmark-widgets.c (hd_bookmark_widgets_add_bookmark_item):
Check if bookmark name is NULL and do not crash in that case.
* src/hd-incoming-events.c (notifications_get_category_info): Support
custom notifications without a category set.
* debian/changelog: Update.
2009-10-12 Kimmo Hämäläinen <[email protected]>
Release 0.3.51
* configure.ac: 0.3.51
2009-10-12 Jan Arne Petersen <[email protected]>
Fixes: NB#109885 - First item in any list is selected by default
* src/hd-install-widgets-dialog.c:
* src/hd-install-widgets-dialog.h: Add common dialog for installing
all kind of widgets. Do not select the first item by default.
* src/hd-widgets.c:
* src/hd-widgets.h: Add methods to allow using the new common dialog
for installing.
* src/hd-applet-manager.c:
* src/hd-applet-manager.h:
* src/hd-bookmark-widgets.c:
* src/hd-bookmark-widgets.h:
* src/hd-task-manager.c:
* src/hd-task-manager.h:
* src/hd-task-shortcut.c: Use the new common HDWidgets class to allow
using the common dialog.
* src/hd-hildon-home-dbus.c:
* src/hildon-home.c:
* src/Makefile.am: Required changes.
* debian/changelog: Update.
2009-10-12 Jan Arne Petersen <[email protected]>
Fixes: NB#138509 - Preview notification text has white drop shadow
* src/hd-incoming-event-window.c
(hd_incoming_event_window_class_init): Remove shadows from rc parse
string.
2009-10-11 Jan Arne Petersen <[email protected]>
Fixes: NB#134370 - Icon is not shown for the newly added image in the
'choose background dialog'.
* src/hd-change-background-dialog.c
(hd_change_background_dialog_append_backgrounds,
request_thumbnail_for_uri, hd_change_background_dialog_constructed,
add_image_dialog_response): Add support for thumbnail for newly
added image.
2009-10-09 Jan Arne Petersen <[email protected]>
Release 0.3.50
* configure.ac: 0.3.50
2009-10-09 Jan Arne Petersen <[email protected]>
Fixes: NB#130557 - LED continusly blinks though clear the
notifications from task switcher
* src/hd-incoming-events.c
(_HDIncomingEventsPrivate::task_switcher_shown,
hd_incoming_events_notified,
hd_incoming_events_system_bus_signal_handler,
filter_property_changed): Do not blink when task switcher is shown
and display is on.
* src/home.safe-set.in: Update.
2009-10-09 Kimmo Hämäläinen <[email protected]>
Release 0.3.49
* configure.ac: 0.3.49
2009-10-08 Jan Arne Petersen <[email protected]>
Fixes: NB#130557 - LED continusly blinks though clear the
notifications from task switcher
* src/hd-incoming-events.c (filter_property_changed): Deactivate all
notification related led patterns when task switcher is shown to fix
broken behaviour when hildon-home crashed.
* src/hd-led-pattern.c (hd_led_pattern_deactivate_all):
* src/hd-led-pattern.h: Add function to deactivate all notification
related led patterns.
* debian/changelog: Update.
2009-10-08 Jan Arne Petersen <[email protected]>
Fixes: NB#134569 - Very rarely 'SMS Conversation View' is not opened
immediately from notification preview if it stays in Task Switcher
View for a while
Fixes: NB#126688 - Contact authorization dialog should not be modal
* src/hd-incoming-events.c (notifications_append,
is_notification_sticky, repack_ptr_array, notifications_close_all,
notifications_get_amount, notifications_activate,
switcher_window_response, preview_window_response): Do not use the
defined D-Bus call if notification is in a thread (assigned to a
window). Add "sticky" hint (type bool or uchar) which requires
notification to be closed explicitly.
* debian/changelog: Update.
2009-09-30 Kimmo Hämäläinen <[email protected]>
Release 0.3.48
* configure.ac: 0.3.48
2009-09-28 Jan Arne Petersen <[email protected]>
Fixes memory leaks (NB#127468)
* src/hd-change-background-dialog.c (get_thumbnail_for_theme,
image_set_thumbnail_callback): Add missing gtk_tree_path_free and
g_free.
* src/hd-incoming-events.c (filter_property_changed): Add missing
XFree.
2009-09-28 Kimmo Hämäläinen <[email protected]>
Fix Coverity-found issues.
* src/hd-backgrounds.c (volume_pre_unmount_cb): Check if
gnome_vfs_volume_monitor_get_volume_for_path returns NULL.
* src/hd-hildon-home-dbus.c (hd_hildon_home_dbus_init): Fix D-Bus
connection code to make Coverity happy.
2009-09-16 Kimmo Hämäläinen <[email protected]>
Release 0.3.47
* configure.ac: 0.3.47
2009-09-16 Jan Arne Petersen <[email protected]>
Fixes: NB#134673 - Add link dialog shows bookmarks that are not in
bookmarks
* src/hd-bookmark-manager.c (hd_bookmark_manager_add_bookmark_item,
free_bookmark_item, hd_bookmark_manager_parse_bookmark_files,
hd_bookmark_manager_bookmark_files_changed): Add support for
isDeleted flag. Fixes memory leak.
2009-09-16 Jan Arne Petersen <[email protected]>
Fixes: NB#138801 - Crash : hildon-home-74E6 observed
* src/hd-incoming-events.c (hd_incoming_events_notified): Use
g_signal_connect_object instead of g_signal_connect.
* debian/changelog: Update.
2009-09-08 Kimmo Hämäläinen <[email protected]>
Release 0.3.46
* configure.ac: 0.3.46
2009-09-08 Jan Arne Petersen <[email protected]>
Fixes: NB#133861 - Led blinking for new sms/chat messages is not
stopped when task switcher is opened
* src/hd-incoming-events.c: Use Multi map for unperceived
notifications to fix proper display of led pattern and disable led
pattern as soon as task switcher is opened.
* src/hd-multi-map.c (added):
* src/hd-multi-map.h (added): Add multi map implementation.
* src/hd-led-pattern.c (added):
* src/hd-led-pattern.h (added): Add led pattern class.
* src/Makefile.am: Add new files.
* debian/changelog: Update.
2009-08-28 Kimmo Hämäläinen <[email protected]>
Release 0.3.45
* configure.ac: 0.3.45
2009-08-27 Jan Arne Petersen <[email protected]>
Fixes: NB#135486 - Logical string 'home_ti_select_shortcut' in layout
mode (langauge: finnish)
* src/hd-add-task-dialog.c (hd_add_task_dialog_init):
* src/hd-applet-manager.c (items_configuration_loaded_cb): Use
dgettext instead of gettext so it does not fail when an widget changes
the default textdomain.
* debian/changelog: Update.
2009-08-20 Kimmo Hämäläinen <[email protected]>
Release 0.3.44
* configure.ac: 0.3.44
2009-08-20 Jan Arne Petersen <[email protected]>
Fixes: NB#133876 - Add an icon for each preinstalled panorama image
set to the 'change background' dialog
* configure.ac:
* debian/control: Add hildon-thumbnail dependency.
* src/hd-change-background-dialog.c: Add thumbnails to Change
background dialog.
* debian/changelog: Update.
2009-08-18 Kimmo Hämäläinen <[email protected]>
Release 0.3.43
* configure.ac: 0.3.43
2009-08-18 Jan Arne Petersen <[email protected]>
Fixes: NB#133686 - hildon-home and hildon-sv-notify start in wrong
place
* debian/hildon-home.install:
* debian/hildon-home.xsession:
* debian/hildon-sv-notification-daemon.xsession:
* debian/rules: Install xsession file for starting
hildon-sv-notification-daemon in Xsession.d.
* debian/changelog: Update.
2009-08-18 Jan Arne Petersen <[email protected]>
Fixes: NB#131444 - After restarting device image background is not
preserved.
* src/hd-backgrounds.c (set_theme_idle, hd_backgrounds_startup): Set
current theme on startup.
* debian/changelog: Update.
2009-08-18 Jan Arne Petersen <[email protected]>
Fixes: NB#133437 - Desktop edit mode application menu does not have
theme selector
* debian/control: Add dependecy for location packages.
* src/hd-hildon-home-dbus.c (personalization_clicked_cb,
hd_hildon_home_dbus_init): Add Themes menu item to desktop menu.
* debian/changelog: Update.
2009-08-18 Kimmo Hämäläinen <[email protected]>
Release 0.3.42
* configure.ac: 0.3.42
2009-08-18 Jan Arne Petersen <[email protected]>
Fixes: NB#133096 - Hildon-desktop is reducing use-time when device
sleeps
* src/hd-incoming-event-window.c (PROP_MESSAGE,
hd_incoming_event_window_realize,
hd_incoming_event_window_set_property, display_status_changed,
hd_incoming_event_window_init): Only update the timne when the
display is on.
* src/hd-incoming-events.c (_HDIncomingEventsPrivate::display_on,
DISPLAY_STATUS_CHANGED, LAST_SIGNAL, incoming_events_signals,
hd_incoming_events_class_init,
hd_incoming_events_system_bus_signal_handler,
hd_incoming_events_init, hd_incoming_events_get,
hd_incoming_events_get_display_on):
* src/hd-incoming-events.h: Listen to
MCE for display status and emits a signal to incoming event windows on
display status change.
* src/Makefile.am:
* src/test-incoming-event.c (deleted): Remove test application.
* debian/changelog: Update.
2009-08-13 Kimmo Hämäläinen <[email protected]>
Release 0.3.41
* configure.ac: 0.3.41
2009-08-13 Jan Arne Petersen <[email protected]>
* src/hd-sv-notification-daemon.c (mlock_process): Disable mlock.
2009-08-13 Jan Arne Petersen <[email protected]>
Fixes: NB#132855 - Hildon-home process is waking up needlessly while
device is sleeping
* .empty:
* Makefile.am:
* debian/hildon-home.install: Install an empty file into
/usr/share/applications/hildon-notification to create the directory
and remove polling.
* debian/changelog: Update.
2009-08-07 Kimmo Hämäläinen <[email protected]>
Release 0.3.40
* configure.ac: 0.3.40
2009-08-06 Jan Arne Petersen <[email protected]>
Fixes: NB#127303 - Very late or almost unsuccessful ringtone/vibra
playback on loaded system
* com.nokia.HildonSVNotificationDaemon.service.in:
* configure.ac:
* Makefile.am:
* src/Makefile.am:
* src/hd-sv-notification-daemon.xml:
* src/hd-sv-notification-daemon.c:
* src/hd-sv-notification-daemon.h: Add new mlocked daemon for the
sound/vibra plugin.
* debian/hildon-home.install:
* debian/hildon-home.xsession:
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS):
* src/hd-incoming-events.c: Use new daemon to play sound/vibra.
* debian/changelog: Update.
2009-07-30 Kimmo Hämäläinen <[email protected]>
Released 0.3.39
* configure.ac: 0.3.39
2009-07-29 Jan Arne Petersen <[email protected]>
Fixes: NB#130489 - moving Hildon-Home start forward
* debian/rules: use 18 instead of 20 for hildon-home session start
script priority.
2009-07-28 Jan Arne Petersen <[email protected]>
Fixes: NB#124888 - Notifications are shown on a locked device
* src/hd-incoming-events.c (_HDIncomingEventsPrivate::device_locked):
Add device locked field.
(show_preview_window): Do not show preview windows when device is
locked.
(hd_incoming_events_system_bus_signal_handler,
devlock_mode_get_notify, hd_incoming_events_init): Listen to mce for
device locking/unlocking.
2009-07-27 Jan Arne Petersen <[email protected]>
Fixes: NB#129876 - App shortcuts on the Desktop not according to
latest spec
* src/hd-task-shortcut.c: Remove label. Add background image. Fix
leaked pixbuf.
2009-07-17 Kimmo Hämäläinen <[email protected]>
* src/hd-notification-manager.c
(hd_notification_manager_setup_interface): New function to set up the
D-Bus proxy.
(hd_notification_manager_init): Connect to the system bus as well and
provide the interface there also.
2009-07-07 Aapo Kojo <[email protected]>
Released 0.3.38
* configure.ac: 0.3.38
2009-07-02 Jan Arne Petersen <[email protected]>
Fixes: NB#123987 - Fix plural localization of notification time
* src/hd-incoming-event-window.c
(hd_incoming_event_window_update_time): Use ngettext for plural
translations.
* src/test-notifications.py (emit_notification): update test.
* debian/changelog: Update.
2009-07-01 Aapo Kojo <[email protected]>
Released 0.3.37
* configure.ac: 0.3.37
2009-06-30 Jan Arne Petersen <[email protected]>
* src/hd-notification-manager.c (hd_notification_manager_load_row,
hd_notification_manager_db_load, hd_notification_manager_db_exec,
hd_notification_manager_db_create): Fix wrong g_free of sqlite3
errors. FIx crashes.
2009-06-30 Jan Arne Petersen <[email protected]>
Fixes: NB#122957 - There is warning message in console when engine
cannot load bookmark file
* src/hd-bookmark-manager.c
(hd_bookmark_manager_monitor_bookmark_files): Do not use operator
bookmark file.
* debian/changelog: Update.
2009-06-29 Aapo Kojo <[email protected]>
Released 0.3.36
* configure.ac: 0.3.36
2009-06-29 Jan Arne Petersen <[email protected]>
Fixes: NB#110233 - Possible memory leak in hildon-home
* src/hd-incoming-event-window.c (hd_incoming_event_window_finalize):
Fix leaking prov->destination.
* src/hd-notification-manager.c (hd_notification_manager_db_prepare):
Fix leaking sqlite prepared statements. Really reuse them.
(hd_notification_manager_notify): Fix leaking actions_copy.
* debian/changelog: Update.
2009-06-29 Jan Arne Petersen <[email protected]>
Fixes for update of libhildondesktop regarding NB#123171 and
NB#123195.
* src/hd-activate-views-dialog.c (hd_activate_views_dialog_init): Put
in the container.
* src/hd-applet-manager.c (plugin_module_added_cb,
plugin_module_removed_cb): Fix module adding/removing.
* debian/changelog: Update.
2009-06-22 Kimmo Hämäläinen <[email protected]>
Released 0.3.35
* configure.ac: 0.3.35
2009-06-17 Jan Arne Petersen <[email protected]>
Fixes: NB#120369 - theme is not applied in layoutmode after flash
* src/hd-hildon-home-dbus.c: Create menu when intialized instead of
when it is first shown, so it gets notified about theme changes.
2009-06-15 Kimmo Hämäläinen <[email protected]>
Released 0.3.34
* configure.ac: 0.3.34
2009-06-15 Jan Arne Petersen <[email protected]>
Fixes: NB#120367 - hildon-home-76CD-11 crash observed while in layout
mode
Fixes: NB#120884 - Dialog for changing wallpaper too high
Fixes: NB#110192 - Background Image update 'Stop' button does not work
Fixes: NB#120626 - Number of notifications is not coming in task
switcher
Fixes: NB#121964 - Not able to add mediaplayer shortcut in anyother
homeview except in second
Fixes: NB#121635 - Predefined application shortcuts not added to
correct Home view
* src/hd-backgrounds.c (ASPECT_RATIO, CACHED_DIR,
BACKGROUND_CACHED_PVR, BACKGROUND_CACHED_PNG, change_request_cb,
cb_data, background_data_free, pending_requests, size_prepared_cb,
create_cached_image, hd_backgrounds_set_background):
* src/hd-backgrounds.h (parent_class):
* src/hd-change-background-dialog.c
(hd_change_background_dialog_append_backgrounds,
add_image_dialog_response, background_set_cb,
hd_change_background_dialog_response,
hd_change_background_dialog_init): Fix dialog height. Fix progress
indicator. Implement scaling wrongly sized images according to the
layout guide. Store cached backgrounds with .png extension to fix
warning in hildon-desktop.
* src/hd-incoming-event-window.c
(hd_incoming_event_window_update_title_and_amount,
hd_incoming_event_window_get_property,
hd_incoming_event_window_set_property,
hd_incoming_event_window_class_init, hd_incoming_event_window_new):
Also set _HILDON_INCOMING_EVENT_NOTIFICATION_AMOUNT if there is only
one notification.
* src/hd-incoming-events.c (notifications_update_window):
* src/hd-notification-manager.c (idle_emit,
hd_notification_manager_notify): Fix crash.
* src/hd-task-manager.c (TASK_SHORTCUT_VIEW_GCONF_KEY,
TASK_SHORTCUT_POSITION_GCONF_KEY, hd_task_manager_install_task):
Reset view and position before explicitly adding a shortcut.
* debian/changelog: Update.
2009-06-15 Kimmo Hämäläinen <[email protected]>
Released 0.3.33
* configure.ac: 0.3.33
2009-06-11 Kimmo Hämäläinen <[email protected]>
* src/hd-hildon-home-dbus.c
(hd_hildon_home_system_bus_signal_handler): New function to catch
D-Bus signals on the system bus. Exit hildon-home in case of