aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 43d47e656db40824bf1565c3239547e41e5aa004 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
2023-10-13 Mike Gabriel

        * release 23.10.0 (HEAD -> main, tag: 23.10.0)

2023-09-09 Mike Gabriel

        * Merge branch 'tari01-pr/drop-testing' (2f3dee8)

2023-09-06 Robert Tari

        * src/main.c: Fix function argument error (22b759e)
        * Drop testing/coverage options (8f3234c)

2023-07-01 spnux

        * Translated using Weblate (French) (cd22a9e)

2023-06-27 Sylke Vicious

        * Translated using Weblate (Italian) (f307fc9)

2023-06-22 Joan CiberSheep

        * Translated using Weblate (Catalan) (18db624)

2023-05-20 Milo Ivir

        * Translated using Weblate (Croatian) (fc9e98e)

2023-05-02 Eryk Michalak

        * Translated using Weblate (Polish) (ba0b780)

2023-04-25 Kristjan Räts

        * Translated using Weblate (Estonian) (574a566)

2023-04-06 ssantos

        * Translated using Weblate (Portuguese) (21808ee)
        * Translated using Weblate (Portuguese) (1c2eb2b)

2023-03-15 Heimen Stoffels

        * Translated using Weblate (Dutch) (f53195f)

2023-03-03 gallegonovato

        * Translated using Weblate (Spanish) (c15c529)

2023-02-10 Luna Jernberg

        * Translated using Weblate (Swedish) (0181d01)

2022-10-22 Gediminas Murauskas

        * Translated using Weblate (Lithuanian) (477660d)

2022-10-19 Kristjan Räts

        * Translated using Weblate (Estonian) (9d2856c)

2022-10-17 Gediminas Murauskas

        * Translated using Weblate (Lithuanian) (e5d9b8b)

2022-09-29 이정희

        * Translated using Weblate (Korean) (ee41c70)

2022-09-25 Oğuz Ersen

        * Translated using Weblate (Turkish) (de561fd)

2022-09-22 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (39e2950)

2022-09-14 Sergii Horichenko

        * Translated using Weblate (Ukrainian) (077eb67)
        * Translated using Weblate (Russian) (0a407f6)

2022-09-14 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (bf6a3c9)

2022-09-15 Quentin PAGÈS

        * Translated using Weblate (Occitan) (8551fe9)

2022-09-14 Mike Gabriel

        * release 22.9.0 (fc2f3ee) (tag: 22.9.0)
        * Translated using Weblate (German) (5e888c2)

2022-09-14 Milan Korecky

        * Translated using Weblate (Czech) (a968715)

