forked from AyatanaIndicators/ayatana-indicator-sound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8820 lines (5984 loc) · 280 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
2022-12-15 Mike Gabriel
* release 22.9.1 (HEAD -> main, tag: 22.9.1)
2022-10-25 Mike Gabriel
* Merge branch 'tari01-pr/fix-theming' (6ea16af)
2022-10-06 Robert Tari
* src/sound-menu.vala: Do not force panel icons in the sound menu
(b6ed93c)
2022-10-19 Kristjan Räts
* Translated using Weblate (Estonian) (74fa8dd)
2022-09-29 이정희
* Translated using Weblate (Korean) (c2f5eea)
2022-09-25 Oğuz Ersen
* Translated using Weblate (Turkish) (82a1a6a)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (6c29915)
* Translated using Weblate (Russian) (fe7891a)
2022-09-14 Milan Korecky
* Translated using Weblate (Czech) (85b0ee5)
2022-09-14 Mike Gabriel
* po/*.po{,t}: Translation strings update (esp. source file
references). (6df06ec)
* update-po{,t}.sh: Also catch multi-file source file references.
(4030408)
* po/*.po{,t}: Update translation strings. (52fd55e)
2022-09-11 Mike Gabriel
* update-po{,t}.sh: Omit ../ at beginning of file names in .po(t)
file(s). (25fd35b)
2022-09-13 Mike Gabriel
* release 22.9.0 (2384e7b) (tag: 22.9.0)
2022-09-08 Mike Gabriel
* Merge branch 'tari01-pr/mute-toggle-switch' (c4f5392)
2022-09-03 Robert Tari
* Convert Mute menuitem to switch (6d68d25)
2022-09-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (23d48f5)
2022-09-07 Moo
* Translated using Weblate (Lithuanian) (9f3651e)
2022-09-06 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (8bb66b5)
2022-09-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (402cec0)
2022-09-05 Mike Gabriel
* Translated using Weblate (German) (1ab02e4)
* po/*.po{,t}: Translation strings update. (d92b443)
2022-09-01 Mike Gabriel
* Merge branch 'gber-main' (35e9e4e)
2022-08-15 Guido Berhoerster
* Ensure ayatana-indicator-sound is started after Pulseaudio
(c3704ea)
2022-09-01 Mike Gabriel
* Merge branch 'sunweaver-pr/tooltip-support' (5262add)
2022-08-23 Hugel
* Translated using Weblate (Chinese (Simplified)) (9aaf318)
2022-08-03 Robert Tari
* Merge branch 'sunweaver-pr/make-switch-item-qmenumodel-compatible'
(e873ed9)
2022-07-22 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (c1fba3d)
2022-07-14 Teitei
* Translated using Weblate (Burmese) (fb9c484)
2022-06-21 Artem
* Translated using Weblate (Ukrainian) (0e8d121)
2022-07-22 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (efc7cc7)
2022-07-22 Mike Gabriel
* src/service.c: Add tooltip support. (2791f04)
2022-07-19 Mike Gabriel
* src/*.vala: make the 'silent mode' switch item & action QMenuModel
compatible (264b421)
2022-07-14 Teitei
* Translated using Weblate (Burmese) (0a1cf13)
2022-06-21 Artem
* Translated using Weblate (Ukrainian) (93716b8)
2022-06-13 Mike Gabriel
* Merge branch 'neochapay-fix_80' (a7f70e8)
2022-06-08 Sergey Chupligin
* tests/CMakeLists.txt Add TEST_INCLUDE_DIRS to include-directories
(6f81698)
Fixes:
https://github.com/AyatanaIndicators/ayatana-indicator-sound/issues/80
2022-04-23 Sergii Horichenko
* Translated using Weblate (Russian) (6642ace)
* Translated using Weblate (Ukrainian) (2841b41)
* Translated using Weblate (Russian) (33c4226)
* Translated using Weblate (Ukrainian) (f6372b2)
2022-02-27 이정희
* Translated using Weblate (Korean) (70b4979)
2022-02-25 Mike Gabriel
* Merge branch 'tari01-pr/drop-lomiri-runtime-dependency' (a094923)
2022-02-24 Robert Tari
* src/options-gsettings.vala: Use shared settings on Lomiri only
(b7cd72a)
2022-02-18 Mike Gabriel
* release 22.2.0 (cf2029c) (tag: 22.2.0)
* Merge branch 'tari01-pr/build-with-werror' (e3049a5)
2022-02-17 Robert Tari
* .build.yml: Build with -Werror (d61f835)
2022-02-18 Robert Tari
* Fix build warnings (e112ae9)
* Whitespace fix (412bb6e)
2022-02-18 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (4d32459)
2022-02-17 Robert Tari
* .build.yml: Drop extra compilation flags (f12504a)
* Clean up compilation flags (901192f)
2022-02-17 Mike Gabriel
* Merge branch 'tari01-pr/drop-pkglibexecdir' (be9c06c)
2022-02-16 Robert Tari
* data/CMakeLists.txt: Drop unused pkglibexecdir definition (863342c)
2022-02-17 Mike Gabriel
* Merge branch 'tari01-pr/add-lomiri-features-flag' (7312089)
2021-12-16 Robert Tari
* .build.yml: Add ENABLE_LOMIRI_FEATURES flag and adapt build flow
(672e4c4)
* Make Lomiri features configurable at build time (61d803b)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(111165e)
2022-01-29 MonsieurBibo
* Translated using Weblate (French) (4651e97)
2022-01-22 Anders Jonsson
* Translated using Weblate (Swedish) (a843c1b)
2022-01-07 wigy
* Translated using Weblate (Hungarian) (4d140a1)
2022-01-02 ssantos
* Translated using Weblate (Portuguese) (431e56d)
2021-12-15 Mike Gabriel
* Merge branch
'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
(a5ba89a)
2021-12-06 Robert Tari
* .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
(ef79258)
* .build.yml: Some cppcheck tweaks (d0d1975)
2021-12-09 Robert Tari
* Fix cppcheck warnings (f696e54)
* Whitespace fix (09dde52)
2021-12-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-qt5-use-modules-warning' (1a36cae)
2021-12-07 Robert Tari
* Fix qt5_use_modules warning (c5eee42)
2021-12-08 Mike Gabriel
* Merge branch 'tari01-pr/drop-accountsservice-file-check' (92df05b)
2021-11-24 Robert Tari
* CMakeLists.txt: Drop unneeded com.lomiri.AccountsService.Sound.xml
check (e974127)
2021-12-07 phlostically
* Translated using Weblate (Esperanto) (c6bc3c8)
2021-11-23 phlostically
* Translated using Weblate (Esperanto) (823b75f)
2021-11-21 phlostically
* Translated using Weblate (Esperanto) (1c30e0b)
2021-11-22 Robert Tari
* Merge branch 'sunweaver-pr/drop-copy-of-test-sound-file' (b6cf63d)
2021-11-19 Mike Gabriel
* license headers: Stop using the '©' character. (f64efb1)
* tests/*: Use one spelling for "Canonical Ltd." in copyright
headers. (2c16abc)
2021-11-20 phlostically
* Translated using Weblate (Esperanto) (d271071)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (57a0ff0)
2021-11-16 Phil Clifford
* Translated using Weblate (Gaelic) (27e6a7a)
2021-11-22 Robert Tari
* Merge branch 'sunweaver-pr/copyright-punctuation-fix' (fef40c1)
2021-11-20 phlostically
* Translated using Weblate (Esperanto) (4796bb9)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (1f57a01)
2021-11-16 Phil Clifford
* Translated using Weblate (Gaelic) (a016f48)
2021-11-20 phlostically
* Translated using Weblate (Esperanto) (571abe5)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (e52e627)
2021-11-19 Mike Gabriel
* tests/integration/Copy of test-sound.wav: Drop superfluous file.
(4b5ec61)
* license headers: Stop using the '©' character. (8f2a1d4)
* tests/*: Use one spelling for "Canonical Ltd." in copyright
headers. (ba6a8e3)
2021-11-16 Phil Clifford
* Translated using Weblate (Gaelic) (f34d980)
2021-11-17 Mike Gabriel
* release 0.9.0 (454a7c0) (tag: 0.9.0)
* Merge branch 'tari01-pr/scroll-message' (a6b0676)
2021-11-15 Robert Tari
* src/service.vala: Change scrolling debug message type (b73b938)
2021-11-17 Mike Gabriel
* Merge branch 'tari01-pr/refactor-schema-detection' (7b42e44)
2021-11-11 Robert Tari
* Clean up schema detection and conditional code (88e440b)
2021-11-12 Mike Gabriel
* Revert ".travis.yml: Re-enable ppc64le builds on Travis CI again."
(425c531)
* .travis.yml: Re-enable ppc64le builds on Travis CI again. (4dff3bb)
* Merge branch 'tari01-pr/drop-org-ayatana-accountsservice-sound'
(4fe0753)
2021-11-10 Robert Tari
* debian/copyright: Remove org.ayatana.AccountsService.Sound files
(6c55395)
* Drop org.ayatana.AccountsService.Sound (611fb69)
2021-11-09 Joan CiberSheep
* Translated using Weblate (Catalan) (27963fd)
2021-11-10 Mike Gabriel
* Merge branch 'tari01-pr/drop-org-ayatana-sound' (8a77739)
2021-11-10 Robert Tari
* debian/copyright: Remove org.ayatana.sound.gschema.xml (147d57e)
2021-11-09 Robert Tari
* Drop data/org.ayatana.sound.gschema.xml (9cb09d8)
2021-11-10 Robert Tari
* .build.yml: Add lomiri-schemas dependency and install from git
(b5989ea)
2021-11-09 Mike Gabriel
* Merge branch 'tari01-pr/rename-to-x-lomiri' (c6c9d5d)
2021-11-09 Robert Tari
* Rename Lomiri-specific properties to x-lomiri (e441bef)
2021-11-08 Robert Tari
* Merge branch 'sunweaver-pr/lomiri-api-gmenuharness-build-CI'
(6109683)
2021-11-08 Mike Gabriel
* src/CMakeLists.txt: Fix use of HAS_LOMIRI_ACCTSERVICE_*_SETTINGS
and what happens if defined as ON. (bd8125c)
* .build.yml: Adjust for gmenuharness not yet being in Debian
testing. (ace8185)
* .build.yml: Build lomiri-api and/or gmenuharness from source, if
needed. (984b5d5)
2021-11-08 Robert Tari
* Merge branch 'sunweaver-pr/fix-vala-adding-system-settings-code'
(4555c9e)
2021-11-08 Mike Gabriel
* .build.yml: Provide extra dependency list for debian:stable.
(b80b95e)
* src/CMakeLists.txt: Fix use of HAS_LOMIRI_ACCTSERVICE_*_SETTINGS
and what happens if defined as ON. (2efc26b)
* Merge branch 'tari01-pr/drop-gmenuharness' (d314b1f)
2021-11-08 Robert Tari
* debian/: Switch to system gmenuharness (05ab8ab)
* Drop local gmenuharness, use it from the system (1fe3c73)
* po/POTFILES.in: Remove gmenuharness files (657e425)
* .build.yml: Build gmenuharness from git (208cce8)
2021-11-08 Mike Gabriel
* Merge branch 'tari01-pr/rename-accountsservice-ubuntu-schemas'
(ac17f89)
2021-11-05 Robert Tari
* data/CMakeLists.txt: Rename accountsservice-ubuntu-schemas
(ab8bc3f)
2021-11-08 Mike Gabriel
* Merge branch
'tari01-pr/restrict-com-canonical-settings-sound-to-unity'
(abc22af)
2021-11-05 Robert Tari
* Restrict com.canonical.settings.sound code to Unity (0efe14f)
* Whitespace fix (cd92695)
2021-11-08 Mike Gabriel
* Merge branch
'tari01-pr/rename-com-ubuntu-accountsservice-securityprivacy'
(2f227c6)
2021-11-05 Robert Tari
* tests/service-mocks/media-player-mpris-mock/CMakeLists.txt: Rename
com.ubuntu.AccountsService.SecurityPrivacy (108ba69)
2021-11-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-ambiguous-language-code' (87534fb)
2021-11-03 Robert Tari
* Fix missing HAVE_UT_ACCTSERVICE_PRIVACY_SETTINGS definition
(77f48a5)
* Use 'ayatana' namespace for unit tests. (dcef1e0)
* Rename HAS_UT_ACCTSERVICE_SOUND_SETTINGS (ed47e0f)
* Drop unused HAVE_UT_ACCTSERVICE_SOUND_SETTINGS (9b7fe56)
2021-11-08 Mike Gabriel
* d/copyright: Update copyright attributions for renamed files.
(0c5bd27)
* Rename com.ubuntu.AccountsService.Sound (ca1d6f2)
2021-11-03 Robert Tari
* Rename HAS_UBUNTU_SOUND_SCHEMA (64cb8b3)
* Rename VALA_DEFINE_UBUNTU_SOUND_SCHEMA (eb1f2fb)
* Rename com.ubuntu.sound (f895b91)
* Whitespace fix (98af840)
2021-11-05 Andrej Shadura
* Translated using Weblate (Slovak) (f8b5996)
2021-11-04 Michele
* Translated using Weblate (Italian) (8c5fe3a)
2021-11-03 Robert Tari
* Rename UNITY_API* (f4410e0)
* Rename x-canonical-value-bar-tint (99e774d)
* src/media-player-user.vala: Rename unity-greeter-session-broadcast
(e99439d)
2021-11-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-missing-privacy-setting-definition'
(4714c1f)
2021-11-03 Robert Tari
* Fix missing HAVE_UT_ACCTSERVICE_PRIVACY_SETTINGS definition
(9ffe873)
2021-11-08 Mike Gabriel
* Merge branch
'tari01-pr/rename-com-ubuntu-accountsservece-sound-gschema'
(85b39c9)
2021-11-03 Robert Tari
* Use 'ayatana' namespace for unit tests. (6c745ba)
* Rename HAS_UT_ACCTSERVICE_SOUND_SETTINGS (240aade)
* Drop unused HAVE_UT_ACCTSERVICE_SOUND_SETTINGS (dc87c5b)
2021-11-08 Mike Gabriel
* d/copyright: Update copyright attributions for renamed files.
(20f7eec)
* Rename com.ubuntu.AccountsService.Sound (384e727)
* Merge branch 'tari01-pr/rename-com-ubuntu-sound-gschema' (eb8b366)
2021-11-03 Robert Tari
* Rename HAS_UBUNTU_SOUND_SCHEMA (45c2793)
* Rename VALA_DEFINE_UBUNTU_SOUND_SCHEMA (099ce0e)
* Rename com.ubuntu.sound (1ca9178)
* Whitespace fix (3cec34d)
2021-11-05 Andrej Shadura
* Translated using Weblate (Slovak) (46d0cb4)
2021-11-04 Michele
* Translated using Weblate (Italian) (124b78b)
2021-11-05 Mike Gabriel
* Merge branch 'tari01-pr/rename-unity-api' (b7af563)
2021-11-03 Robert Tari
* Rename UNITY_API* (f3863a9)
2021-11-05 Mike Gabriel
* Merge branch 'tari01-pr/rename-x-canonical-value-bar-tint'
(d792866)
2021-11-03 Robert Tari
* Rename x-canonical-value-bar-tint (89bdf3a)
2021-11-05 Mike Gabriel
* Merge branch 'tari01-pr/rename-unity-greeter-session-broadcast'
(8dfa72f)
2021-11-03 Robert Tari
* src/media-player-user.vala: Rename unity-greeter-session-broadcast
(4d73ec5)
2021-11-04 Robert Tari
* Fix ambiguous language code (a7066ea)
2021-11-02 Mike Gabriel
* Merge branch
'tari01-pr/rename-com-ubuntu-touchaccountsservice-securityprivacy'
(8fe910c)
2021-11-02 Robert Tari
* Rename HAS_UT_ACCTSERVICE_PRIVACY_SETTINGS (d389698)
* src/CMakeLists.txt: Drop unused
HAVE_UT_ACCTSERVICE_PRIVACY_SETTINGS (202a6d8)
* Rename com.ubuntu.touch.AccountsService.SecurityPrivacy (81c64f0)
2021-11-02 Mike Gabriel
* Merge branch 'tari01-pr/drop-merge-review' (ddaaefc)
2021-11-02 Robert Tari
* Drop all references to MERGE-REVIEW (3ee2897)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/accountsservice-sound' (ab68e81)
2021-11-01 Robert Tari
* Rename *_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS to
HAS_LOMIRI_ACCTSERVICE_SYSTEMSOUND_SETTINGS (ab8c534)
* Rename com.ubuntu.touch.AccountsService.Sound to
com.lomiri.touch.AccountsService.Sound (de7664b)
* Whitespace fix (75fe9ad)
2021-10-27 Mike Gabriel
* Merge branch 'tari01-pr/x-canonical-to-x-ayatana' (c589574)
2021-10-27 Robert Tari
* Raname x-canonical properties to x-ayatana (c4e401f)
2021-10-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-cleanup' (420a0c1)
2021-10-25 Mike Gabriel
* .build.yml: Remove source code of locally built dependency after it
has been installed. (892aaf8)
* .build.yml: Run unit tests in build_scripts: target. (d0b60b6)
* .build.yml: Drop autogen.sh support. (92b4022)
2021-10-22 Robert Tari
* data/CMakeLists.txt: Do not use automatic GSchema compilation
(f2f7353)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/use-native-cmake-gsettings-module'
(a193e37)
2021-10-20 Robert Tari
* Compile GSchema during installation (f5c6c60)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/define-vala-extern' (5f4b914)
2021-10-19 Robert Tari
* Fix undefined VALA_EXTERN (5910f3b)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (abc6f7f)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/fix-build-warnings' (bb16fbd)
2021-09-21 Robert Tari
* tests/CMakeLists.txt: Suppress -Wdiscarded-qualifiers on
media-player-mock.c (8574368)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/update-ido-names' (03e97fe)
2021-09-20 Robert Tari
* Update Ayatana IDO names (4e0b2a6)
2021-10-05 Luna Jernberg
* Translated using Weblate (Swedish) (8e8f124)
2021-09-23 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (a855ab9)
2021-09-22 Milo Ivir
* Translated using Weblate (Croatian) (f9f9d50)
2021-09-02 Quentin PAGÈS
* Translated using Weblate (Occitan) (2df4a17)
2021-09-02 Robert Tari
* .build.yml: Add missing dependencies for Ubuntu builds (d73a83a)
* .build.yml: Also run unit tests during CI builds against Ubuntu.
(a86d5c6)
* Fix Travis status image (91d765d)
2021-08-28 Mike Gabriel
* Translated using Weblate (German) (c5cada3)
2021-08-29 Hosted Weblate
* Update translation files (d9d6b47)
2021-08-29 Mike Gabriel
* debian/control: Enable B-Ds again required for unit tests; add
libgtest-dev. (d748f27)
* debian/{control,compat}: Bump to level 10. (c7e1197)
* debian/rules: Enable unit tests with the new way. (6ffd50f)
* debian/control: Drop B-D mate-common, add B-D
libayatana-common-dev. (2e8b41d)
2021-08-28 Weblate
* Added translation using Weblate (Kurdish (Northern)) (e2c7945)
* Added translation using Weblate (Kurdish (Southern)) (9eaca4b)
2021-08-28 Mike Gabriel
* po/: Drop zh_Hant.po: Drop duplicate file for Chinese
(Tranditional) and adjust LINGUAS files. (c4fa5f0)
* .travis.yml: Fix branch name what is now the default branch in
ayatana-dev-scripts. (735c588)
* Merge branch 'tari01-pr/drop-lomiri-url-dispatcher' (f7be18b)
2021-08-27 Robert Tari
* debian/: Drop all references to lomiri-url-dispatcher (2188524)
* Drop lomiri-url-dispatcher (b960661)
2021-08-28 Mike Gabriel
* Merge branch 'tari01-pr/use-libayatana-common' (781af2c)
2021-08-25 Robert Tari
* Replace code with libayatana-common functions (d6c09e6)
2021-08-28 Mike Gabriel
* Merge branch 'tari01-pr/fix-possible-null-access' (c33bfcc)
2021-08-24 Robert Tari
* Fix possible null access (0ff2857)
2021-08-28 Mike Gabriel
* Merge branch 'tari01-pr/add-info-and-build-instructions' (405fe08)
* .build.yml: Adjust to recent libayatana-common (providing Vala
bindings); also adjust to Debian 11 now being
debian:stable. (8e31433)
2021-08-27 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (d66f7b7)
2021-08-28 Mike Gabriel
* Merge branch 'sunweaver-pr/ci-fixes' (ae615dd)
* .build.yml: Adjust to recent libayatana-common (providing Vala
bindings); also adjust to Debian 11 now being
debian:stable. (b4e4427)
2021-08-27 Adolfo Jayme Barrientos
* Translated using Weblate (Spanish) (dde9db4)
2021-08-23 Robert Tari
* Add info and build instructions (df7167e)
2021-08-14 Kristjan Räts
* Translated using Weblate (Estonian) (600349d)
2021-08-12 Oğuz Ersen
* Translated using Weblate (Turkish) (fcd7875)
2021-08-12 Anders Jonsson
* Translated using Weblate (Swedish) (29e77c0)
2021-08-12 Gediminas Murauskas
* Translated using Weblate (Lithuanian) (3468db1)
2021-08-12 Yaron Shahrabani
* Translated using Weblate (Hebrew) (a5393a5)
2021-08-12 Milan Korecky
* Translated using Weblate (Czech) (5af8378)
2021-08-12 Mike Gabriel
* po/: Update translation files from source code. (00036bc)
* Merge branch 'tari01-pr/ubports-patches' (785f555)
2021-05-26 userj
* Add newline between sentences in volume warning (#3) (81e181c)
2020-04-28 Ratchanan Srirattanamet
* Revert "Merge pull request #19 from mateosalta/patch-1" (e274695)
2020-04-27 Ratchanan Srirattanamet
* integration-test: provide a temporary HOME directory to the test
(ef802ad)
2020-02-03 mateosalta
* backwards (f193bca)
* use avaible suru icons (7fcb516)
2018-10-15 Michele
* Revert "bluetooth dedicated icons in notifications" (04cdcbe)
2018-10-12 Michele
* bluetooth dedicated icons in notifications (c36481d)
2018-08-16 userj
* Update warn-notification.vala (0cb5245)
2018-01-12 Dan Chapman
* Import latest from launchpad (72ee222)
2017-12-29 Mr Liau
* Make volume warning more clear. (ff120fb)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/disable-failing-tests' (8927dc7)
* .build.yml: Re-enable commented-out unit tests. (1fec6e4)
* Disable failing tests that cannot be fixed now (b4ffaeb)
* Merge branch 'tari01-pr/stream-restore-debug' (b785e94)
2021-08-09 Robert Tari
* src/volume-control-pulse.vala: Make stream-restore warning a debug
message (49ac666)
2021-08-05 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (df123b1)
2021-08-05 Mike Gabriel
* tests/CMakeLists.txt: Set '-no-pie' linker option for all unit
tests linker calls. (0fd84df)
2021-05-04 Mike Gabriel
* debian/rules: Drop -Denable_tests=off option. (f7d5dfb)
* .build.yml: Disable unit tests for now during CI builds. Unit tests
are entirely broken at the moment for
ayatana-indicator-sound. (7f3ae13)
* Travis CI: Initial draft for CI builds. (b424e9e)
2021-08-05 Mike Gabriel
* debian/copyright: Adjust to patch name changes (unity -> lomiri).
(f3e62f2)
* debian/copyright: Update from official Debian package. (ac78d2e)
* Merge branch 'tari01-pr/suppress-vala-c-warnings' (a2c07b0)
2021-08-05 Robert Tari
* Suppress Vala C warnings (7019450)
2021-08-05 Mike Gabriel
* Merge branch 'tari01-pr/add-standard-ayatana-cmake-bits' (4ded2c2)
2021-08-05 Robert Tari
* Add standard Ayatana CMake bits (49571a6)
2021-08-05 Mike Gabriel
* Merge branch 'tari01-pr/cmake-install-full' (28a25ff)
2021-08-04 Robert Tari
* Use CMAKE_INSTALL_FULL_*DIR locations for installation (a1c03e0)
* Whitespace fix (ca5dc69)
2021-08-05 Mike Gabriel
* Merge branch 'tari01-pr/add-zenity-to-settings' (3161efa)
2021-03-12 Robert Tari
* po/ayatana-indicator-sound.pot: Re-create translation strings
(a2f3188)
* po/POTFILES.in: Fix unity -> lomiry paths (8d5ac40)
* src/service.vala: Display a zenity warning if the audio settings
application is not found (45bde61)
* Whitespace fix (67ea994)
2021-03-10 Robert Tari
* Add us to the copyright header (0552bb3)
2021-08-04 Mike Gabriel
* Merge branch 'tari01-pr/fix-build-warnings' (410a8fc)
2021-03-10 Robert Tari
* Add us to the copyright header (7013122)
2021-08-04 Robert Tari
* Drop deprecated DBusProxy.create_for_bus (5139f8e)
2021-03-10 Robert Tari
* tests/dbus-types/org.freedesktop.DBus.Properties.xml: Fix
annotation (ffd39dd)
2021-03-09 Robert Tari
* tests/CMakeLists.txt: Add libdbustest-1 include path (f262260)
* tests/CMakeLists.txt: Suppress discarded qualifiers warning
(c81c20e)
* src/volume-warning.vala: Fix static member access (1fbee35)
* src/media-player-mpris.vala: Fix implicit .begin (33de6f6)
* src/media-player-list-mpris.vala: Replace HashTable with GenericSet
(3548d20)
2021-03-08 Robert Tari
* src/volume-warning.vala: Remove the static modifier from constants
(41a2d58)
2021-03-09 Robert Tari
* Handle all switch cases (81f99ed)
* Avoid possible null value (8df9168)
2021-03-08 Robert Tari
* Throw GLib.DBusError, GLib.IOError (6bf50a4)
* Drop --thread from vala_init (ac5a42e)
* Whitespace fix (89f303d)
2021-07-15 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (0dcd8d3)
2021-07-16 Yaron Shahrabani
* Translated using Weblate (Hebrew) (d47b08b)
2021-06-27 GM
* Translated using Weblate (Lithuanian) (91d4a4b)
2021-06-04 Hosted Weblate
* Update translation files (782d557)
2021-06-03 Weblate
* Added translation using Weblate (Chinese (Traditional)) (9795774)
2021-06-03 Hosted Weblate
* Update translation files (babb2f3)
2021-05-01 Tomáš Marný
* Translated using Weblate (Czech) (7b18339)
2021-04-23 Quentin PAGÈS
* Translated using Weblate (Occitan) (e3152cd)
2021-03-30 Hosted Weblate
* Update translation files (14d7676)
2021-03-29 Weblate
* Added translation using Weblate (Chinese (Simplified)
(zh_LATN@pinyin)) (5eef064)
2021-03-18 Reza Almanda
* Translated using Weblate (Indonesian) (d16ff15)
2021-03-11 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (7a408f9)