forked from AyatanaIndicators/ayatana-indicator-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
9941 lines (5535 loc) · 270 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
2020-07-29 18:19:16 +0200 Mike Gabriel
* release 0.4.1 (HEAD -> master, tag: 0.4.1)
2020-07-26 19:01:02 +0200 Robert Tari (e7f2629)
* Fix calendar going into update loop
2020-07-24 12:05:24 +0200 Mike Gabriel (d754849)
* CMakeLists.txt: Drop workaround for missing libexec dir on Debian.
Debian moved forward and now supports FHS 3.0 (since
Debian Policy 4.1.5).
2020-07-24 11:47:55 +0200 Mike Gabriel (068e34a)
* src/engine-eds.cpp: Typo fix in g_debug output.
2020-07-24 10:28:09 +0200 Mike Gabriel (5930dc4)
* debian/changelog: Don't use my debian.org address.
2020-07-24 10:26:31 +0200 Mike Gabriel (5204262)
* release 0.4.0 (tag: 0.4.0)
2020-07-18 22:02:22 +0000 Mike Gabriel (027b23a)
* src/myself.cpp: Fix include of <libaccounts-glib/accounts-glib.h>.
2020-07-18 22:01:58 +0000 Mike Gabriel (330575e)
* debian/rules: Disable unit tests at build time. They need a lot of
love before they can be reactivated again.
2020-07-18 22:01:30 +0000 Mike Gabriel (1efa025)
* debian/control: Adapt B-Ds: Add libaccounts-glib-dev (>= 1.18),
switch from libecal1.2-dev to libecal2.0-dev (>= 3.16).
2020-07-18 16:58:51 +0200 Mike Gabriel (aea9abe)
* Merge branch 'tari01-master'
2020-07-11 00:11:05 +0200 Robert Tari (b917e4c)
* -Made GCC 10.1.0 friendly -Fixed to work with ECal 2.0 -Added
libaccounts-glib dependency -Added mate-time-admin handler
2020-07-03 22:56:18 +0000 Tobias p (6eac66d)
* Translated using Weblate (Danish)
2020-06-14 04:52:36 +0000 MarongHappy (f601369)
* Translated using Weblate (Korean)
2020-05-30 22:55:44 +0000 Juraj Liso (120ef47)
* Translated using Weblate (Slovak)
2020-05-25 01:05:22 +0000 wdggg (b4c296e)
* Translated using Weblate (Chinese (Simplified))
2020-05-21 00:26:30 +0000 wdggg (ca7a67a)
* Translated using Weblate (Chinese (Simplified))
2020-05-09 09:55:50 +0000 iNetRoos (caed71b)
* Translated using Weblate (Afrikaans)
2020-05-08 06:10:48 +0000 Abdusalam (a0f2aed)
* Translated using Weblate (Uyghur)
2020-04-28 11:16:11 +0000 nugullpunch (8d5d981)
* Translated using Weblate (Korean)
2020-04-27 10:15:06 +0000 Jeannette L (4a8e20e)
* Translated using Weblate (French (Canada))
2020-04-27 09:27:34 +0000 Jeannette L (52c0762)
* Translated using Weblate (English (United Kingdom))
2020-04-27 09:32:21 +0000 Jeannette L (cc5abeb)
* Translated using Weblate (English (Canada))
2020-04-27 09:37:58 +0000 Jeannette L (c9623c3)
* Translated using Weblate (English (Australia))
2020-04-27 09:56:56 +0000 Jeannette L (c26d93d)
* Translated using Weblate (Italian)
2020-04-27 09:36:42 +0000 Jeannette L (0366ad1)
* Translated using Weblate (French)
2020-04-24 14:29:52 +0000 gökhan barış göbet (2658aa8)
* Translated using Weblate (Turkish)
2020-04-19 21:18:32 +0000 HuNteR GaMinG (31dc9b1)
* Translated using Weblate (Malagasy)
2020-04-19 00:42:46 +0000 Tommy Cheng (3a1d86f)
* Translated using Weblate (Chinese (Traditional))
2020-04-15 16:56:01 +0000 Martin Šikuda (4021804)
* Translated using Weblate (Czech)
2020-04-13 11:29:36 +0000 geni (66cbfce)
* Translated using Weblate (Bulgarian)
2020-04-04 05:50:30 +0000 Kristjan Räts (071f353)
* Translated using Weblate (Estonian)
2020-04-01 20:27:23 +0000 Davit Mayilyan (347767e)
* Translated using Weblate (Armenian)
2020-04-01 01:17:55 +0000 Johntini (f5b91a1)
* Translated using Weblate (Spanish)
2020-03-16 05:16:32 +0000 Grace Guo (40a4952)
* Translated using Weblate (Japanese)
2020-03-05 11:00:39 +0000 Zdeněk Klauda (7c4bf6c)
* Translated using Weblate (Czech)
2020-02-25 16:38:53 +0000 Wellington Terumi Uemura (6ff6c6a)
* Translated using Weblate (Portuguese (Brazil))
2020-02-06 13:59:50 +0000 Laércio Cordeiro (8ce6e33)
* Translated using Weblate (Portuguese (Brazil))
2020-01-28 06:20:12 +0000 MoccoCoffee (710716b)
* Translated using Weblate (Belarusian)
2020-01-15 13:01:23 +0000 Heimen Stoffels (49b15ad)
* Translated using Weblate (Dutch)
2020-01-02 22:39:58 +0000 Milo Ivir (b8a15a0)
* Translated using Weblate (Croatian)
2019-12-24 07:24:12 +0000 Henrik Dankvardt (11b2683)
* Translated using Weblate (Danish)
2019-12-03 20:59:50 +0000 SapuSeven (ea486b0)
* Translated using Weblate (German)
2019-10-29 15:20:00 +0000 Danjela Hoxha (7a7348b)
* Translated using Weblate (Albanian)
2019-10-21 23:23:59 +0000 Tiago Silva Miguel (176eed0)
* Translated using Weblate (Portuguese (Brazil))
2019-10-18 13:40:51 +0000 Uddin Mtm (593d991)
* Translated using Weblate (Indonesian)
2019-10-16 19:46:34 +0000 Kyrylo Yanukovych (ecef5fb)
* Translated using Weblate (Russian)
2019-10-15 11:19:27 +0000 giorgio.saragnese (72a09f0)
* Translated using Weblate (Italian)
2019-10-09 14:36:20 +0000 OrionJK - (32fbd1f)
* Translated using Weblate (Russian)
2019-10-07 16:51:52 +0000 Mateusz Rumiński (ebdaa52)
* Translated using Weblate (Polish)
2019-09-08 17:51:38 +0000 ssantos (3f5e947)
* Translated using Weblate (Portuguese)
2019-09-02 19:42:12 +0000 Swann Martinet (5cf512a)
* Translated using Weblate (French)
2019-09-01 15:19:55 +0000 Moo (f4aba8f)
* Translated using Weblate (Lithuanian)
2019-08-29 10:12:39 +0000 Anders Jonsson (42d0869)
* Translated using Weblate (Swedish)
2019-08-28 19:00:41 +0000 Heimen Stoffels (3433569)
* Translated using Weblate (Dutch)
2019-08-28 20:26:45 +0200 Mike Gabriel (e8cf1b5)
* update locale files
2019-08-28 11:10:29 +0200 Mike Gabriel (60d54c8)
* Merge branch 'leela52452-master'
2019-08-25 04:13:04 +0000 leela (2898acd)
* Translated using Weblate (Telugu)
2019-08-25 04:13:04 +0000 leela (8c8686c)
* Translated using Weblate (Telugu)
2019-08-25 05:25:38 +0000 leela (9b572cf)
* indicates an interrogative clause or phrase..
2019-08-23 00:05:56 +0000 Swann Martinet (fba654c)
* Translated using Weblate (French)
2019-08-10 09:23:04 +0000 M Ramani Priya (0929e3d)
* Translated using Weblate (Telugu)
2019-07-28 04:14:56 +0000 Marco Scaglioni (c7686e1)
* Translated using Weblate (Italian)
2019-07-26 17:39:04 +0000 sock-et (cec2206)
* Translated using Weblate (Italian)
2019-07-01 19:54:03 +0000 Elizabeth Sherrock (a1b64ec)
* Translated using Weblate (Chinese (Simplified))
2019-05-21 12:37:58 +0000 THANOS SIOURDAKIS (ee6278c)
* Translated using Weblate (Greek)
2019-05-18 14:36:05 +0000 THANOS SIOURDAKIS (b9a5f68)
* Translated using Weblate (Greek)
2019-05-15 14:56:21 +0000 Артем (0b78088)
* Translated using Weblate (Russian)
2019-05-05 09:33:48 +0000 ssantos (6f53bbb)
* Translated using Weblate (Portuguese)
2019-04-17 15:27:05 +0000 Rui Mendes (f0667ce)
* Translated using Weblate (Portuguese)
2019-02-19 15:01:29 +0000 thebylito (da04048)
* Translated using Weblate (Portuguese)
2018-11-25 17:46:05 +0000 ssantos (8554e07)
* Translated using Weblate (German)
2018-10-23 13:26:53 +0000 Iván Seoane (977a367)
* Translated using Weblate (Galician)
2018-10-15 09:43:59 +0000 ButterflyOfFire (a2da27a)
* Translated using Weblate (Czech)
2018-10-03 10:29:31 +0000 Володимир Бриняк (5bb8aaf)
* Translated using Weblate (Ukrainian)
2018-09-29 15:29:25 +0000 Володимир Бриняк (b12ef86)
* Translated using Weblate (Ukrainian)
2018-09-27 19:32:22 +0000 Володимир Бриняк (87ff58c)
* Translated using Weblate (Ukrainian)
2018-09-01 13:18:16 +0000 account1 (168f380)
* Translated using Weblate (German)
2018-08-24 18:07:08 +0000 WaldiS (67967bb)
* Translated using Weblate (Polish)
2018-08-23 16:52:29 +0000 WaldiS (c32a25c)
* Translated using Weblate (Polish)
2018-07-29 01:46:45 +0000 chrismeurer (f1973ad)
* Translated using Weblate (Portuguese (Brazil))
2018-07-22 14:24:56 +0000 Eugen Wesseloh (acbbdf9)
* Translated using Weblate (Russian)
2018-07-01 13:39:23 +0000 Doma Gergő (b549266)
* Translated using Weblate (Hungarian)
2018-06-22 15:53:01 +0000 Lejo (84a0f2d)
* Translated using Weblate (German)
2018-06-20 14:06:32 +0000 Lejo (a4b1401)
* Translated using Weblate (German)
2018-06-18 19:15:41 +0000 nimradium (5c7d9f1)
* Translated using Weblate (German)
2018-06-18 08:36:01 +0000 Doma Gergő (8c18fe9)
* Translated using Weblate (Hungarian)
2018-06-17 08:44:11 +0000 advocatux (a4d1ccf)
* Translated using Weblate (Spanish)
2018-06-10 15:30:19 +0000 Eduardo Addad de Oliveira (974e978)
* Translated using Weblate (Portuguese (Brazil))
2018-05-31 14:11:08 +0000 Zhaoyu Gan (704f227)
* Translated using Weblate (Chinese (Simplified))
2018-05-08 12:32:02 +0000 Heimen Stoffels (c67c15c)
* Translated using Weblate (Dutch)
2018-05-02 23:41:29 +0000 Karol Kosek (a9c769d)
* Translated using Weblate (Polish)
2018-04-04 04:40:58 +0000 Pavel Borecki (0c2a098)
* Translated using Weblate (Czech)
2018-04-04 09:42:47 +0000 Moo (01057bc)
* Translated using Weblate (Lithuanian)
2018-04-04 04:40:51 +0000 Pavel Borecki (d0b6e5b)
* Translated using Weblate (Czech)
2018-04-04 04:33:19 +0000 Pavel Borecki (bbf8916)
* Translated using Weblate (Czech)
2018-04-02 21:35:06 +0000 Moo (2d1a40b)
* Translated using Weblate (Lithuanian)
2018-03-29 22:42:27 +0000 Anders Jonsson (1907d39)
* Translated using Weblate (Swedish)
2018-03-29 22:40:05 +0000 Anders Jonsson (5b439db)
* Translated using Weblate (Swedish)
2018-03-27 19:46:54 +0000 Moo (f74f744)
* Translated using Weblate (Lithuanian)
2018-03-18 19:13:02 +0000 Allan Nordhøy (6e6983b)
* Translated using Weblate (Norwegian Bokmål)
2018-03-10 23:45:12 +0000 Moo (0fea287)
* Translated using Weblate (Lithuanian)
2018-03-04 21:26:03 +0000 Moo (06740d3)
* Translated using Weblate (Lithuanian)
2018-03-03 19:23:09 +0000 karel van dongen (f61ff67)
* Translated using Weblate (Dutch)
2018-02-28 22:28:11 +0000 Moo (2e0ee47)
* Translated using Weblate (Lithuanian)
2018-02-28 02:11:50 +0000 Мира Странная (d6dd8f6)
* Translated using Weblate (Russian)
2018-02-20 15:39:13 +0000 Andreas Kleinert (ae29777)
* Translated using Weblate (German)
2018-02-20 12:11:46 +0000 Veselin Georgiev (a861200)
* Translated using Weblate (Bulgarian)
2018-02-08 11:49:09 +0000 Mertcan Gokgoz (f96c701)
* Translated using Weblate (Turkish)
2018-02-03 08:59:39 +0000 Cristian Gherman (de66d78)
* Translated using Weblate (Romanian)
2018-01-30 21:15:15 +0000 Марс Ямбар (14137b6)
* Translated using Weblate (Ukrainian)
2018-01-22 22:08:51 +0000 Марс Ямбар (d5d1ae8)
* Translated using Weblate (Ukrainian)
2018-01-01 00:25:38 +0000 Anders Jonsson (5019cf9)
* Translated using Weblate (Swedish)
2017-12-18 03:56:06 +0000 Allan Nordhøy (929bcdd)
* Translated using Weblate (Norwegian Bokmål)
2018-01-04 09:51:10 +0000 Yaron Shahrabani (0155004)
* Translated using Weblate (Hebrew)
2018-01-06 09:50:42 +0000 Kristjan Räts (02d2872)
* Translated using Weblate (Estonian)
2017-12-31 15:11:31 +0000 Sebastian Rasmussen (26c5ce4)
* Translated using Weblate (Swedish)
2017-12-27 20:14:55 +0000 Viktar Vauchkevich (ae3e8d8)
* Translated using Weblate (Belarusian)
2017-12-12 05:04:21 +0000 Naveen Rajan (b20c1ef)
* Translated using Weblate (Tamil)
2017-12-12 00:05:15 +0000 Allan Nordhøy (5c5db51)
* Translated using Weblate (Norwegian Bokmål)
2017-12-07 03:50:03 +0000 Allan Nordhøy (6426d34)
* Translated using Weblate (Norwegian Bokmål)
2017-12-06 21:09:51 +0000 Viktar Vauchkevich (bd544d2)
* Translated using Weblate (Belarusian)
2017-12-06 05:08:44 +0000 Allan Nordhøy (2ccd683)
* Translated using Weblate (Norwegian Bokmål)
2017-11-30 16:07:10 +0000 Olivier Macchioni (ea69822)
* Translated using Weblate (French)
2018-03-28 10:36:02 +0000 Mike Gabriel (929c53a)
* URL dispatcher on non-Ubuntu: Fake it as best as possible, so that
the unit tests are happy and succeed.
2018-03-28 10:35:25 +0000 Mike Gabriel (3b05bdd)
* debian/control: Bump Standards-Version to 4.1.3. No changes needed.
2018-03-28 10:05:57 +0000 Mike Gabriel (cc17de2)
* tests/CMakeLists.txt: EDS tests are not limited to URL dispatcher
builds, so re-enabling them on non-Ubuntu.
2018-03-28 10:05:11 +0000 Mike Gabriel (448c99d)
* tests/CMakeLists.txt: Only build manual-test-snap on Ubuntu.
2016-01-29 09:49:40 -0600 Charles Kerr (cc4821a)
* sync unit tests with calendar, locations being visible in phone
profile
2018-03-26 21:26:35 +0000 Lukáš Tinkl (c41db25)
* add the locations specifically for Phone and Desktop only (w/o
greeter profiles)
2018-03-26 16:29:11 +0200 Charles Kerr (480e93c)
* phone<-->desktop convergence
2018-03-26 16:26:09 +0200 Charles Kerr (2e14b67)
* honor gsettings for calendar events
2018-03-26 16:13:36 +0200 Charles Kerr (c8ec131)
* add ubuntu-touch-sounds to Build-Depends for unit tests on phone
notification sounds
2018-03-26 16:07:14 +0200 Charles Kerr (d423c4a)
* use @FOO@ intead of ${FOO} for variable substitution when
configuring files
2015-10-13 10:47:33 -0500 Charles Kerr (a1d3f81)
* add a ualarm to test-snap.cpp
2018-03-26 16:02:55 +0200 Charles Kerr (6345c7e)
* use a different default sound for calendars than for alarms
2018-03-26 16:01:00 +0200 Charles Kerr (b5c758c)
* add calendar-default-sound to the gsettings schema
2018-03-26 21:07:08 +0000 Mike Gabriel (d035993)
* Revert "cmake/UseGSettings.cmake: Drop file. Available via
cmake-extras."
2018-03-26 15:58:52 +0200 Charles Kerr (eec442b)
* generate .gschema.xml.in to include cmake constants e.g.
alarm_default_sound
2018-03-26 15:55:46 +0200 Charles Kerr (b72e441)
* use cmake's configure_file() to generate the test .ics files from
.ics.in so that we don't have to hardcode the filenames in
the test data files either
2018-03-26 15:55:38 +0200 Charles Kerr (222c9e4)
* add a CALENDAR_DEFAULT_SOUND constant to CMakeLists.txt
2015-10-13 09:40:02 -0500 Charles Kerr (31e6de7)
* use the new ALARM_DEFAULT_SOUND symbolic in the src and test cpp
files
2018-03-26 15:43:40 +0200 Charles Kerr (5f6a911)
* add ALARM_DEFAULT_SOUND symbolic so that we can start removing all
the hardcoded instances of this string
2015-09-21 15:11:24 +0200 Richard Somlói (947e9fd)
* Fixed the comment for translators
2018-03-26 21:01:09 +0000 Andrea Azzarone (25371d2)
* As we removed a day we need to edit the test too.
2018-03-26 21:00:25 +0000 Andrea Azzarone (f308f59)
* 31-jun is not a real day.
2018-03-26 15:42:29 +0200 Mike Gabriel (8fe1122)
* tests/CMakeLists.txt: Fix linking when built with URL dispatcher
support.
2018-03-26 15:42:01 +0200 Mike Gabriel (c13a4d0)
* Define compile macro HAVE_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS, if
we are on Ubuntu.
2018-03-26 19:55:23 +0000 Mike Gabriel (b39526c)
* URL dispatcher support: Build phone code, even if URL dispatcher is
unavailable.
2018-03-26 10:33:36 +0200 Mike Gabriel (8dbc66c)
* Revert "src/timezone-geoclue.cpp: Blind shot at switching to
Geoclue2 DBus API."
2018-03-26 10:33:34 +0200 Mike Gabriel (b16069d)
* Revert "Geoclue -> Geoclue2 blind shot. More namespace changes."
2018-03-16 20:51:44 +0000 Mike Gabriel (67a3944)
* Geoclue -> Geoclue2 blind shot. More namespace changes.
2018-03-16 20:12:30 +0000 Mike Gabriel (3ee53b7)
* data/: Various path and namespace fixes (leftovers of Ubuntu
Indicators -> Ayatana Indicators fork).
2017-12-08 19:48:20 +0000 Mike Gabriel (da8cf48)
* src/timezone-geoclue.cpp: Blind shot at switching to Geoclue2 DBus
API.
2017-12-08 18:43:05 +0000 Mike Gabriel (111c622)
* data/ayatana-indicator-datetime.service.in: Fix copy+paste flaws.
2017-12-08 15:40:16 +0100 Mike Gabriel (0fec0d8)
* debian/control: Add B-D systemd [linux-any] and bin:pkg D on
ayatana-indicator-common.
2017-12-08 15:39:52 +0100 Mike Gabriel (ee09fe7)
* systemd integration: Add systemd user service file and upstart
override.
2017-12-08 15:35:32 +0100 Mike Gabriel (699c381)
* data/ayatana-indicator-datetime.desktop.in: Drop GNOME from
OnlyShowIn= key, add XFCE instead.
2017-12-08 15:22:54 +0100 Mike Gabriel (9a5b4b3)
* include/datetime/snap.h: Don't guard snap.h by
HAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS macro. It is only
used by tests/test-snap.cpp and that one is only compiled
and executed if HAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS is
defined.
2017-12-08 14:54:08 +0100 Mike Gabriel (e809a81)
* src/snap.cpp: Forgotten namespace change
unity::indicator::notifications ->
ayatana::indicator::notifications.
2017-12-08 14:46:03 +0100 Mike Gabriel (95571b0)
* tests/manual: white-space fix
2017-12-08 14:45:35 +0100 Mike Gabriel (750b36c)
* Fix executable/project name (indicator-datetime ->
ayatana-indicator-datetime) at various locations.
2017-12-08 14:42:32 +0100 Mike Gabriel (5658f73)
* debian/watch: Use correct upstream URL.
2017-12-08 14:38:34 +0100 Mike Gabriel (88f078e)
* src/CMakeLists.txt: Use correct variable (URLDISPATCH_LIBS ->
URLDISPATCHER_LIBRARIES).
2017-12-08 14:38:01 +0100 Mike Gabriel (401510a)
* include/datetime/snap.h: Fix macro name
(HAVE_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS ->
HAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS).
2017-12-08 14:37:36 +0100 Mike Gabriel (0519a8d)
* data/org.ayatana.indicator.datetime: Fix Name= key
(indicator-datetime -> ayatana-indicator-datetime).
2017-12-08 14:16:10 +0100 Mike Gabriel (e4eeef5)
* tests/CMakeLists.txt: Also update DG_LOG_DOMAIN namespace in test
suite.
2017-12-08 14:14:09 +0100 Mike Gabriel (040092b)
* debian/control: Fix dependency; we need
accountsservice-ubuntu-schemas on Ubuntu, not
gsettings-ubuntu-schemas.
2017-12-08 14:10:03 +0100 Mike Gabriel (6a0950b)
* debian/control: Tweak bin:pkg dependencies, improve SYNOPSIS and
LONG_DESCRIPTION.
2017-12-08 14:01:30 +0100 Mike Gabriel (6ecf3c4)
* debian/control: Add B-D: on Ubuntu pull in gsettings-ubuntu-schemas
at build-time.
2017-12-08 13:58:15 +0100 Mike Gabriel (3affaee)
* src/CMakeLists.txt: Add ${URLDISPATCH_LIBS} to
target_link_libraries() call.
2017-12-08 13:53:51 +0100 Mike Gabriel (c9f0217)
* src/CMakeLists.txt: Set DG_LOG_DOMAIN to
ayatana-indicator-datetime.
2017-12-08 13:53:16 +0100 Mike Gabriel (d5826b8)
* src/CMakeLists.txt: Fix name (namespace-wise) of service
executable.
2017-12-08 13:50:34 +0100 Mike Gabriel (4855696)
* include/datetime/settings-shared.h: Namespace fix for
SETTINGS_INTERFACE macro.
2017-12-08 13:48:01 +0100 Mike Gabriel (d671e82)
* README.md: Use more itemizations.
2017-12-08 13:44:54 +0100 Mike Gabriel (835940b)
* README.md: More manual line breaks.
2017-12-08 13:43:51 +0100 Mike Gabriel (ed218ba)
* README.md: Layout improvements.
2017-12-08 13:41:39 +0100 Mike Gabriel (b795051)
* README.md: Add some manual line breaks.
2017-12-08 13:38:50 +0100 Mike Gabriel (dabd7c8)
* README(.md): Ship README.md, symlinked from README -> README.md.
2017-12-08 13:36:57 +0100 Mike Gabriel (436caef)
* README: Some namespace fixes. Prepare for being a markdown
document.
2017-12-08 13:28:42 +0100 Mike Gabriel (deccc82)
* Drop .bzrignore file.
2017-12-08 13:28:34 +0100 Mike Gabriel (74863f0)
* debian/control: Add B-D: intltool.
2017-12-08 13:26:52 +0100 Mike Gabriel (3eb2ae4)
* Use GSettings cmake module from cmake-extras.
2017-12-08 13:26:17 +0100 Mike Gabriel (438baee)
* include/datetime/dbus-shared.h: Fix namespace of BUS_DATETIME_*.
2017-12-08 13:06:06 +0100 Mike Gabriel (0846900)
* cmake/UseGSettings.cmake: Drop file. Available via cmake-extras.
2017-12-08 13:04:41 +0100 Mike Gabriel (95ab717)
* data/: Fix file namespaces for XDG and upstart files.
2017-12-08 12:50:46 +0100 Mike Gabriel (554e86b)
* debian/control: Add B-D: cmake-extras (>= 0.10).
2017-12-08 11:42:40 +0000 Mike Gabriel (e3dada2)
* tests/test-formatter.cpp: Fix locale setting and ignore failures if
the build system does not have en_US.UTF-8 as valid locale
available.
2017-12-08 11:42:05 +0000 Mike Gabriel (4d4434f)
* tests/run-eds-ics-test.sh: Make sure the folder for the tasks.isc
file exists before copying it there.
2017-12-08 10:41:36 +0000 Mike Gabriel (5220b87)
* rebase C++ namespace
2017-12-08 10:41:23 +0000 Mike Gabriel (e88a51c)
* Indicator namespace adaptations.
2017-12-08 10:40:44 +0000 Mike Gabriel (f545059)
* Make the datetime indicator build on non-Ubuntu systems (which
mostly lack url-dispatcher and Ubuntu Touch sound schema
files.
2017-12-08 10:37:30 +0000 Mike Gabriel (4a6ec71)
* Many more C++ namespace name changes (unity -> ayatana).
2017-12-06 11:49:22 +0100 Mike Gabriel (755e153)
* Rename GNOMELOCALEDIR -> LOCALEDIR.
2017-12-06 11:47:41 +0100 Mike Gabriel (76f869c)
* CMakeLists.txt: Set correct PROJECT_VERSION.
2017-12-06 11:47:09 +0100 Mike Gabriel (8bb39fe)
* CMakeLists.txt: Move gettext initialization below the
GNUInstallDirs include. This fixes broken i18n support.
2017-12-02 23:37:16 +0100 Mike Gabriel (60e71c1)
* debian/control: Fix D (glib2.0-bin -> libglib2.0-bin).
2017-11-29 13:44:40 +0100 Mike Gabriel (ddac676)
* po/*.po: Update translation files once more.
2017-11-29 13:14:26 +0100 Mike Gabriel (4c3f2f5)
* update-po.sh: Preserve .pot file when updating *.po files.
2017-11-27 17:35:00 +0000 Kristjan Räts (4817043)
* Translated using Weblate (Estonian)
2017-11-26 15:02:38 +0000 Kristjan Räts (6117e38)
* Translated using Weblate (Estonian)
2017-11-18 12:54:51 +0000 Kristjan Räts (ee9e223)
* Translated using Weblate (Estonian)
2017-11-05 10:22:42 +0000 Kristjan Räts (a4d4d99)
* Translated using Weblate (Estonian)
2017-10-12 17:29:14 +0000 Andrew Shadura (7c4fc84)
* Translated using Weblate (Slovak)
2017-11-29 12:26:50 +0100 Mike Gabriel (5185621)
* po/ayatana-indicator-datetime.pot: Update with now correct file
names for .xml files.
2017-11-29 12:26:14 +0100 Mike Gabriel (c597efc)
* update-pot.sh: Fix filenames of .ini(.in) and .xml(.in) files in po
template file.
2017-10-24 21:12:06 +0200 Mike Gabriel (81e6675)
* update-po*.sh: Add license header.
2017-10-12 07:44:25 +0200 Mike Gabriel (f41bb7d)
* update-po(|t).sh: Add gettext update scripts.
2017-10-12 07:38:31 +0200 Mike Gabriel (8a1c505)
* po/*.po: Add .pot file, add many not-yet-translated .po files.
Update LINGUAS file.
2017-10-12 07:37:49 +0200 Mike Gabriel (f2faa82)
* CMakeLists.txt: Set GETTEXT_DOMAIN to ayatana-indicator-datetime.
2017-10-12 07:37:17 +0200 Mike Gabriel (9e6b8de)
* update-po.sh
2017-05-17 10:35:49 +0200 Mike Gabriel (4afa2b5)
* Fork ayatana-indicator-datetime from Ubuntu's indicator-datetime.
2015-10-13 13:44:25 -0500 Charles Kerr (cab972e)
* bump the version to 15.10 to match the branch
2015-10-05 18:18:01 +0000 CI Train Bot (9ef9bb6)
* Releasing 13.10.0+15.10.20151005-0ubuntu1 (tag:
13.10.0+15.10.20151005-0ubuntu1)
2015-10-05 18:17:59 +0000 Charles Kerr (5cdf435)
* Change the default alarm sound from "Suru arpeggio.ogg" to "Alarm
clock.ogg" Fixes: #1489037 Approved by: PS Jenkins bot,
Pete Woods
2015-10-05 13:06:35 -0500 Charles Kerr (55ec6e5)
* sync with trunk
2015-09-09 16:40:52 +0000 CI Train Bot (3f3445a)
* Releasing 13.10.0+15.10.20150909-0ubuntu1 (tag:
13.10.0+15.10.20150909-0ubuntu1)
2015-09-09 16:40:49 +0000 Sebastien Bacher (3c40d73)
* under unity8 start system-settings instead unity-control-center,
don't special case u-c-c by looking for the binary, Unity
installations come with it installed Fixes: #1489481
Approved by: Ted Gould, Charles Kerr, PS Jenkins bot
2015-09-09 16:40:41 +0000 Iain Lane (13bcfcc)
* Remove warnings from test logs. Swallow the ones that are expected
and fail the test if they don't show up. In addition, fail
tests if unexpected warnings show up again. Approved by:
Charles Kerr
2015-09-09 18:16:41 +0200 Lars Uebernickel (ec001e6)
* state-fixture: use TestDBusFixture for system bus
2015-09-09 18:16:41 +0200 Lars Uebernickel (046cd3a)
* glib-fixture: fail tests on unexpected warnings
2015-09-09 18:02:50 +0200 Lars Uebernickel (60f3045)
* test-utils: don't pass NULL as gsettings string value
2015-09-04 09:59:18 -0500 Charles Kerr (645e1ad)
* replace the default alarm from 'Suru arpeggio.ogg' to 'Alarm
clock.ogg
2015-09-03 18:00:36 +0200 Lars Uebernickel (bda03d7)
* timezone-timedated: subscribe to PropertiesChanged directly
2015-09-03 11:02:27 +0100 Iain Lane (49dbcaf)
* Make test-live-actions quit itself once the tz has been changed,
the mock no longer does this
2015-09-03 10:54:20 +0100 Iain Lane (29b5c4d)
* Avoid nested GMainLoops by reading from the file on startup
2015-09-01 11:10:09 +0100 Iain Lane (1da27f9)
* Add some comments
2015-09-01 10:52:13 +0100 Iain Lane (a393783)
* Rename FileTimezone to TimedatedTimezone
2015-09-01 10:25:41 +0100 Iain Lane (f016deb)
* Add a timeout so we can't hang forever
2015-08-31 22:08:36 +0100 Iain Lane (132ac93)
* Use timedated's Timezone property instead of watching /etc/timezone
2015-08-27 15:04:46 +0100 Sebastien Bacher (5d0a213)
* under unity8 start system-settings instead unity-control-center,
don't special case u-c-c by looking for the binary, Unity
installations come with it installed
2015-07-28 08:42:28 +0000 CI Train Bot (ad2d17a)
* Releasing 13.10.0+15.10.20150728-0ubuntu1 (tag:
13.10.0+15.10.20150728-0ubuntu1)
2015-07-28 08:42:25 +0000 Iain Lane (07803fa)
* Update for e-d-s 3.16 Approved by: Iain Lane
2015-07-27 18:06:18 +0000 CI Train Bot (cbdb486)