aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: c109d4771924862e97a09cfb8dcfab147fd531a9 (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
2020-08-21 15:30:51 +0200 Mike Gabriel

	* release 0.8.1 (HEAD -> master, tag: 0.8.1)

2020-08-21 15:21:52 +0200 Mike Gabriel (493e766)

	* README.md: Provide some basic information on the notifications
          indicator.

2020-08-21 15:06:05 +0200 Mike Gabriel (e362432)

	* Merge branch
          'sunweaver-pr/port-patches-from-indicator-notifications-by-trism'

2020-08-20 14:08:43 +0200 Mike Gabriel (d50e5a3)

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

2020-08-21 14:58:52 +0200 Jason Conti (ab78838)

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

2020-08-20 09:45:37 +0200 Jason Conti (aca92b3)

	* Rename blacklist to filter-list.

2020-08-20 09:41:52 +0200 Tasos Sahanidis (3fbc05d)

	* Add option to swap Settings and Clear.

2019-09-05 09:23:54 -0400 Jason Conti (d1b76b9)

	* Discard notifications when indicator is hidden.

2020-08-20 09:38:41 +0200 Jason Conti (8f19524)

	* Add do-not-disturb mode read/unread icons.

2020-08-20 09:35:44 +0200 Jason Conti (82ca918)

	* Add our own do-not-disturb setting.

2019-08-30 23:23:53 -0400 Jason Conti (77fb1c1)

	* Add mate do-not-disturb option if available.

2020-08-20 09:32:00 +0200 Jason Conti (e4bf77f)

	* Add blacklist hints for recent application names.

2020-08-20 14:36:47 +0200 Mike Gabriel (ed884c0)

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

2020-08-19 21:36:29 +0200 Mike Gabriel (b03aa69)

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

2020-08-17 22:59:20 +0200 Mike Gabriel (a128095)

	* release 0.8.0 (tag: 0.8.0)

2020-08-11 09:43:27 +0200 Robert Tari (f15307a)

	* Merge branch 'sunweaver-pr/sytemd-service-file' Attributes GH PR
          #5:
          https://github.com/AyatanaIndicators/ayatana-indicator-notifications/pull/5

2020-08-11 09:42:12 +0200 Robert Tari (7d7dc11)

	* 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

2020-08-10 11:52:51 +0200 Robert Tari (d9fced1)

	* Fix deprecations (fixes #4)

2020-08-10 10:08:27 +0200 Mike Gabriel (d75eb5f)

	* debian/*: Install indicator's systemd user service file into DEB
          package.

2020-08-10 10:07:58 +0200 Mike Gabriel (8189b65)

	* Start indicator in systemd when ayatana-indicators.target is
          started.

2020-08-06 20:52:40 +0000 Prosta4okua (ac5d686)

	* Translated using Weblate (Ukrainian)

2020-07-29 10:27:06 +0000 Ács Zoltán (af7f749)

	* Translated using Weblate (Hungarian)

2020-07-19 20:49:54 +0000 Tetra Homer (944db30)

	* Translated using Weblate (Persian)

2020-07-03 23:32:05 +0000 Tobias p (7cafce0)

	* Translated using Weblate (Danish)

2020-06-27 05:53:30 +0000 Zsolt Pastorek (3a99782)

	* Translated using Weblate (Slovak)

2020-06-21 11:31:04 +0000 Kate Kaz (fab1cf8)

	* Translated using Weblate (Ukrainian)

2020-06-19 15:35:36 +0000 Ács Zoltán (5fa3a25)

	* Translated using Weblate (Hungarian)

2020-06-14 04:02:44 +0000 MarongHappy (fdf612b)

	* Translated using Weblate (Korean)

2020-05-26 05:29:05 +0000 wdggg (408851b)

	* Translated using Weblate (Chinese (Simplified))

2020-05-09 06:57:30 +0000 iNetRoos (a19852e)

	* Translated using Weblate (Afrikaans)

2020-05-08 05:49:32 +0000 Abdusalam (4ac1105)

	* Translated using Weblate (Uyghur)

2020-04-27 09:47:05 +0000 Jeannette L (2c4e19a)

	* Translated using Weblate (Italian)

2020-04-27 10:11:06 +0000 Jeannette L (ba07bb9)

	* Translated using Weblate (French (Canada))

2020-04-27 09:27:05 +0000 Jeannette L (03281e5)

	* Translated using Weblate (English (United Kingdom))

2020-04-27 09:31:51 +0000 Jeannette L (9f45840)

	* Translated using Weblate (English (Canada))

2020-04-27 09:42:21 +0000 Jeannette L (0f110d9)

	* Translated using Weblate (English (Australia))

2020-04-16 15:49:07 +0000 george k (8fc593c)

	* Translated using Weblate (Greek)

2020-04-14 23:57:20 +0000 Jeannette L (29b8919)

	* Translated using Weblate (French)

2020-04-04 05:56:45 +0000 Kristjan Räts (097b646)

	* Translated using Weblate (Estonian)

2020-04-03 17:02:00 +0000 raimon ribal (f16bd63)

	* Translated using Weblate (Occitan)

2020-04-01 20:22:50 +0000 Davit Mayilyan (8f3870d)

	* Translated using Weblate (Armenian)

2020-03-29 08:19:29 +0000 Alexie Brindusescu (cbc68e1)

	* Translated using Weblate (Romanian)

2020-03-26 18:14:28 +0000 Adolfo Jayme Barrientos (918addb)

	* Translated using Weblate (Catalan)

2020-03-16 04:06:12 +0000 Grace Guo (ff14973)

	* Translated using Weblate (Japanese)

2020-03-14 04:30:52 +0000 yagoub fadel (a94a393)

	* Translated using Weblate (Arabic)

2020-03-05 10:57:52 +0000 Zdeněk Klauda (fe73eb4)

	* Translated using Weblate (Czech)

2020-02-25 16:31:12 +0000 Wellington Terumi Uemura (2e2201d)

	* Translated using Weblate (Portuguese (Brazil))

2020-02-06 15:13:34 +0000 Laércio Cordeiro (e139d80)

	* Translated using Weblate (Portuguese (Brazil))

2020-01-27 01:16:25 +0000 Ryan (b615cb2)

	* Translated using Weblate (Korean)

2020-01-25 12:44:26 +0000 Emiliano Gabriele (9dbc449)

	* Translated using Weblate (Italian)

2020-01-05 13:52:16 +0000 k Venkatesan kalimoorthy pillySA (faae206)

	* Translated using Weblate (Tamil)

2020-01-02 22:24:24 +0000 Milo Ivir (c20b14a)

	* Translated using Weblate (Croatian)

2019-12-20 23:45:17 +0000 DHU (ca23f4b)

	* Translated using Weblate (Portuguese)

2019-12-15 09:12:21 +0000 dmaxime (a687ba9)

	* Translated using Weblate (Italian)

2019-12-13 20:55:38 +0000 Prosta4okua (ed35d16)

	* Translated using Weblate (Ukrainian)

2019-11-26 15:37:47 +0000 Yuji Hon (0d6475c)

	* Translated using Weblate (Japanese)

2019-11-27 10:03:53 +0100 Mike Gabriel (cdb8b76)

	* release 0.4.1 (tag: 0.4.1)

2019-11-22 16:19:58 +0000 Burak Balta (191e5e5)

	* Translated using Weblate (Turkish)

2019-11-15 14:34:36 +0000 Theeiss (b10ea19)

	* Translated using Weblate (Portuguese)

2019-11-14 15:27:54 +0000 winqooq (48c6f82)

	* Translated using Weblate (Russian)

2019-11-10 09:33:03 +0000 Allan Nordhøy (482fa06)

	* Translated using Weblate (Norwegian Bokmål)

2019-11-06 22:52:53 +0000 Deleted User (1703507)

	* Translated using Weblate (Norwegian Bokmål)

2019-11-04 12:40:50 +0000 maryl (2ca658f)

	* Translated using Weblate (Russian)

2019-11-02 14:18:32 +0000 Allan Nordhøy (e06845c)

	* Translated using Weblate (Albanian)

2019-11-01 15:56:36 +0000 Deleted User (ab1d08c)

	* Translated using Weblate (Portuguese)

2019-10-30 13:58:59 +0000 Marcela Korreshi (981dd02)

	* Translated using Weblate (Albanian)

2019-10-23 14:46:54 +0000 Mattias Münster (7bfd4fd)

	* Translated using Weblate (Swedish)

2019-10-23 16:34:47 +0000 Fontanela (3073b64)

	* Translated using Weblate (Portuguese)

2019-10-12 13:44:12 +0000 Andrea Gatti (c1d9b36)

	* Translated using Weblate (Italian)

2019-10-07 16:43:41 +0000 Mateusz Rumiński (8e74a90)

	* Translated using Weblate (Polish)

2019-09-07 18:03:32 +0000 Abraham Roman (987f750)

	* Translated using Weblate (Spanish)

2019-09-02 19:44:40 +0000 Swann Martinet (96e8bd8)

	* Translated using Weblate (French)

2019-09-01 15:38:41 +0000 Moo (9f1b33d)

	* Translated using Weblate (Lithuanian)

2019-09-01 14:03:03 -0400 trism (26fd86c)

	* Merge pull request #2 from leela52452/master

2019-09-01 17:01:36 +0000 leela (554340f)

	* typo ellipsis, added

2019-08-29 10:17:03 +0000 Anders Jonsson (084399b)

	* Translated using Weblate (Swedish)

2019-08-28 18:49:01 +0000 Heimen Stoffels (0ed01d6)

	* Translated using Weblate (Dutch)

2019-08-29 05:49:01 +0000 Mike Gabriel (15d1e00)

	* Translated using Weblate (German)

2019-08-28 20:17:19 +0200 Mike Gabriel (cd1e9aa)

	* upload locale files

2019-06-08 17:38:00 -0400 Jason Conti (55483b8)

	* * Add a settings UI

2019-08-25 05:29:46 +0000 leela (fe7ea61)

	* Translated using Weblate (Telugu)

2019-08-10 10:03:58 +0000 KotagiriSahithi (192d47c)

	* Translated using Weblate (Telugu)

2019-08-06 03:07:33 +0000 Chang Xin (2271553)

	* Translated using Weblate (Chinese (Simplified))

2019-07-23 22:01:58 +0000 Simon Picot (3dad1c2)

	* Translated using Weblate (French)

2019-07-01 19:51:22 +0000 Elizabeth Sherrock (00f0cfe)

	* Translated using Weblate (Chinese (Simplified))

2019-06-18 09:06:15 +0000 THANOS SIOURDAKIS (344e562)

	* Translated using Weblate (Greek)

2019-04-17 15:13:27 +0000 Rui Mendes (b4fc77f)

	* Translated using Weblate (Portuguese)

2019-01-11 03:43:04 +0000 Louies (55effe9)

	* Translated using Weblate (Chinese (Traditional))

2018-11-18 21:11:24 +0000 ssantos (3b7d042)

	* Translated using Weblate (Portuguese)

2018-10-23 16:17:37 +0000 Iván Seoane (2c800fe)

	* Translated using Weblate (Galician)

2018-09-27 14:42:41 +0000 Володимир Бриняк (a5edc07)

	* Translated using Weblate (Ukrainian)

2018-08-23 17:08:47 +0000 WaldiS (f98c693)

	* Translated using Weblate (Polish)

2018-08-05 20:55:42 +0000 Yaron Shahrabani (2bd7c2d)

	* Translated using Weblate (Hebrew)

2018-07-29 01:53:08 +0000 chrismeurer (01bea21)

	* Translated using Weblate (Portuguese (Brazil))

2018-06-29 01:42:01 +0000 Jonathan Ramos dos Santos (854cabd)

	* Translated using Weblate (Portuguese (Brazil))

2018-05-08 12:54:27 +0000 Heimen Stoffels (b8b3541)

	* Translated using Weblate (Dutch)

2018-05-02 18:43:26 +0000 Adolfo Jayme Barrientos (b54f0b9)

	* Translated using Weblate (Spanish)

2018-04-03 14:32:21 +0000 Pavel Borecki (1c9c71a)

	* Translated using Weblate (Czech)

2018-04-03 14:32:14 +0000 Pavel Borecki (6b1a575)

	* Translated using Weblate (Czech)

2018-04-03 14:32:06 +0000 Pavel Borecki (150397c)

	* Translated using Weblate (Czech)

2018-04-03 14:29:54 +0000 Pavel Borecki (590e477)

	* Translated using Weblate (Czech)

2018-03-29 21:23:12 +0000 Anders Jonsson (e20b408)

	* Translated using Weblate (Swedish)

2018-03-18 15:19:38 +0100 Mike Gabriel (4408ecb)

	* release 0.4.0 (tag: 0.4.0)

2018-03-18 15:19:22 +0100 Mike Gabriel (16d9585)

	* debian/rules: Use NEWS file as upstream ChangeLog.

2018-03-18 15:11:27 +0100 Mike Gabriel (db57cc0)

	* debian/copyright: Fix Source: field's URL.

2018-03-18 15:10:57 +0100 Mike Gabriel (78bfe0b)

	* debian/copyright: Use secure URI for copyright format reference.

2018-03-18 15:06:28 +0100 Mike Gabriel (534fd91)

	* debian/control: Bump Standards-Version: to 4.1.3. No changes
          needed.

2018-03-18 15:05:43 +0100 Mike Gabriel (2a15d3c)

	* debian/rules: Make sure config.guess and config.sub are removed
          during clean, as well.

2018-03-18 15:05:05 +0100 Mike Gabriel (7340464)

	* debian/rules: Keep .pot file in po/ after dh_auto_clean. Work
          around for flawed gettext autotools integration it seems.

2018-03-01 10:31:01 +0000 Moo (bd404e0)

	* Translated using Weblate (Lithuanian)

2018-02-28 01:50:02 +0000 Мира Странная (ed1a794)

	* Translated using Weblate (Russian)

2018-02-08 11:30:21 +0000 Mertcan Gokgoz (c4448e2)

	* Translated using Weblate (Turkish)

2018-02-03 08:52:29 +0000 Cristian Gherman (e6fec6d)

	* Translated using Weblate (Romanian)

2018-02-03 08:51:03 +0000 Cristian Gherman (016933e)

	* Translated using Weblate (Romanian)

2018-01-22 21:02:32 +0000 Марс Ямбар (d3109e8)

	* Translated using Weblate (Ukrainian)

2018-01-01 00:34:21 +0000 Anders Jonsson (b05583d)

	* Translated using Weblate (Swedish)

2017-12-19 16:03:34 +0000 Allan Nordhøy (3c4a520)

	* Translated using Weblate (Norwegian Bokmål)

2018-01-04 09:48:33 +0000 Yaron Shahrabani (ad29133)

	* Translated using Weblate (Hebrew)

2017-12-31 15:17:43 +0000 Sebastian Rasmussen (5f930cb)

	* Translated using Weblate (Swedish)

2017-12-23 10:37:23 +0000 Kristjan Räts (de87650)

	* Translated using Weblate (Estonian)

2017-12-18 21:52:56 +0000 Viktar Vauchkevich (b2bd3fc)

	* Translated using Weblate (Belarusian)

2017-12-06 12:14:51 +0100 Mike Gabriel (3b17cfa)

	* po/de.po: Tiny translation fix.

2017-12-06 12:01:21 +0100 Mike Gabriel (4053ab0)

	* Enable locale support at runtime.

2017-12-06 09:35:31 +0100 Mike Gabriel (84fb494)

	* po/de.po: White-space fixes.

2017-12-06 09:34:21 +0100 Mike Gabriel (ac0556f)

	* po/de.po: Manually add German translation. We are not on Weblate,
          yet.

2017-12-06 09:15:47 +0100 Mike Gabriel (6c0e236)

	* Update translation files.

2017-12-06 09:15:09 +0100 Mike Gabriel (7ce7809)

	* Makefile.am: Add some build cruft files to DISTCLEANFILES.

2017-12-06 09:14:51 +0100 Mike Gabriel (cabc67e)

	* update-po.sh: Tweak file names in .po files ending with
          .xml.in.in.h.

2017-12-06 09:13:36 +0100 Mike Gabriel (48e19a9)

	* update-pot.sh: Drop the .h from filenames in .pot file ending with
          .xml.in.in.h.

2017-12-06 09:08:44 +0100 Mike Gabriel (cf88f15)

	* po/: Add LINGUAS file.

2017-12-05 10:16:14 +0100 Mike Gabriel (5e34246)

	* debian/postinst: Remove. The libglib2.0-bin package has a trigger
          for that for years.

2017-12-05 10:15:30 +0100 Mike Gabriel (6604804)

	* debian/control: Correct the point about the configuration dialog,
          the dialog is actually dconf-editor for now.

2017-12-04 15:04:00 -0500 Jason Conti (6bdff16)

	* Update icon names in source defines

2017-12-03 00:53:32 +0100 Mike Gabriel (3c81b45)

	* Name change of libnotifications.so -> libayatana-notifications.so.

2017-12-02 23:39:35 +0100 Mike Gabriel (08b5d49)

	* debian/control: Fix D (glib2.0-bin -> libglib2.0-bin).

2017-12-02 21:08:32 +0100 Mike Gabriel (848ebda)

	* gschema: Namespace adaptations for gschema file.

2017-12-02 21:05:44 +0100 Mike Gabriel (da40552)

	* Drop .bzrignore.

2017-12-02 20:48:18 +0100 Mike Gabriel (3e0b02e)

	* debian/{control,postinst}: Recompile GSettings schemas at post
          installation.

2017-12-02 19:41:09 +0100 Mike Gabriel (7ed5f4a)

	* Makefile.am: no localinstall anymore.

2017-12-02 19:22:09 +0100 Mike Gabriel (a6c920d)

	* po/: Initialize translation files.

2017-12-02 19:19:58 +0100 Mike Gabriel (ebc7f29)

	* update-po(t).sh: Add translation update tools.

2017-12-02 19:19:37 +0100 Mike Gabriel (a559a64)

	* Import and adapt packaging from recent-notifications' ppa-indicator
          branch.

2017-12-02 19:18:59 +0100 Mike Gabriel (6bc2b28)

	* Convert to Ayatana Indicators.

2017-03-15 14:58:36 -0400 Jason Conti (27a4b02)

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

2016-08-29 14:46:50 -0400 Jason Conti (6dd7a72)

	* * Need to escape the url otherwise certain acceptable characters
          can break the   markup parsing in the GtkLabel. * Bump
          version. (tag: 0.3.2)

2016-08-29 13:21:07 -0400 Jason Conti (700170f)

	* * 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.
          (tag: 0.3.1)

2016-08-29 12:44:08 -0400 Jason Conti (ed985a8)

	* * Comment the new functions in notification-menuitem.c * Bump
          version.

2016-08-28 16:50:55 -0400 Jason Conti (76d7872)

	* * Make sure the button event started and ended on the close image
          before we   dismiss the notification

2016-08-28 15:49:33 -0400 Jason Conti (39810bb)

	* * 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

2016-08-27 15:35:54 -0400 Jason Conti (83f8134)

	* * Scan the notification body for links and mark them up, escape
          everything else

2016-08-27 14:40:47 -0400 Jason Conti (9b0c58a)

	* * Import urlregex files to handle matching and expanding urls

2016-08-25 16:28:00 -0400 Jason Conti (9cb6e6e)

	* * 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

2015-10-23 17:51:59 -0400 Jason Conti (b67ee91)

	* * Fix a serious memory leak in notification_new_from_dbus_message.
          * Bump version.

2014-05-31 14:21:33 -0400 Jason Conti (c136c4f)

	* * Add button argument to notification menuitem clicked signal *
          Replace deprecated stock icon api

2014-01-15 15:23:15 -0500 Jason Conti (8be9606)

	* Add AM_PROG_AR to silence autotools warning (tag: 0.2.6)

2014-01-15 15:18:12 -0500 Jason Conti (9a1bcbd)

	* Bump version to 0.2.6

2014-01-15 15:15:40 -0500 Jason Conti (5be88b3)

	* * Use icon-name instead of pixbufs to set the indicator icon * Move
          the default icons to datadir/pixmaps/

2014-01-15 15:07:59 -0500 Jason Conti (5ef0c20)

	* * New GSetting:   - "blacklist" - discard notifications matching
          appname

2013-02-17 22:50:15 -0500 Jason Conti (d16be93)

	* * Bump version to 0.2.5 (tag: 0.2.5)

2013-02-17 22:46:34 -0500 Jason Conti (69d098d)

	* * Import patch for eavesdrop support required by recent dbus
          versions.   - Drop this patch if using an older version
          that doesn't require eavesdropping.

2013-02-17 22:38:46 -0500 Jason Conti (075774f)

	* * Add GSettings support.   - hide-indicator key to show/hide the
          indicator   - max-items key to change the maximum number
          of displayed notifications

2012-04-04 21:17:15 -0400 Jason Conti (233e68f)

	* * Bump for version 0.2.4 (tag: 0.2.4)

2012-04-04 21:14:55 -0400 Jason Conti (8e252e0)

	* * 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.

2012-04-04 20:52:52 -0400 Jason Conti (8d92259)

	* Bump to version 0.2.3 (tag: 0.2.3)

2012-02-29 13:38:00 -0500 Jason Conti (ddc4a14)

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

2012-02-26 15:15:15 -0500 Jason Conti (1ac07fe)

	* * Update potfiles. * Bump version to 0.2.2. (tag: 0.2.2)

2012-02-26 15:10:19 -0500 Jason Conti (9203963)

	* * 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

2012-02-26 15:03:47 -0500 Jason Conti (5d8d44a)

	* * Move the button events to notification menuitem. * Add a clicked
          event to the notification menuitem. * Drop the old
          new_notification_menuitem code.

2012-02-26 14:39:01 -0500 Jason Conti (1bcf41c)

	* * Move the notification menuitem to a separate class.

2012-02-26 11:25:51 -0500 Jason Conti (df8ae86)

	* * 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.

2012-02-25 23:35:55 -0500 Jason Conti (bafd836)

	* * Update potfiles * Bump version to 0.2.1 (tag: 0.2.1)

2012-02-25 20:53:39 -0500 Jason Conti (7dedb95)

	* * Bump version to 0.2.0 (tag: 0.2.0)

2012-02-25 20:52:16 -0500 Jason Conti (49b8359)

	* * Don't hide the menu when removing a notification.

2012-02-25 19:46:06 -0500 Jason Conti (a232d4c)

	* * Remove a notification when clicked. Unfortunately this hides the
          menu   unless the item is activated with the spacebar, so
          needs fixing.

2012-02-25 16:32:13 -0500 Jason Conti (a286008)

	* * Implement the clear item * Add safety checks to most of the
          functions

2012-02-25 16:11:54 -0500 Jason Conti (2a370d1)

	* * Reorganize and comment indicator-notifications.c

2012-02-25 15:16:19 -0500 Jason Conti (5e46847)

	* * Add a clear item that also keeps a notification count.   - Still
          need to implement the clear action

2012-02-25 14:39:22 -0500 Jason Conti (2a29da2)

	* * Reintroduce the visible item limit, currently hard-coded to 5

2012-02-25 13:44:13 -0500 Jason Conti (a46ca96)

	* * Add notification_is_empty to catch useless notifications such as 
           brightness and volume, which are not always properly
          marked.

2012-02-25 13:20:12 -0500 Jason Conti (6712160)

	* Forgot AC_OUTPUT in configure.ac

2012-02-25 13:17:16 -0500 Jason Conti (d7fc1f1)

	* * Move dev tools to the tools/ directory * Missed some extra [] in
          configure.ac

2012-02-25 13:08:27 -0500 Jason Conti (19e6cdf)

	* * Drop old dbus service file. * Clean up configure.ac * Drop gtk2
          build

2011-09-08 13:34:37 -0400 Jason Conti (dad2586)

	* * Disable the resize_menu code.

2011-08-29 12:39:19 -0400 Jason Conti (52cd1d8)

	* * Make sure to unref the dbus-spy when the indicator is disposed.

2011-08-29 12:32:35 -0400 Jason Conti (e6a38a2)

	* * Switch to gtk_menu_shell_prepend so new messages appear on top.

2011-08-29 11:11:43 -0400 Jason Conti (cb1da85)

	* * 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.

2011-08-21 17:43:53 -0400 Jason Conti (467b817)

	* Revert previous commit, the reposition fix isn't working.

2011-08-20 14:55:49 -0400 Jason Conti (fd33d25)

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

2011-08-19 20:18:07 -0400 Jason Conti (091af8d)

	* * Bump for oneiric ppa release (tag: 0.1.4)

2011-08-19 18:46:22 -0400 Jason Conti (a134d99)

	* * Fix XML service substitution so it works from a separate build
          directory

2011-08-19 13:32:25 -0400 Jason Conti (5989649)

	* * 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 (tag: 0.1.3)

2011-08-19 11:15:33 -0400 Jason Conti (c5ac5ce)

	* Update libindicator pkg-config names.

2011-07-02 14:43:17 -0400 Jason Conti (6d46725)

	* * Updated testing scripts for new gtk3 indicator.

2011-06-29 14:10:28 -0400 Jason Conti (e50789b)

	* * Building --with-gtk=3 for oneiric

2011-05-27 16:21:44 -0400 Jason Conti (5c375d5)

	* 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.

2011-05-19 20:41:30 -0400 Jason Conti (a25826c)

	* Bumping version and removing some unnecessary dependencies.

2011-05-18 16:38:49 -0400 Jason Conti (88c859a)

	* 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) (tag: 0.1.0)

2011-05-18 15:43:45 -0400 Jason Conti (847eb7d)

	* 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.

2011-05-18 14:32:05 -0400 Jason Conti (56ddef2)

	* Updated the pot file. Not many strings so far.

2011-05-18 13:54:39 -0400 Jason Conti (c563991)

	* Updating icon path to correct location in preparation for proper
          install.

2011-05-17 16:49:45 -0400 Jason Conti (344eaf6)

	* 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%).

2011-05-17 16:15:41 -0400 Jason Conti (425bde7)

	* 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).

2011-05-17 14:47:34 -0400 Jason Conti (c802236)

	* 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.

2011-05-16 16:43:47 -0400 Jason Conti (4952566)

	* Proof of concept complete, should probably add timestamps next.

2011-05-16 15:44:35 -0400 Jason Conti (465d4f1)

	* A bit of renaming with the dbusmenu properties.

2011-05-16 14:38:36 -0400 Jason Conti (0d7a9f1)

	* 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?

2011-05-16 14:19:15 -0400 Jason Conti (232a243)

	* Should have checked my syntax errors before that last commit. Fixed
          now.

2011-05-16 14:14:36 -0400 Jason Conti (2fe93bc)

	* Adding a new notification menuitem type. It isn't currently a
          custom menuitem, but may need to be eventually.

2011-05-15 15:56:57 -0400 Jason Conti (f055a17)

	* Update indicator icon to unread when a message is received, and to
          read when the menu is hidden.

2011-05-15 15:41:32 -0400 Jason Conti (239dec6)

	* 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.

2011-05-15 14:05:25 -0400 Jason Conti (fc92dc2)

	* Loading the read and unread icons when the image is first
          requested. TODO: Need to reload them when the icon theme
          changes.

2011-05-14 16:28:47 -0400 Jason Conti (d23cd18)

	* Removed the label from the indicator. May add it back later for a
          message count.

2011-05-14 16:17:13 -0400 Jason Conti (11998bf)

	* 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.

2011-05-14 14:54:58 -0400 Jason Conti (d98fb2f)

	* Adding gdk pixbuf to the deps for gtk2. Don't know what to use with
          gtk3 yet.

2011-05-14 14:30:28 -0400 Jason Conti (d49b557)

	* Forgot to add data/icons/Makefile to configure.ac.

2011-05-14 14:18:05 -0400 Jason Conti (dd5d2de)

	* Attempting to add icons to the install target. Will put them in
          correct locations later.

2011-05-14 13:37:48 -0400 Jason Conti (706a318)

	* Adding back the functionality to clear the notifications.

2011-05-14 13:32:00 -0400 Jason Conti (0b8c3b2)

	* 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).

2011-05-13 18:16:54 -0400 Jason Conti (bdf9d90)

	* Added add_message_item to the idle loop and it seems to be working
          much better now.

2011-05-13 18:05:04 -0400 Jason Conti (51bea07)

	* Checking the number of children. They are correct, so they just
          aren't being sent over dbus.

2011-05-13 17:49:33 -0400 Jason Conti (64930be)

	* Removing the queue for the moment, adding menu items when messages
          arrive seems to only be partially working for some reason.

2011-05-13 16:51:19 -0400 Jason Conti (fe71ed3)

	* 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.

2011-05-13 14:34:34 -0400 Jason Conti (9c9ceb6)

	* Integrated the dbus-spy. Menu items for notification summaries are
          appended as they arrive.

2011-05-13 14:10:30 -0400 Jason Conti (c64309f)

	* Importing dbus-spy and notification dbus objects to watch dbus for
          org.freedesktop.Notification.Notify messages (from test
          project).

2011-05-10 15:22:36 -0400 Jason Conti (2d97be1)

	* 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.

2011-05-10 15:01:22 -0400 Jason Conti (229226f)

	* Commenting out an unneeded variable to remove a warning.

2011-05-10 14:58:09 -0400 Jason Conti (244eb97)

	* Missed a rename.

2011-05-10 14:56:00 -0400 Jason Conti (4c73eea)

	* Completed the great renaming. Time for a test build.

2011-05-10 14:52:15 -0400 Jason Conti (92548a1)

	* Renamed the indicator

2011-05-10 14:10:56 -0400 Jason Conti (875c0e1)

	* Renamed the rest of the files, and updated the file headers.

2011-05-10 14:03:04 -0400 Jason Conti (8aadb63)

	* Removed the interface from example, no longer needed, so removing
          it here too.

2011-05-10 13:46:02 -0400 Jason Conti (37ab8b9)

	* Cleaned up po

2011-05-10 13:44:25 -0400 Jason Conti (a9b5d33)

	* Renamed the service data

2011-05-10 13:40:22 -0400 Jason Conti (8af1b04)

	* Beginning the great renaming from example to notifications.

2011-05-09 17:55:59 -0400 Jason Conti (b358f7c)

	* 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.

2011-05-09 17:46:54 -0400 Jason Conti (77b322f)

	* Adding some code to demonstrate when the menu is shown/hidden,
          which will be required for indicator-notifications.

2011-05-09 17:20:20 -0400 Jason Conti (f088511)

	* Removing the unnecessary size group

2011-05-09 15:30:54 -0400 Jason Conti (064c679)

	* Testing the item-activate signal by launching various programs.

2011-05-09 15:09:17 -0400 Jason Conti (86b44a2)

	* Adding script to restart the indicator

2011-05-09 15:05:26 -0400 Jason Conti (71145c5)

	* Moving the local install to
          /home/jconti/Projects/indicators/example/build.

2011-05-09 14:54:55 -0400 Jason Conti (0baaa62)

	* Reenabling silent automake

2011-05-09 14:49:18 -0400 Jason Conti (0f730f3)

	* Removed unnecessary deps. Let's see if I broke anything.

2011-05-08 17:05:14 -0400 Jason Conti (35817a5)

	* Ignoring autogen files.

2011-05-08 16:56:05 -0400 Jason Conti (a6938d0)

	* Updated formatting for indicator

2011-05-08 16:38:32 -0400 Jason Conti (84aa05b)

	* Updated the formatting for the interface

2011-05-08 16:28:35 -0400 Jason Conti (b4506b8)

	* Removed unnecessary function from interface, updated formatting in
          service.

2011-05-08 16:12:36 -0400 Jason Conti (39f5b5d)

	* Adding helper scripts for testing.

2011-05-08 15:42:12 -0400 Jason Conti (22f3a67)

	* 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.

2011-05-08 15:38:05 -0400 Jason Conti (21b63ad)

	* Stripped settings

2011-05-08 15:36:35 -0400 Jason Conti (baebbeb)

	* Stripped much of the unneeded code from the indicator.

2011-05-08 15:08:04 -0400 Jason Conti (0d54212)

	* Removed the unnecessary menu items from dbus-shared.h and the
          unnecessary signal in the service xml. Probably broke the
          compile.

2011-05-08 15:03:09 -0400 Jason Conti (65fe548)

	* Missed a rename in autogen.sh

2011-05-08 14:58:59 -0400 Jason Conti (6c1a1fa)

	* Removed most of the cruft from the service source.

2011-05-08 14:15:10 -0400 Jason Conti (5157981)

	* Fixed compiling errors from rename and removing utils. Time to rip
          out the unnecessary bits.

2011-05-08 14:01:02 -0400 Jason Conti (fb50bee)

	* The great rename is complete. Time to test compile and fix errors.

2011-05-08 13:54:24 -0400 Jason Conti (cd1212d)

	* Minor rename in settings-shared.h before removing most of the
          settings (or the entire file).

2011-05-08 13:50:28 -0400 Jason Conti (ca037f1)

	* Removed utils

2011-05-08 13:49:32 -0400 Jason Conti (0e7cf7e)

	* Renamed service files

2011-05-08 13:45:14 -0400 Jason Conti (547376a)

	* Changed the dbus names

2011-05-08 13:39:02 -0400 Jason Conti (6f81ccf)

	* Renamed the interface.

2011-05-08 13:30:10 -0400 Jason Conti (2fd2d43)

	* Renaming service file

2011-05-07 19:05:00 -0400 Jason Conti (84b6003)

	* Removed the calendar item, didn't seem to be used, although I think
          it was moved to libido, so maybe that is why.

2011-05-07 18:50:54 -0400 Jason Conti (1c11361)

	* Ripped out datetime-prefs and the translations.

2011-05-07 12:31:24 -0400 Jason Conti (ea9ddba)

	* Import from lp:indicator-datetime