2022-09-14 Mike Gabriel

        * po/*.po{,t}: Translation strings update. (21fcbed)
        * update-po{,t}.sh: Also catch multi-file source file references.
          (12775e6)

2022-09-13 Robert Tari

        * Merge branch 'sunweaver-pr/fix-and-update-translations' (bbea249)

2022-09-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (5a5913a)

2022-09-07 Moo

        * Translated using Weblate (Lithuanian) (1db4373)

2022-09-06 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (be711b0)

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (ed8854d)

2022-09-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (d39c410)

2022-09-11 Mike Gabriel

        * po/ayatana-indicator-notifications.pot: Update translation template
          file. (29c4f40)
        * update-po{,t}.sh: Omit ../ at beginning of file names in .po(t)
          file(s). (5b72dcf)
        * data/: Fix translation of .gschema.xml file. (6309311)
        * data/org.ayatana.indicator.notifications.gschema.xml.in.in: Drop
          .gschema.xml.in.in file. Unused these days. (7309b1d)

2022-09-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (e675747)

2022-09-07 Moo

        * Translated using Weblate (Lithuanian) (3b92cd3)

2022-09-06 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (42ba2f5)

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (e8c0fcf)

2022-09-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (1be4b4b)

2022-09-05 Mike Gabriel

        * po/*.po{,t}: Translation strings update. (dbaf86f)

2022-09-01 Mike Gabriel

        * Merge branch 'sunweaver-pr/tooltip-support' (e3807fd)

2022-07-22 Mike Gabriel

        * src/im-application-list.c: Add tooltip support. (1b193e8)

2022-08-09 Ács Zoltán

        * Translated using Weblate (Hungarian) (88c1c2c)

2022-05-07 Rondy Andersson

        * Translated using Weblate (Swedish) (09d3b47)

2022-04-23 Sergii Horichenko

        * Translated using Weblate (Russian) (1053488)
        * Translated using Weblate (Ukrainian) (185d7dd)
        * Translated using Weblate (Ukrainian) (487cbf9)

2022-03-15 이정희

        * Translated using Weblate (Korean) (5fdfe7c)

2022-02-27 이정희

        * Translated using Weblate (Korean) (64093c6)

2022-02-17 Mike Gabriel

        * release 22.2.0 (0d51469) (tag: 22.2.0)

2022-02-16 Mike Gabriel

        * Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'
          (0268f09)

2022-02-15 Robert Tari

        * Drop pkglibexecdir and use native CMake file configuration
          (db51353)

2022-02-08 Robert Tari

        * .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
          (1356964)

2022-01-27 Mike Gabriel

        * Merge branch 'tari01-pr/cleanup-compile-flags' (a949160)

2022-01-13 Robert Tari

        * .build.yml: Drop extra compilation flags and build with -Werror
          (b835d12)
        * Use Ayatana-style CMakeList + clean up compilation flags (e626ade)

2022-01-24 Eric

        * Translated using Weblate (Chinese (Simplified)) (f9e30eb)

2022-01-02 ssantos

        * Translated using Weblate (Portuguese) (f7d548d)

2021-11-21 phlostically

        * Translated using Weblate (Esperanto) (95bbde9)

2021-11-20 phlostically

        * Translated using Weblate (Esperanto) (aa022b0)

2021-11-18 phlostically

        * Translated using Weblate (Esperanto) (a7e5643)

2021-11-18 Mike Gabriel

        * release 0.9.0 (378e9eb) (tag: 0.9.0)

2021-11-16 Phil Clifford

        * Translated using Weblate (Gaelic) (b47e4c8)

2021-11-09 Joan CiberSheep

        * Translated using Weblate (Catalan) (ea8c08c)

2021-11-03 ElectrifiedSpeed

        * Translated using Weblate (Macedonian) (5e3962d)

2021-10-25 Robert Tari

        * Merge branch 'sunweaver-pr/travis-ci' (dc23d05)

2021-10-25 Mike Gabriel

        * .build.yml: Remove source code of locally built dependency after it
          has been installed. (6a12835)
        * .build.yml: If we ever start having unit tests, run those unit
          tests in build_scripts: target. (0177abb)
        * .build.yml: Drop autogen.sh support. (430f663)

2021-10-22 Robert Tari

        * data/CMakeLists.txt: Do not use automatic GSchema compilation
          (230fc52)

2021-10-21 Mike Gabriel

        * Merge branch 'tari01-pr/use-intltool-merge-translations' (5d85bac)

2021-10-21 Robert Tari

        * data/CMakeLists.txt: Use intltool_merge_translations instead of
          execute_process (b3794cf)

2021-10-21 Mike Gabriel

        * Merge branch 'tari01-pr/use-native-cmake-gsettings-module'
          (fd3eb1c)

2021-10-20 Robert Tari

        * Use native CMake GSettings module (633a426)
        * .travis.yml: Temporarily disable ppc64le builds (11d6a5f)

2021-08-29 Hosted Weblate

        * Update translation files (25c0830)

2021-08-29 Mike Gabriel

        * debian/{control,compat}: Bump to level 10. (366848d)
        * debian/rules: Enable unit tests (if there were any). (2b27994)

2021-08-28 Mike Gabriel

        * .build.yml: Provide extra dependency set for ubuntu:focal (no
          liblomiri-url-dispatcher-dev). (ed263de)
        * .build.yml: Fix for previous commit (libayata-common build
          requirements). (8a606b2)
        * .build.yml: Add new build requirements for libayatana-common to
          dependency blocks. (711e1b1)

2021-08-28 Weblate

        * Added translation using Weblate (Kurdish (Southern)) (77de31d)
        * Added translation using Weblate (Kurdish (Northern)) (281a10a)

2021-08-28 Mike Gabriel

        * .travis.yml: Fix branch name what is now the default branch in
          ayatana-dev-scripts. (a767560)

2021-07-15 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (332c422)

2021-05-12 Mike Gabriel

        * Merge branch 'tari01-pr/remove-gtk-update-icon-cache' (5b18f52)

2021-02-12 Robert Tari

        * Do not update icon cache from CMake (ad974a6)

2021-05-11 Robert Tari

        * Merge branch 'sunweaver-pr/travis' (1e912a0)

2021-05-06 Adolfo Jayme Barrientos

        * Translated using Weblate (Catalan) (10498d3)

2021-05-01 Tomáš Marný

        * Translated using Weblate (Czech) (919bd79)

2021-03-30 Hosted Weblate

        * Update translation files (4b4312f)

2021-03-29 Weblate

        * Added translation using Weblate (Chinese (Simplified)
          (zh_LATN@pinyin)) (e544c9e)

2021-03-18 Reza Almanda

        * Translated using Weblate (Indonesian) (f3d36a4)

2021-03-11 Boyuan Yang

        * Translated using Weblate (Chinese (Simplified)) (740ebe3)

2021-02-04 Adolfo Jayme Barrientos

        * Translated using Weblate (Catalan) (f6da908)

2021-05-06 Adolfo Jayme Barrientos

        * Translated using Weblate (Catalan) (06f0991)

2021-05-04 Mike Gabriel

        * Travis CI: Disable unit test runs (none present). (9c9a8d6)
        * Travis-CI: Initial draft for CI builds. (907e80e)

2021-05-01 Tomáš Marný

        * Translated using Weblate (Czech) (9b833e0)

2021-03-30 Hosted Weblate

        * Update translation files (2e35409)

2021-03-29 Weblate

        * Added translation using Weblate (Chinese (Simplified)
          (zh_LATN@pinyin)) (2f74547)

2021-03-18 Reza Almanda

        * Translated using Weblate (Indonesian) (bf2f1ef)

2021-03-11 Boyuan Yang

        * Translated using Weblate (Chinese (Simplified)) (d37520b)

2021-02-04 Adolfo Jayme Barrientos

        * Translated using Weblate (Catalan) (1eb1c07)

2021-01-28 Mike Gabriel

        * release 0.8.90 (03bb6d5) (tag: 0.8.90)

2021-01-16 Kristjan Räts

        * Translated using Weblate (Estonian) (f8e575d)

2020-12-29 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (60cfca2)

2020-12-30 J. Lavoie

        * Translated using Weblate (Italian) (7f9b558)
        * Translated using Weblate (French (Canada)) (454a73c)
        * Translated using Weblate (French) (4bf7870)
        * Translated using Weblate (English (United Kingdom)) (b4cf794)
        * Translated using Weblate (English (Canada)) (92deeea)
        * Translated using Weblate (English (Australia)) (8466236)

2020-12-02 Milo Ivir

        * Translated using Weblate (Croatian) (93c72ba)

2020-11-30 Mike Gabriel

        * Merge branch 'tari01-pr/use-ido-removable' (3ad237d)

2020-11-30 Robert Tari

        * service.c: Switch over to Removable IDO (316bbee)

2020-11-26 Ács Zoltán

        * Translated using Weblate (Hungarian) (737fc32)

2020-11-23 Adolfo Jayme Barrientos

        * Translated using Weblate (Spanish) (788f469)

2020-11-17 Quentin PAGÈS

        * Translated using Weblate (Occitan) (42cb70b)

2020-11-18 Moo

        * Translated using Weblate (Lithuanian) (eab97ad)

2020-11-12 Oğuz Ersen

        * Translated using Weblate (Turkish) (c7e3b9b)

2020-11-12 Anders Jonsson

        * Translated using Weblate (Swedish) (c23e61b)

2020-11-12 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (e2b9c19)

2020-11-12 Mike Gabriel

        * Translated using Weblate (German) (58e2693)

2020-11-12 Milan Korecky

        * Translated using Weblate (Czech) (520cad0)

2020-11-13 Mike Gabriel

        * Merge branch 'tari01-pr/update-icon-on-remove' (f71b416)

2020-11-13 Robert Tari

        * Change the icon after the last notification has been removed
          (c007dce)

2020-11-12 Mike Gabriel

        * debian/control: Fix B-D field, empty lines not allowed there.
          (77f0168)
        * locale: Update translation files after rewrite to indicator-ng.h
          System Indicator style. (a146339)
        * locale: Update .pot file. (9833b92)
        * po/POTFILES.in: Update list of code files that might contain
          translatable strings. (953bdbb)
        * update-pot.sh: Fix GETTEXT_DOMAIN detection. This is now a CMake
          project. (c22f9fb)
        * Merge branch 'tari01-pr/url-dispatcher' (2219106)

2020-11-12 Robert Tari

        * Remove all references to url-dispatcher (7d16f61)

2020-11-10 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (4fd70a5)

2020-11-11 Milan Korecky

        * Translated using Weblate (Czech) (e7add1e)

2020-11-11 Mike Gabriel

        * Merge branch 'tari01-pr/system-indicator-rewrite' (f34109b)

2020-11-08 Robert Tari

        * Rewrite to indicator-ng, simplify, drop all GTK references, move to
          CMake (f9a39b4)

2020-11-01 Hosted Weblate

        * Update translation files (f872e90)

2020-10-31 Weblate

        * Added translation using Weblate (Italian) (3a9d041)
        * Added translation using Weblate (Tamil (Sri Lanka)) (1edb48e)
        * Added translation using Weblate (Dhivehi) (9526506)
        * Added translation using Weblate (Venetian) (4a14169)
        * Added translation using Weblate (Kashubian) (fa03b0b)
        * Added translation using Weblate (Macedonian) (85f5413)
        * Added translation using Weblate (Friulian) (b7e1c2a)
        * Added translation using Weblate (Tatar) (5663566)

2020-10-28 Milan Korecky

        * Translated using Weblate (Czech) (74008ed)

2020-10-27 Adrià Martín

        * Translated using Weblate (Sardinian) (81807c3)

2020-10-26 Joan CiberSheep

        * Translated using Weblate (Catalan) (446d2a6)

2020-10-27 Hosted Weblate

        * Update translation files (e56cf01)

2020-10-26 Michele

        * Translated using Weblate (Italian) (5bacccc)

2020-10-26 Weblate

        * Added translation using Weblate (Manx) (b7bb7fc)
        * Added translation using Weblate (Afar) (ebe604f)
        * Added translation using Weblate (Nyanja) (c424b97)
        * Added translation using Weblate (Assamese) (aa16f0a)
        * Added translation using Weblate (Wolof) (efc1fb4)

2020-10-24 Ács Zoltán

        * Translated using Weblate (Hungarian) (6680b63)

2020-10-11 Quentin PAGÈS

        * Translated using Weblate (Occitan) (7ae5e9d)

2020-10-10 Rob Pearson

        * Translated using Weblate (English (United Kingdom)) (e445bd7)
        * Translated using Weblate (English (Australia)) (9808c2f)

2020-10-10 Yota321

        * Translated using Weblate (Bengali) (a7d35dd)

2020-10-08 koffevar

        * Translated using Weblate (Russian) (88dc9cc)

2020-09-27 Ján Olexa

        * Translated using Weblate (Slovak) (421df9f)

2020-09-28 Adolfo Jayme Barrientos

        * Translated using Weblate (Spanish) (f8b3c53)

2020-09-25 Talking Panda

        * Translated using Weblate (Turkish) (365473a)

2020-09-25 Quentin PAGÈS

        * Translated using Weblate (Occitan) (6d8f5d3)

2020-09-23 Viktar Vauchkevich

        * Translated using Weblate (Belarusian) (88329f3)

2020-09-18 Talking Panda

        * Translated using Weblate (Turkish) (9ba5c82)

2020-09-10 Mike Gabriel

        * release 0.8.2 (0a7866e) (tag: 0.8.2)

2020-09-08 Milo Ivir

        * Translated using Weblate (Croatian) (0af2c78)

2020-09-06 Baka Gaijin

        * Translated using Weblate (Japanese) (a3b468b)

2020-09-03 tommymaple

        * Translated using Weblate (Chinese (Traditional)) (6938c1d)

2020-09-03 sai vineeth kumar tumu

        * Translated using Weblate (Telugu) (229971e)

2020-09-04 antuketot76

        * Translated using Weblate (Malay) (9b38172)

2020-09-04 Rokas Kasnauskas

        * Translated using Weblate (Lithuanian) (8f39ee4)

2020-09-04 Mike Gabriel

        * Merge branch 'tari01-pr/add-separator' (2c86731)

2020-09-04 Robert Tari

        * src/indicator-notifications.c: Add separator after notification
          list. (bbfcf3d)

2020-08-28 Anders Jonsson

        * Translated using Weblate (Swedish) (300f66f)

2020-08-25 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (0bf1981)

2020-08-27 Ulf Lundh

        * Translated using Weblate (Swedish) (f7ac9ae)

2020-08-22 Anders Jonsson

        * Translated using Weblate (Swedish) (92489f0)

2020-08-21 Mike Gabriel

        * Translated using Weblate (German) (5dcede2)
        * release 0.8.1 (dd22415) (tag: 0.8.1)
        * README.md: Provide some basic information on the notifications
          indicator. (493e766)
        * Merge branch
          'sunweaver-pr/port-patches-from-indicator-notifications-by-trism'
          (e362432)

2020-08-20 Mike Gabriel

        * Update translation files (for blacklist/filter-list renaming and
          do-not-disturb feature). (d50e5a3)

2020-08-21 Jason Conti

        * src/indicator-notifications: settings_try_set_boolean(): Enable the
          recursive schema lookup so we have a better chance of
          finding it. (ab78838)

2020-08-20 Jason Conti

        * Rename blacklist to filter-list. (aca92b3)

2020-08-20 Tasos Sahanidis

        * Add option to swap Settings and Clear. (3fbc05d)

2019-09-05 Jason Conti

        * Discard notifications when indicator is hidden. (d1b76b9)

2020-08-20 Jason Conti

        * Add do-not-disturb mode read/unread icons. (8f19524)
        * Add our own do-not-disturb setting. (82ca918)

2019-08-30 Jason Conti

        * Add mate do-not-disturb option if available. (77fb1c1)

2020-08-20 Jason Conti

        * Add blacklist hints for recent application names. (e4bf77f)

2020-08-20 Mike Gabriel

        * Revert "Start indicator in systemd when ayatana-indicators.target
          is started." (ed884c0)

2020-08-19 Mike Gabriel

        * configure.ac: Fix-back author in AC_INIT(). (b03aa69)

2020-08-17 Mike Gabriel

        * release 0.8.0 (a128095) (tag: 0.8.0)

2020-08-11 Robert Tari

        * Merge branch 'sunweaver-pr/sytemd-service-file' Attributes GH PR
          #5:
          https://github.com/AyatanaIndicators/ayatana-indicator-notifications/pull/5
          (f15307a)
        * Merge branch 'pr/sytemd-service-file' of
          https://github.com/sunweaver/ayatana-indicator-notifications
          into sunweaver-pr/sytemd-service-file Attributes GH PR #5:
          https://github.com/AyatanaIndicators/ayatana-indicator-notifications/pull/5
          (7d7dc11)

2020-08-10 Robert Tari

        * Fix deprecations (fixes #4) (d9fced1)

2020-08-10 Mike Gabriel

        * debian/*: Install indicator's systemd user service file into DEB
          package. (d75eb5f)
        * Start indicator in systemd when ayatana-indicators.target is
          started. (8189b65)

2020-08-06 Prosta4okua

        * Translated using Weblate (Ukrainian) (ac5d686)

2020-07-29 Ács Zoltán

        * Translated using Weblate (Hungarian) (af7f749)

2020-07-19 Tetra Homer

        * Translated using Weblate (Persian) (944db30)

2020-07-03 Tobias p

        * Translated using Weblate (Danish) (7cafce0)

2020-06-27 Zsolt Pastorek

        * Translated using Weblate (Slovak) (3a99782)

2020-06-21 Kate Kaz

        * Translated using Weblate (Ukrainian) (fab1cf8)

2020-06-19 Ács Zoltán

        * Translated using Weblate (Hungarian) (5fa3a25)

2020-06-14 MarongHappy

        * Translated using Weblate (Korean) (fdf612b)

2020-05-26 wdggg

        * Translated using Weblate (Chinese (Simplified)) (408851b)

2020-05-09 iNetRoos

        * Translated using Weblate (Afrikaans) (a19852e)

2020-05-08 Abdusalam

        * Translated using Weblate (Uyghur) (4ac1105)

2020-04-27 Jeannette L

        * Translated using Weblate (Italian) (2c4e19a)
        * Translated using Weblate (French (Canada)) (ba07bb9)
        * Translated using Weblate (English (United Kingdom)) (03281e5)
        * Translated using Weblate (English (Canada)) (9f45840)
        * Translated using Weblate (English (Australia)) (0f110d9)

2020-04-16 george k

        * Translated using Weblate (Greek) (8fc593c)

2020-04-14 Jeannette L

        * Translated using Weblate (French) (29b8919)

2020-04-04 Kristjan Räts

        * Translated using Weblate (Estonian) (097b646)

2020-04-03 raimon ribal

        * Translated using Weblate (Occitan) (f16bd63)

2020-04-01 Davit Mayilyan

        * Translated using Weblate (Armenian) (8f3870d)

2020-03-29 Alexie Brindusescu

        * Translated using Weblate (Romanian) (cbc68e1)

2020-03-26 Adolfo Jayme Barrientos

        * Translated using Weblate (Catalan) (918addb)

2020-03-16 Grace Guo

        * Translated using Weblate (Japanese) (ff14973)

2020-03-14 yagoub fadel

        * Translated using Weblate (Arabic) (a94a393)

2020-03-05 Zdeněk Klauda

        * Translated using Weblate (Czech) (fe73eb4)

2020-02-25 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (2e2201d)

2020-02-06 Laércio Cordeiro

        * Translated using Weblate (Portuguese (Brazil)) (e139d80)

2020-01-27 Ryan

        * Translated using Weblate (Korean) (b615cb2)

2020-01-25 Emiliano Gabriele

        * Translated using Weblate (Italian) (9dbc449)

2020-01-05 k Venkatesan kalimoorthy pillySA

        * Translated using Weblate (Tamil) (faae206)

2020-01-02 Milo Ivir

        * Translated using Weblate (Croatian) (c20b14a)

2019-12-20 DHU

        * Translated using Weblate (Portuguese) (ca23f4b)

2019-12-15 dmaxime

        * Translated using Weblate (Italian) (a687ba9)

2019-12-13 Prosta4okua

        * Translated using Weblate (Ukrainian) (ed35d16)

2019-11-26 Yuji Hon

        * Translated using Weblate (Japanese) (0d6475c)

2019-11-27 Mike Gabriel

        * release 0.4.1 (cdb8b76) (tag: 0.4.1)

2019-11-22 Burak Balta

        * Translated using Weblate (Turkish) (191e5e5)

2019-11-15 Theeiss

        * Translated using Weblate (Portuguese) (b10ea19)

2019-11-14 winqooq

        * Translated using Weblate (Russian) (48c6f82)

2019-11-10 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (482fa06)

2019-11-06 Deleted User

        * Translated using Weblate (Norwegian Bokmål) (1703507)

2019-11-04 maryl

        * Translated using Weblate (Russian) (2ca658f)

2019-11-02 Allan Nordhøy

        * Translated using Weblate (Albanian) (e06845c)

2019-11-01 Deleted User

        * Translated using Weblate (Portuguese) (ab1d08c)

2019-10-30 Marcela Korreshi

        * Translated using Weblate (Albanian) (981dd02)

2019-10-23 Mattias Münster

        * Translated using Weblate (Swedish) (7bfd4fd)

2019-10-23 Fontanela

        * Translated using Weblate (Portuguese) (3073b64)

2019-10-12 Andrea Gatti

        * Translated using Weblate (Italian) (c1d9b36)

2019-10-07 Mateusz Rumiński

        * Translated using Weblate (Polish) (8e74a90)

2019-09-07 Abraham Roman

        * Translated using Weblate (Spanish) (987f750)

2019-09-02 Swann Martinet

        * Translated using Weblate (French) (96e8bd8)

2019-09-01 Moo

        * Translated using Weblate (Lithuanian) (9f1b33d)

2019-09-01 trism

        * Merge pull request #2 from leela52452/master (26fd86c)

2019-09-01 leela

        * typo ellipsis, added (554340f)

2019-08-29 Anders Jonsson

        * Translated using Weblate (Swedish) (084399b)

2019-08-28 Heimen Stoffels

        * Translated using Weblate (Dutch) (0ed01d6)

2019-08-29 Mike Gabriel

        * Translated using Weblate (German) (15d1e00)

2019-08-28 Mike Gabriel

        * upload locale files (cd1e9aa)

2019-06-08 Jason Conti

        * Add a settings UI (55483b8)

2019-08-25 leela

        * Translated using Weblate (Telugu) (fe7ea61)

2019-08-10 KotagiriSahithi

        * Translated using Weblate (Telugu) (192d47c)

2019-08-06 Chang Xin

        * Translated using Weblate (Chinese (Simplified)) (2271553)

2019-07-23 Simon Picot

        * Translated using Weblate (French) (3dad1c2)

2019-07-01 Elizabeth Sherrock

        * Translated using Weblate (Chinese (Simplified)) (00f0cfe)

2019-06-18 THANOS SIOURDAKIS

        * Translated using Weblate (Greek) (344e562)

2019-04-17 Rui Mendes

        * Translated using Weblate (Portuguese) (b4fc77f)

2019-01-11 Louies

        * Translated using Weblate (Chinese (Traditional)) (55effe9)

2018-11-18 ssantos

        * Translated using Weblate (Portuguese) (3b7d042)

2018-10-23 Iván Seoane

        * Translated using Weblate (Galician) (2c800fe)

2018-09-27 Володимир Бриняк

        * Translated using Weblate (Ukrainian) (a5edc07)

2018-08-23 WaldiS

        * Translated using Weblate (Polish) (f98c693)

2018-08-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (2bd7c2d)

2018-07-29 chrismeurer

        * Translated using Weblate (Portuguese (Brazil)) (01bea21)

2018-06-29 Jonathan Ramos dos Santos

        * Translated using Weblate (Portuguese (Brazil)) (854cabd)

2018-05-08 Heimen Stoffels

        * Translated using Weblate (Dutch) (b8b3541)

2018-05-02 Adolfo Jayme Barrientos

        * Translated using Weblate (Spanish) (b54f0b9)

2018-04-03 Pavel Borecki

        * Translated using Weblate (Czech) (1c9c71a)
        * Translated using Weblate (Czech) (6b1a575)
        * Translated using Weblate (Czech) (150397c)
        * Translated using Weblate (Czech) (590e477)

2018-03-29 Anders Jonsson

        * Translated using Weblate (Swedish) (e20b408)

2018-03-18 Mike Gabriel

        * release 0.4.0 (4408ecb) (tag: 0.4.0)
        * debian/rules: Use NEWS file as upstream ChangeLog. (16d9585)
        * debian/copyright: Fix Source: field's URL. (db57cc0)
        * debian/copyright: Use secure URI for copyright format reference.
          (78bfe0b)
        * debian/control: Bump Standards-Version: to 4.1.3. No changes
          needed. (534fd91)
        * debian/rules: Make sure config.guess and config.sub are removed
          during clean, as well. (2a15d3c)
        * debian/rules: Keep .pot file in po/ after dh_auto_clean. Work
          around for flawed gettext autotools integration it seems.
          (7340464)

2018-03-01 Moo

        * Translated using Weblate (Lithuanian) (bd404e0)

2018-02-28 Мира Странная

        * Translated using Weblate (Russian) (ed1a794)

2018-02-08 Mertcan Gokgoz

        * Translated using Weblate (Turkish) (c4448e2)

2018-02-03 Cristian Gherman

        * Translated using Weblate (Romanian) (e6fec6d)
        * Translated using Weblate (Romanian) (016933e)

2018-01-22 Марс Ямбар

        * Translated using Weblate (Ukrainian) (d3109e8)

2018-01-01 Anders Jonsson

        * Translated using Weblate (Swedish) (b05583d)

2017-12-19 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (3c4a520)

2018-01-04 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (ad29133)

2017-12-31 Sebastian Rasmussen

        * Translated using Weblate (Swedish) (5f930cb)

2017-12-23 Kristjan Räts

        * Translated using Weblate (Estonian) (de87650)

2017-12-18 Viktar Vauchkevich

        * Translated using Weblate (Belarusian) (b2bd3fc)

2017-12-06 Mike Gabriel

        * po/de.po: Tiny translation fix. (3b17cfa)
        * Enable locale support at runtime. (4053ab0)
        * po/de.po: White-space fixes. (84fb494)
        * po/de.po: Manually add German translation. We are not on Weblate,
          yet. (ac0556f)
        * Update translation files. (6c0e236)
        * Makefile.am: Add some build cruft files to DISTCLEANFILES.
          (7ce7809)
        * update-po.sh: Tweak file names in .po files ending with
          .xml.in.in.h. (cabc67e)
        * update-pot.sh: Drop the .h from filenames in .pot file ending with
          .xml.in.in.h. (48e19a9)
        * po/: Add LINGUAS file. (cf88f15)

2017-12-05 Mike Gabriel

        * debian/postinst: Remove. The libglib2.0-bin package has a trigger
          for that for years. (5e34246)
        * debian/control: Correct the point about the configuration dialog,
          the dialog is actually dconf-editor for now. (6604804)

2017-12-04 Jason Conti

        * Update icon names in source defines (6bdff16)

2017-12-03 Mike Gabriel

        * Name change of libnotifications.so -> libayatana-notifications.so.
          (3c81b45)

2017-12-02 Mike Gabriel

        * debian/control: Fix D (glib2.0-bin -> libglib2.0-bin). (08b5d49)
        * gschema: Namespace adaptations for gschema file. (848ebda)
        * Drop .bzrignore. (da40552)
        * debian/{control,postinst}: Recompile GSettings schemas at post
          installation. (3e0b02e)
        * Makefile.am: no localinstall anymore. (7ed5f4a)
        * po/: Initialize translation files. (a6c920d)
        * update-po(t).sh: Add translation update tools. (ebc7f29)
        * Import and adapt packaging from recent-notifications' ppa-indicator
          branch. (a559a64)
        * Convert to Ayatana Indicators. (6bc2b28)

2017-03-15 Jason Conti

        * Add option to clear the notifications using middle click on the
          notification icon.;  Bump version. (27a4b02) (tag: 0.3.3)

2016-08-29 Jason Conti

        * Need to escape the url otherwise certain acceptable characters
          can break the   markup parsing in the GtkLabel.;  Bump
          version. (6dd7a72) (tag: 0.3.2)
        * When updating the notification count on the clear item,
          deactivate the menu   shell if that count is zero. This
          avoids leaving a single clear menuitem on   screen after
          all the notifications have been dismissed.;  Bump version.
          (700170f) (tag: 0.3.1)
        * Comment the new functions in notification-menuitem.c;  Bump
          version. (ed985a8)

2016-08-28 Jason Conti

        * Make sure the button event started and ended on the close image
          before we   dismiss the notification (76d7872)
        * Added back hide_on_activate = false on the notification menuitem
           - Enables using space when in keyboard navigation to
          avoid closing the menu;  Added custom close icons for
          selected and deselected notifications   - Since we don't
          set PRELIGHT, needed a way to show the selected
          notification     during keyboard navigation   - gtk-close
          is deprecated anyway, so might as well use our own   - Can
          be replaced by the icon theme to look more appropriate
          (39810bb)

2016-08-27 Jason Conti

        * Scan the notification body for links and mark them up, escape
          everything else (83f8134)
        * Import urlregex files to handle matching and expanding urls
          (9b0c58a)

2016-08-25 Jason Conti

        * Added support for visiting links within notifications   -
          Currently inserting two test links into each message (no
          link parsing)   - Changes how notifications are
          highlighted and closed     + Removed prelight on the
          menuitem so that the links render correctly     + Must
          click the X to close a notification now (9cb6e6e)

2015-10-23 Jason Conti

        * Fix a serious memory leak in notification_new_from_dbus_message.
          * Bump version. (b67ee91)

2014-05-31 Jason Conti

        * Add button argument to notification menuitem clicked signa.
          Replace deprecated stock icon api (c136c4f)

2014-01-15 Jason Conti

        * Add AM_PROG_AR to silence autotools warning (8be9606) (tag: 0.2.6)
        * Bump version to 0.2.6 (9a1bcbd)
        * Use icon-name instead of pixbufs to set the indicator icon;  Move
          the default icons to datadir/pixmaps/ (5be88b3)
        * New GSetting:   - "blacklist" - discard notifications matching
          appname (5ef0c20)

2013-02-17 Jason Conti

        * Bump version to 0.2.5 (d16be93) (tag: 0.2.5)
        * Import patch for eavesdrop support required by recent dbus
          versions.   - Drop this patch if using an older version
          that doesn't require eavesdropping. (69d098d)
        * Add GSettings support.   - hide-indicator key to show/hide the
          indicator   - max-items key to change the maximum number
          of displayed notifications (075774f)

2012-04-04 Jason Conti

        * Bump for version 0.2.4 (233e68f) (tag: 0.2.4)
        * Use style-updated intead of style-set to track style changes on
          GtkImage,   since style-set is deprecated and seems to be
          broken for GtkImage. (8e252e0)
        * Bump to version 0.2.3 (8d92259) (tag: 0.2.3)

2012-02-29 Jason Conti

        * Implement secondary-activate to dismiss or reactivate the unread
          icon   on middle click. (ddc4a14)

2012-02-26 Jason Conti

        * Update potfiles.;  Bump version to 0.2.2. (1ac07fe) (tag: 0.2.2)
        * Emit the clicked signal when the keyboard activates a menuitem.
          - If using the spacebar, the menu won't hide   - If using
          enter, the menu hides (9203963)
        * Move the button events to notification menuitem.;  Add a clicked
          event to the notification menuitem.;  Drop the old
          new_notification_menuitem code. (5d8d44a)
        * Move the notification menuitem to a separate class. (1bcf41c)
        * Rename notification_is_volume to notification_is_private.;  Add
          filters for indicator-sound and brightness notifications.
          * Strip whitespace leading and trailing whitespace from
          the summary   and body. (df8ae86)

2012-02-25 Jason Conti

        * Update potfiles;  Bump version to 0.2.1 (bafd836) (tag: 0.2.1)
        * Bump version to 0.2.0 (7dedb95) (tag: 0.2.0)
        * Don't hide the menu when removing a notification. (49b8359)
        * Remove a notification when clicked. Unfortunately this hides the
          menu   unless the item is activated with the spacebar, so
          needs fixing. (a232d4c)
        * Implement the clear item;  Add safety checks to most of the
          functions (a286008)
        * Reorganize and comment indicator-notifications.c (2a370d1)
        * Add a clear item that also keeps a notification count.   - Still
          need to implement the clear action (5e46847)
        * Reintroduce the visible item limit, currently hard-coded to 5
          (2a29da2)
        * Add notification_is_empty to catch useless notifications such as
           brightness and volume, which are not always properly
          marked. (a46ca96)
        * Forgot AC_OUTPUT in configure.ac (6712160)
        * Move dev tools to the tools/ directory;  Missed some extra [] in
          configure.ac (d7fc1f1)
        * Drop old dbus service file.;  Clean up configure.ac;  Drop gtk2
          build (19e6cdf)

2011-09-08 Jason Conti

        * Disable the resize_menu code. (dad2586)

2011-08-29 Jason Conti

        * Make sure to unref the dbus-spy when the indicator is disposed.
          (52cd1d8)
        * Switch to gtk_menu_shell_prepend so new messages appear on top.
          (e6a38a2)
        * Simplified the indicator by removing the dbus service. Still
          needs:   - Clear button   - Message limit;  GTK3 is having
          issues with the multi-line menu items. Adding a bit of   a
          hack to calculate the size of the menu and resize it when
          an item is added.   Still has some problems, but better
          than before. Will probably cause other   issues that will
          need to be addressed later. (cb1da85)

2011-08-21 Jason Conti

        * Revert previous commit, the reposition fix isn't working. (467b817)

2011-08-20 Jason Conti

        * Reposition the menu when it becomes visible, otherwise parts will
          be   cut off when popped up near the edge of the screen
          (fd33d25)

2011-08-19 Jason Conti

        * Bump for oneiric ppa release (091af8d) (tag: 0.1.4)
        * Fix XML service substitution so it works from a separate build
          directory (a134d99)
        * Add a WITH_GTK (2, 3) definition to handle some of the minor
          differences   between gtk2 and 3;  Replace gtk_hbox_new
          with gtk_box_new in the gtk3 version;  GtkLabel has a new
          (and much nicer) wrapping mechanism   - use
          gtk_label_set_max_width_chars in gtk3 version (5989649)
          (tag: 0.1.3)
        * Update libindicator pkg-config names. (c5ac5ce)

2011-07-02 Jason Conti

        * Updated testing scripts for new gtk3 indicator. (6d46725)

2011-06-29 Jason Conti

        * Building --with-gtk=3 for oneiric (e50789b)

2011-05-27 Jason Conti

        * Modified the logging mechanism in the service. The one I stole from
          indicator-applet was inconsistant. Sometimes messages
          would be logged, sometimes they wouldn't. This time took
          one from lightdm that just uses stdio, and it seems to
          work much more consistantly. (5c375d5)

2011-05-19 Jason Conti

        * Bumping version and removing some unnecessary dependencies.
          (a25826c)

2011-05-18 Jason Conti

        * Have to add the test directory back to Makefile.am or the tarball
          from make dist fails to configure. (could also have
          removed the test makefile from configure.ac, but this
          seemed better) (88c859a) (tag: 0.1.0)
        * Had to prefix the status icons with indicator- because otherwise
          they can conflict with the obsolete icons in the
          recent-notifications package, which I should probably
          remove. (847eb7d)
        * Updated the pot file. Not many strings so far. (56ddef2)
        * Updating icon path to correct location in preparation for proper
          install. (c563991)

2011-05-17 Jason Conti

        * Checking for, and discarding volume notifications, since they
          contain no useful information (which is stupid, why can't
          they provide a summary (Volume Up/Down) and body (Current
          volume level X%). (344eaf6)
        * Adding a timestamp to the messages. Currently sends a timestamp
          string across dbus, but ideally it will send an integer,
          and the indicator can decide how to display it (time ago
          in words, custom time format, etc). (425bde7)
        * Removed the placeholder filter item for now. It serves no purpose
          with a limit of 5 items. Added a empty item to signify
          when the menu has 0 notification, instead of just leaving
          a blank space. (c802236)

2011-05-16 Jason Conti

        * Proof of concept complete, should probably add timestamps next.
          (4952566)
        * A bit of renaming with the dbusmenu properties. (465d4f1)
        * Building the menuitem, now works the same as before. Next comes
          markup. Should I markup the text server side or add a
          property to the dbusmenu item for each field, and build
          the menuitem client side from the properties? (0d7a9f1)
        * Should have checked my syntax errors before that last commit. Fixed
          now. (232a243)
        * Adding a new notification menuitem type. It isn't currently a
          custom menuitem, but may need to be eventually. (2fe93bc)

2011-05-15 Jason Conti

        * Update indicator icon to unread when a message is received, and to
          read when the menu is hidden. (f055a17)
        * Couldn't seem to get a signal when a menu item is added to the
          dbusmenu, so adding the interface back from
          indicator-datetime with a MessageAdded signal to notify
          the indicator when a notification is added to the menu.
          (239dec6)
        * Loading the read and unread icons when the image is first
          requested. TODO: Need to reload them when the icon theme
          changes. (fc92dc2)

2011-05-14 Jason Conti

        * Removed the label from the indicator. May add it back later for a
          message count. (d23cd18)
        * Added the icon to the indicator. Currently using a hardcoded path,
          will grab from the icon theme later, but need to add the
          local path to the icon theme for testing. (11998bf)
        * Adding gdk pixbuf to the deps for gtk2. Don't know what to use with
          gtk3 yet. (d98fb2f)
        * Forgot to add data/icons/Makefile to configure.ac. (d49b557)
        * Attempting to add icons to the install target. Will put them in
          correct locations later. (dd5d2de)
        * Adding back the functionality to clear the notifications. (706a318)
        * Updating in the idle loop seems to have fixed the updating, so
          added the gqueue back, as well as a fixed limit of 5 items
          for now (until preferences are added later). (0b8c3b2)

2011-05-13 Jason Conti

        * Added add_message_item to the idle loop and it seems to be working
          much better now. (bdf9d90)
        * Checking the number of children. They are correct, so they just
          aren't being sent over dbus. (51bea07)
        * Removing the queue for the moment, adding menu items when messages
          arrive seems to only be partially working for some reason.
          (64930be)
        * Logging the service to a file
          (~/.cache/indicator-notifications-service.log). The
          indicator messages appear to go to
          indicator-applet-complete.log, so shouldn't need to set up
          separate logging there. (fe71ed3)
        * Integrated the dbus-spy. Menu items for notification summaries are
          appended as they arrive. (9c9ceb6)
        * Importing dbus-spy and notification dbus objects to watch dbus for
          org.freedesktop.Notification.Notify messages (from test
          project). (c64309f)

2011-05-10 Jason Conti

        * Something didn't like the hyphen in recent-notifications so changed
          the bus names to RecentNotifications. My guess is
          libindicator, since dbus let me register
          com.launchpad.recent-notifications.indicator but the menu
          path didn't show up. (2d97be1)
        * Commenting out an unneeded variable to remove a warning. (229226f)
        * Missed a rename. (244eb97)
        * Completed the great renaming. Time for a test build. (4c73eea)
        * Renamed the indicator (92548a1)
        * Renamed the rest of the files, and updated the file headers.
          (875c0e1)
        * Removed the interface from example, no longer needed, so removing
          it here too. (8aadb63)
        * Cleaned up po (37ab8b9)
        * Renamed the service data (a9b5d33)
        * Beginning the great renaming from example to notifications.
          (8af1b04)

2011-05-09 Jason Conti

        * Shown/Hidden code works but causing the indicator to freak out, so
          disabled for now. It will work fine for changing the icon
          status though. (b358f7c)
        * Adding some code to demonstrate when the menu is shown/hidden,
          which will be required for indicator-notifications.
          (77b322f)
        * Removing the unnecessary size group (f088511)
        * Testing the item-activate signal by launching various programs.
          (064c679)
        * Adding script to restart the indicator (86b44a2)
        * Moving the local install to
          /home/jconti/Projects/indicators/example/build. (71145c5)
        * Reenabling silent automake (0baaa62)
        * Removed unnecessary deps. Let's see if I broke anything. (0f730f3)

2011-05-08 Jason Conti

        * Ignoring autogen files. (35817a5)
        * Updated formatting for indicator (a6938d0)
        * Updated the formatting for the interface (84aa05b)
        * Removed unnecessary function from interface, updated formatting in
          service. (b4506b8)
        * Adding helper scripts for testing. (39f5b5d)
        * Removing -Werror for the moment, since the warnings about unused
          variables and functions are fine. They may get used later,
          don't want to remove them yet. (22f3a67)
        * Stripped settings (21b63ad)
        * Stripped much of the unneeded code from the indicator. (baebbeb)
        * Removed the unnecessary menu items from dbus-shared.h and the
          unnecessary signal in the service xml. Probably broke the
          compile. (0d54212)
        * Missed a rename in autogen.sh (65fe548)
        * Removed most of the cruft from the service source. (6c1a1fa)
        * Fixed compiling errors from rename and removing utils. Time to rip
          out the unnecessary bits. (5157981)
        * The great rename is complete. Time to test compile and fix errors.
          (fb50bee)
        * Minor rename in settings-shared.h before removing most of the
          settings (or the entire file). (cd1212d)
        * Removed utils (ca037f1)
        * Renamed service files (0e7cf7e)
        * Changed the dbus names (547376a)
        * Renamed the interface. (6f81ccf)
        * Renaming service file (2fd2d43)

2011-05-07 Jason Conti

        * Removed the calendar item, didn't seem to be used, although I think
          it was moved to libido, so maybe that is why. (84b6003)
        * Ripped out datetime-prefs and the translations. (1c11361)
        * Import from lp:indicator-datetime (ea9ddba)