-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
5742 lines (4086 loc) · 199 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
2024-05-22 Mike Gabriel
* release 24.5.0 (HEAD -> main, tag: 24.5.0)
2024-05-21 Robert Tari
* Merge branch 'sunweaver-pr/lomiri-indicators-target' (80262720)
2024-05-21 Mike Gabriel
* data/ayatana-indicator-messages.service.in: Become part of
lomiri-indicators.target. (1d3b8041)
2024-04-01 复予
* Translated using Weblate (Chinese (Simplified)) (334668ad)
2023-10-15 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (b14c633e)
2023-10-13 Mike Gabriel
* release 23.10.0 (f7df36d2) (tag: 23.10.0)
2023-07-01 spnux
* Translated using Weblate (French) (4e3a91e0)
2023-06-27 Sylke Vicious
* Translated using Weblate (Italian) (fb16fe9c)
2023-06-22 Joan CiberSheep
* Translated using Weblate (Catalan) (8f4db5e0)
2023-05-02 Eryk Michalak
* Translated using Weblate (Polish) (69b5fc47)
2023-04-27 Mike Gabriel
* Merge branch '3v1n0-handle-user-properly' (19b3d98b)
2023-04-18 Marco Trevisan (Treviño)
* accounts-manager: Cancel account manager requests on new user
(a766109d)
* accounts-service: Also update the user when a new user is added
(e970fb61)
2023-04-27 Mike Gabriel
* Merge branch '3v1n0-ownership-fixes' (720d830a)
2023-04-18 Marco Trevisan
* account-service: Do not unref UserManager owned user (9efa02e6)
2023-04-20 Vilakone Thammavong
* Translated using Weblate (Lao) (057071c8)
2023-04-06 ssantos
* Translated using Weblate (Portuguese) (af7a4e5c)
2023-03-16 Heimen Stoffels
* Translated using Weblate (Dutch) (4e95ce57)
2023-03-03 gallegonovato
* Translated using Weblate (Spanish) (f81e8f2e)
2023-02-10 Luna Jernberg
* Translated using Weblate (Swedish) (83955248)
2022-12-30 Milo Ivir
* Translated using Weblate (Croatian) (7506e8b2)
2022-10-19 Kristjan Räts
* Translated using Weblate (Estonian) (ff70552d)
2022-09-29 이정희
* Translated using Weblate (Korean) (4bdd1875)
2022-09-25 Oğuz Ersen
* Translated using Weblate (Turkish) (2b91b38e)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (0000d588)
* Translated using Weblate (Russian) (017c4c60)
2022-09-14 Mike Gabriel
* release 22.9.0 (a0e4d6f3) (tag: 22.9.0)
2022-09-14 Milan Korecky
* Translated using Weblate (Czech) (84f9be6e)
2022-09-14 Mike Gabriel
* po/*.po{,t}: Translation strings update (esp. source file
references). (5f4ac0d9)
* update-po{,t}.sh: Also catch multi-file source file references.
(a6fd689f)
2022-09-12 Robert Tari
* Merge branch 'sunweaver-pr/beautify-paths-in-pot-file' (00b4f218)
2022-09-11 Mike Gabriel
* po/ayatana-indicator-messages.pot: Update file. (fecf9a62)
* update-po{,t}.sh: Omit ../ at beginning of file names in .pot file.
(cd371332)
2022-09-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (e60ed833)
2022-09-07 Moo
* Translated using Weblate (Lithuanian) (2eb2cd13)
2022-09-06 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (dccdc62e)
2022-09-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (ddef094d)
2022-09-05 Mike Gabriel
* Translated using Weblate (German) (c2d8f015)
* po/*.po{,t}: Translation strings update. (7e0f2871)
* update-po{,t}.sh: Update script to CMake port of this project.
(3fbace03)
2022-09-02 Robert Tari
* Merge branch 'sunweaver-pr/tooltip-support' (e19755aa)
2022-08-03 Robert Tari
* tests/indicator-test.cpp: Adjust tests to use tooltips (b9dad155)
2022-07-22 Mike Gabriel
* src/im-application-list.c: Add tooltip support. (b7eafa59)
2022-04-23 Sergii Horichenko
* Translated using Weblate (Ukrainian) (e1d6d845)
2022-04-01 Robert Tari
* Merge branch 'sunweaver-pr/drop-extra-copying-file' (41ad2004)
2022-04-01 Mike Gabriel
* COPYING.GPLv3: Drop file. Duplicate of COPYING file. (769eeac3)
2022-02-17 Mike Gabriel
* release 22.2.0 (81d79bda) (tag: 22.2.0)
2022-02-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-multicore-compile-error' (623661f6)
2022-02-06 Robert Tari
* tests/CMakeLists.txt: Fix potential multicore compile error
(aa72ca24)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(6e53e966)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (83aa7c3d)
2022-01-12 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(a2743f91)
* Clean up compilation flags (552f4c5c)
2021-12-14 Mike Gabriel
* .build.yml: Building libayatana-common with
-DENABLE_LOMIRI_FEATURES requires
liblomiri-url-dispatcher(-dev). (69eac3c0)
* release 21.12.0 (8ada43e0) (tag: 21.12.0)
* Merge branch
'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
(90a35b7c)
2021-12-06 Robert Tari
* .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
(d1846af0)
2021-11-23 phlostically
* Translated using Weblate (Esperanto) (557c6222)
2021-11-22 phlostically
* Translated using Weblate (Esperanto) (73b0304b)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (b6c6f092)
2021-11-16 Phil Clifford
* Translated using Weblate (Gaelic) (e859baca)
2021-11-17 Mike Gabriel
* release 0.9.0 (ae5a2daa) (tag: 0.9.0)
* libmessaging-menu/messaging-menu.symbols: Also exclude
_messaging_menu_*. These are also private symbols.
(7c5f447e)
2021-11-03 ElectrifiedSpeed
* Translated using Weblate (Macedonian) (ce354d31)
2021-11-02 Mike Gabriel
* Merge branch
'tari01-pr/rename-com-ubuntu-touchaccountsservice-securityprivacy'
(1fef1bc8)
2021-11-02 Robert Tari
* Rename com.ubuntu.touch.AccountsService.SecurityPrivacy (5c537e3b)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/accountsservice-sound' (ce6417a2)
2021-11-01 Robert Tari
* tests/accounts-service-mock.h: Rename
com.ubuntu.touch.AccountsService.Sound to
com.lomiri.touch.AccountsService.Sound (37cbcad1)
* Whitespace fix (5e5d6bce)
2021-10-26 Robert Tari
* Merge branch 'sunweaver-pr/messaging-menu-symbols' (b2afa157)
2021-10-26 Mike Gabriel
* debian/libmessaging-menu0.symbols: Add Build-Depends-Package: meta
data field. (d540d32c)
* debian/libmessaging-menu0.symbols: Update .symbols file back to its
original state (before the CMake change-over). (a3070e55)
* libmessaging-menu/: Limit exported symbols to messaging_menu_*.
(9837ffd7)
2021-10-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-cleanup' (8f8d0ccc)
2021-10-25 Mike Gabriel
* .build.yml: Run unit tests in build_scripts: target. (2ac31d4a)
* .build.yml: Drop autogen.sh support. (b8b4dbc9)
2021-10-22 Robert Tari
* data/CMakeLists.txt: Do not use automatic GSchema compilation
(158ff4f5)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/add-readme-and-instructions' (48b040f4)
2021-10-18 Robert Tari
* Add info and build instructions (1ea81c71)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/enable-ubuntu-tests' (4c32e0f1)
2021-09-02 Robert Tari
* .build.yml: Also run unit tests during CI builds against Ubuntu.
(11869aed)
2021-10-18 Robert Tari
* .build.yml: Enable tests for Ubuntu builds (aa1d7ecf)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/move-to-cmake' (b2beaa34)
2021-10-19 Robert Tari
* Update debian/ files (421e9dcd)
2021-10-15 Robert Tari
* Remove config.h dependency (641e08a6)
* Do a natural CMake file configuration (3fc70514)
* Fix and enable indicator-test (31f4ed07)
* Remove Automake files (4113d1bc)
* Add CMake files (813ad909)
2021-10-18 Robert Tari
* Whitespace fix (8ce6d07d)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (9ad235af)
2021-10-18 Mike Gabriel
* Revert ".build.yml: Also run unit tests during CI builds against
Ubuntu." (9fbdd237)
* Merge branch 'UbuntuBudgie-main' (c86b4bd0)
2021-10-10 David Mohammed
* Allow autostart for Budgie Desktop (485d7ea1)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/update-ido-names' (f85f0fd3)
2021-09-20 Robert Tari
* Update Ayatana IDO names (b2aad292)
2021-09-02 Robert Tari
* .build.yml: Also run unit tests during CI builds against Ubuntu.
(6c1a8c95)
2021-08-29 Hosted Weblate
* Update translation files (1af4710b)
2021-08-28 Mike Gabriel
* .build.yml: Fix for previous commit. First cd .., then remove the
libayatana-common-build folder. (a3269365)
* .build.yml: Remove source folder libayatana-common-build/ after
build. Confuses intltool-update. (6fdf6859)
2021-08-28 Weblate
* Added translation using Weblate (Kurdish (Southern)) (fce97d0f)
* Added translation using Weblate (Kurdish (Northern)) (8688db00)
2021-08-28 Mike Gabriel
* po/: Drop zh_Hant.po: Drop duplicate file for Chinese
(Tranditional) and adjust LINGUAS files. (89f1d8dc)
* .travis.yml: Fix branch name what is now the default branch in
ayatana-dev-scripts. (8c2c6d73)
2021-06-04 Hosted Weblate
* Update translation files (66ea9cad)
2021-06-03 Weblate
* Added translation using Weblate (Chinese (Traditional)) (9d767090)
2021-06-03 Hosted Weblate
* Update translation files (c37e577b)
2021-05-04 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (60c60007)
2021-05-01 Tomáš Marný
* Translated using Weblate (Czech) (d6ac05e7)
2021-03-30 Hosted Weblate
* Update translation files (0959ee86)
2021-03-29 Weblate
* Added translation using Weblate (Chinese (Simplified)
(zh_LATN@pinyin)) (cb591d0d)
2021-03-18 Reza Almanda
* Translated using Weblate (Indonesian) (f8ce7a2c)
2021-05-04 Mike Gabriel
* .travis.yml: Don't run autotools builds twice (once via script,
once directly). (741b89b8)
* .build.yml: Disable tests for autotools builds when not on Debian.
(4f2cb284)
* src/Makefile.am: Drop -Werror compiler flag for now. Not helpful
when setting up CI builds for dirty code. (f906e47f)
* Travis CI: Intial draft of CI builds. (66ef2300)
2021-05-01 Tomáš Marný
* Translated using Weblate (Czech) (c44c0246)
2021-03-30 Hosted Weblate
* Update translation files (d2689ea9)
2021-03-29 Weblate
* Added translation using Weblate (Chinese (Simplified)
(zh_LATN@pinyin)) (e71b9ab3)
2021-03-18 Reza Almanda
* Translated using Weblate (Indonesian) (d0cbd316)
2021-01-28 Mike Gabriel
* release 0.8.2 (70f795b1) (tag: 0.8.2)
2020-12-30 J. Lavoie
* Translated using Weblate (French (Canada)) (b2bd07a7)
* Translated using Weblate (French) (134f1aeb)
2020-11-26 Ács Zoltán
* Translated using Weblate (Hungarian) (e6323387)
2020-11-12 Mike Gabriel
* Translated using Weblate (German) (c1762331)
2020-10-31 Joan CiberSheep
* Translated using Weblate (Catalan) (e980678f)
2020-11-01 Hosted Weblate
* Update translation files (0d77f784)
2020-10-31 Weblate
* Added translation using Weblate (Italian) (288838ae)
* Added translation using Weblate (Tamil (Sri Lanka)) (56cbbf9d)
* Added translation using Weblate (Dhivehi) (01aed06f)
* Added translation using Weblate (Venetian) (4949941b)
* Added translation using Weblate (Kashubian) (58673896)
* Added translation using Weblate (Macedonian) (a4afb789)
* Added translation using Weblate (Friulian) (37ceafcf)
* Added translation using Weblate (Tatar) (d00be23a)
2020-10-29 Milan Korecky
* Translated using Weblate (Czech) (b8473296)
2020-10-26 Adrià Martín
* Translated using Weblate (Sardinian) (c77ed130)
2020-10-27 Hosted Weblate
* Update translation files (31ce3522)
2020-10-26 Michele
* Translated using Weblate (Italian) (37cdd3cf)
2020-10-26 Weblate
* Added translation using Weblate (Manx) (3451267a)
* Added translation using Weblate (Afar) (4f909072)
* Added translation using Weblate (Nyanja) (6b392867)
* Added translation using Weblate (Assamese) (1f180d27)
* Added translation using Weblate (Wolof) (2ce3dc83)
2020-10-18 Quentin PAGÈS
* Translated using Weblate (Occitan) (3f9fa779)
2020-10-10 Yota321
* Translated using Weblate (Bengali) (3f0cfa50)
2020-09-30 Yaron Shahrabani
* Translated using Weblate (Hebrew) (17baad6c)
2020-09-29 Adolfo Jayme Barrientos
* Translated using Weblate (Catalan) (720f5c99)
2020-09-28 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (387ec194)
2020-09-25 Quentin PAGÈS
* Translated using Weblate (Occitan) (a7c7ff16)
2020-09-23 Viktar Vauchkevich
* Translated using Weblate (Belarusian) (3e84e6c8)
2020-09-10 Mike Gabriel
* release 0.8.1 (782eaf73) (tag: 0.8.1)
2020-09-04 antuketot76
* Translated using Weblate (Malay) (ea875d9a)
2020-08-17 Mike Gabriel
* release 0.8.0 (c8108ecb) (tag: 0.8.0)
2020-08-11 Mike Gabriel
* Merge branch 'tari01-pr/replace-x-canonical-attributes' (dd45c289)
2020-08-11 Robert Tari
* Replace x-canonical attributes (d447b27d)
* Merge branch 'sunweaver-pr/systemd-service-file' Attributes GH PR
#11:
https://github.com/AyatanaIndicators/ayatana-indicator-messages/pull/11
(3fc4dab5)
2020-08-10 Mike Gabriel
* debian/*: Install systemd user service file into DEB package.
(da02fa1c)
* Start indicator in systemd when ayatana-indicators.target is
started. (cae7f2e1)
* debian/ayatana-indicator-messages.install: Drop DATADIR/upstart,
files not provided anymore. (ae2dcd9a)
* Drop all references to upstart. (7c5541f6)
* debian/control: Improve dh-autoreconf build-dependency. (474e1d6f)
2020-08-06 Mike Gabriel
* release 0.6.2 (f5cfb4f4) (tag: 0.6.2)
* Merge branch 'tari01-master' (ca1d3fe6)
* debian/changelog: Typo fix in previous release stanza. (1e5d180f)
2020-07-29 Ács Zoltán
* Translated using Weblate (Hungarian) (d03752a8)
2020-08-06 Mike Gabriel
* debian/changelog: Typo fix in previous release stanza. (8c76f83c)
2020-07-29 Ács Zoltán
* Translated using Weblate (Hungarian) (ce2759cf)
2020-07-25 Robert Tari
* Fix failing build configuration (fb295b7e)
2020-07-19 Tetra Homer
* Translated using Weblate (Persian) (dd6c4abd)
2020-07-03 Tobias p
* Translated using Weblate (Danish) (0172b72e)
2020-06-27 Zsolt Pastorek
* Translated using Weblate (Slovak) (2a6310a1)
2020-06-21 Kate Kaz
* Translated using Weblate (Ukrainian) (2428928a)
2020-06-19 Ács Zoltán
* Translated using Weblate (Hungarian) (a3825369)
2020-06-14 MarongHappy
* Translated using Weblate (Korean) (2888c2f1)
2020-05-24 wdggg
* Translated using Weblate (Chinese (Simplified)) (8f0cf0f1)
2020-05-08 Abdusalam
* Translated using Weblate (Uyghur) (884e6d42)
2020-05-09 gomkwcf4664233cad84b22
* Translated using Weblate (Korean) (dd0fb5cc)
2020-05-09 iNetRoos
* Translated using Weblate (Afrikaans) (19d6554f)
2020-04-27 Jeannette L
* Translated using Weblate (Italian) (ff8fef97)
* Translated using Weblate (French (Canada)) (fe40e881)
* Translated using Weblate (French) (a5661568)
* Translated using Weblate (English (United Kingdom)) (9426b642)
* Translated using Weblate (English (Canada)) (72397cd9)
* Translated using Weblate (English (Australia)) (54150ddb)
2020-04-14 Jeannette L
* Translated using Weblate (French) (13a22332)
2020-04-04 Kristjan Räts
* Translated using Weblate (Estonian) (d648057c)
2020-04-01 Davit Mayilyan
* Translated using Weblate (Armenian) (3adea8a9)
2020-04-01 Johntini
* Translated using Weblate (Spanish) (52321d7e)
2020-03-29 Alexie Brindusescu
* Translated using Weblate (Romanian) (08cfde89)
2020-03-26 Adolfo Jayme Barrientos
* Translated using Weblate (Catalan) (01726158)
2020-03-16 Grace Guo
* Translated using Weblate (Japanese) (1b51d801)
2020-03-14 yagoub fadel
* Translated using Weblate (Arabic) (830d3507)
2020-02-25 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (038a21ee)
2020-02-24 Mike Gabriel
* release 0.6.1 (ff3680fb) (tag: 0.6.1)
2020-02-13 Matheus Bastos
* Translated using Weblate (Portuguese (Brazil)) (4833dc15)
2020-02-09 THANOS SIOURDAKIS
* Translated using Weblate (Greek) (ebfb46a1)
2020-01-27 Ryan
* Translated using Weblate (Korean) (d17c0b99)
2020-01-18 Heimen Stoffels
* Translated using Weblate (Dutch) (47382931)
2020-01-02 Milo Ivir
* Translated using Weblate (Croatian) (e2704085)
2019-12-15 dmaxime
* Translated using Weblate (Italian) (26e429cf)
2019-12-03 SapuSeven
* Translated using Weblate (German) (19742410)
2019-11-26 Yuji Hon
* Translated using Weblate (Japanese) (7261b6c0)
2019-11-23 Niara
* Translated using Weblate (Russian) (3738cd2b)
2019-11-22 Burak Balta
* Translated using Weblate (Turkish) (d0260e1d)
2019-10-30 Marcela Korreshi
* Translated using Weblate (Albanian) (6b5ddd70)
2019-10-07 Mateusz Rumiński
* Translated using Weblate (Polish) (3755ac47)
2019-10-01 Pedro Alexandre
* Translated using Weblate (Portuguese) (2ec966f1)
2019-09-02 Swann Martinet
* Translated using Weblate (French) (a7b902ef)
2019-09-02 Moo
* Translated using Weblate (Lithuanian) (1aac58ff)
2019-08-29 Anders Jonsson
* Translated using Weblate (Swedish) (3357a55a)
2019-08-28 Heimen Stoffels
* Translated using Weblate (Dutch) (b47026bb)
2019-08-29 Mike Gabriel
* configure.ac: AM_INIT_AUTOMAKE needs subdir-objects with this
project. (78e7d1de)
* Avoid deprecated g_type_class_add_private. (1e7272a4)
2019-08-28 Mike Gabriel
* update locale files (d2cfa9f3)
2019-08-23 Swann Martinet
* Translated using Weblate (French) (26baf98f)
2019-08-10 Madhumitha Thanneeru
* Translated using Weblate (Telugu) (5d30d036)
2019-08-06 Chang Xin
* Translated using Weblate (Chinese (Simplified)) (d4e3d21e)
2019-07-23 Simon Picot
* Translated using Weblate (French) (4abfb2f9)
2019-07-01 Elizabeth Sherrock
* Translated using Weblate (Chinese (Simplified)) (d3d34154)
2019-04-17 Rui Mendes
* Translated using Weblate (Portuguese) (edb6725c)
2019-01-11 Louies
* Translated using Weblate (Chinese (Traditional)) (71423f12)
2018-11-18 ssantos
* Translated using Weblate (Portuguese) (e000039a)
2018-10-31 Petter Reinholdtsen
* Translated using Weblate (Norwegian Bokmål) (508bd221)
2018-10-23 Iván Seoane
* Translated using Weblate (Galician) (5b5dff89)
2018-09-27 Володимир Бриняк
* Translated using Weblate (Ukrainian) (47462f64)
2018-08-23 WaldiS
* Translated using Weblate (Polish) (c7cbdaa5)
* Translated using Weblate (Polish) (1c0222a6)
2018-08-06 Tiago A. Reul
* Translated using Weblate (Portuguese (Brazil)) (bcbd7653)
2018-08-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (5990ecc3)
2018-07-29 chrismeurer
* Translated using Weblate (Portuguese (Brazil)) (2c10cf42)
2018-07-17 Danil Semenov
* Translated using Weblate (Russian) (6f230d40)
2018-05-08 Heimen Stoffels
* Translated using Weblate (Dutch) (43232479)
2018-05-02 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (78f755b4)
2018-04-03 Pavel Borecki
* Translated using Weblate (Czech) (e80bce50)
2019-03-10 Mike Gabriel
* Merge branch 'sunweaver-pr/disable-testing' (d5f1af4e)
2019-03-10 Robert Tari
* AM_INIT_AUTOMAKE: subdir-projects flag not required. Fixes FTBFS on
recent Archlinux. (90e4c013)
* Check for dbustest-1 only with enabled tests. (4d0eae3e)
2019-03-10 Mike Gabriel
* Merge branch 'bluca-pkgconfig' (564690e1)
2019-03-09 Luca Boccassi
* Fix pkg-config file library and path flags (aba86c8f)
2019-03-10 Mike Gabriel
* Merge branch 'comradekingu-patch-1' (b08a9115)
2018-10-31 Allan Nordhøy
* Spelling: id → ID (ecaaea8b)
2018-11-16 Mike Gabriel
* debian/control: Add B/R for indicator-messages. The a-i-messages
and i-messages bin:pkgs share the same artwork files.
(a1a989b5)
* debian/*: Sync in changes from official Debian packaging. Drop
Ayatana namespace from libmessaging bin:pkgs. (d9442d25)
2018-03-27 Mike Gabriel
* debian/libayatana-messaging-menu-dev.examples: Add
client-example.py as an example. (3974cfb0)
2018-03-23 Mike Gabriel
* debian/changelog: post-release-mark as released (c301f6d3)
* release 0.6.0 (141e7b58) (tag: 0.6.0)
2018-03-23 Michael Terry
* Work inside a snap by prefixing hard coded paths with $SNAP.
(a738856b)
2018-03-23 Mike Gabriel
* data/org.ayatana.indicator.messages: Fix Name= field (prepend
ayatana-). (b1dd2209)
2018-03-01 Moo
* Translated using Weblate (Lithuanian) (3936d392)
* Translated using Weblate (Lithuanian) (a0813380)
2018-02-28 Мира Странная
* Translated using Weblate (Russian) (22c3a428)
2018-02-03 Cristian Gherman
* Translated using Weblate (Romanian) (9e34a8e7)
2018-01-22 Марс Ямбар
* Translated using Weblate (Ukrainian) (d83dad09)
2018-01-01 Anders Jonsson
* Translated using Weblate (Swedish) (5649632d)
2017-12-19 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (1f8825b6)
2018-01-04 Yaron Shahrabani
* Translated using Weblate (Hebrew) (3fed9d9b)
2017-12-31 Sebastian Rasmussen
* Translated using Weblate (Swedish) (7bea0a5c)
2017-12-07 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (4b606e2e)
2018-03-22 Mike Gabriel
* debian/copyright: Use secure URI for copyright format reference.
(c50c3240)
* debian/changelog: white-space cleanup (20783a44)
* debian/rules: Make sure po/ayatana-indicator-message.pot does not
get lost during build. (f28e229d)
* debian/changelog: Drop epoch from package version. (5a6ff0b1)
* debian/*.install: Rename to match bin:pkg naming changes.
(229e78c3)
* debian/control: Add C for libayatana-messaging* (have same files as
libmessaging* in Ubuntu). (02ff59a2)
* debian/control: Rename libmessaging bin:pkgs to avoid package
naming conflict with indicator-messages in Ubuntu.
(8f588508)
2017-12-06 Mike Gabriel
* data/ayatana-indicator-messages.desktop.in: Add XFCE to OnlyShowIn=
key. (6739b30f)
* Rename GNOMELOCALEDIR -> LOCALEDIR. (8fc930a1)
* debian/ayatana-indicator-messages.postinst: Drop file. The
libglib2.0-bin packages has a trigger for that. (a7f8ec1e)
2017-12-02 Mike Gabriel
* debian/control: Fix D (glib2.0-bin -> libglib2.0-bin). (cdd4d17a)
* debian/{control,ayatana-indicator-messages.postinst}: Recompile
GSettings schemas at post installation. (eddf10ad)
* debian/copyright: Fix upstream name. (71776f09)
* debian/copyright: Make copyright file formally correct. (42e87f4c)
2017-11-29 Mike Gabriel
* data/ayatana-indicator-messages.desktop.in: Namespace-fix Name=
key. (1c82f631)
* data/org.ayatana.indicator.messages.gschema.xml: white-space
cleanup. (77682ea4)
* update-po.sh: Preserve .pot file when updating *.po files.
(dc3570f8)
2017-11-26 Kornelijus
* Translated using Weblate (Lithuanian) (9d1d04ef)
2017-11-25 Kristjan Räts
* Translated using Weblate (Estonian) (cbd60beb)
2017-11-05 Kristjan Räts
* Translated using Weblate (Estonian) (646c547f)
2017-10-15 Mike Gabriel
* Translated using Weblate (German) (37886e0f)
2017-10-14 Vangelis Mouhtsis
* Translated using Weblate (Greek) (3b1a8b5b)
2017-10-12 klausade
* Translated using Weblate (Norwegian Bokmål) (11e6a25e)
2017-10-12 Efstathios Iosifidis
* Translated using Weblate (Greek) (66eeb6c7)
2017-10-12 Viktar Vauchkevich
* Translated using Weblate (Belarusian) (612ff426)
2017-10-12 Matteo F. Vescovi
* Translated using Weblate (Italian) (952a496b)
2017-11-29 Mike Gabriel