-
Notifications
You must be signed in to change notification settings - Fork 12
/
ChangeLog
4363 lines (2867 loc) · 136 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-29 Mike Gabriel
* release 24.5.1 (HEAD -> main, tag: 24.5.1)
2024-05-28 Robert Tari
* Merge branch 'sunweaver-pr/rda-is-not-remote' (442c2d52)
2024-05-27 Mike Gabriel
* src/service.c: A session is local, if it is not remote. This avoids
detecting e.g. chroots as remote sessions. (f57a1661)
2024-05-22 Mike Gabriel
* release 24.5.0 (dab59821) (tag: 24.5.0)
2024-05-21 Robert Tari
* Merge branch 'sunweaver-pr/lomiri-indicators-target' (8429ba7b)
2024-05-21 Mike Gabriel
* data/ayatana-indicator-power.service.in: Become part of
lomiri-indicators.target. (c72711f3)
2024-04-01 复予
* Translated using Weblate (Chinese (Simplified)) (17789c57)
2024-03-22 Steve
* Translated using Weblate (French) (7bc8d313)
2024-03-14 이정희
* Translated using Weblate (Korean) (92e9c0ac)
2023-12-26 Mike Gabriel
* release 24.1.0 (005ac61a) (tag: 24.1.0)
2023-12-19 Mike Gabriel
* Merge branch 'personal/peat-psuwit/bring-back-lomiri-hints'
(635be6aa)
2023-12-08 Ratchanan Srirattanamet
* Confirm that all supposedly boolean hints take strings (c96d7eda)
* Guard Lomiri-specific notification hints under conditionals
(28b0b55e)
2023-12-07 Ratchanan Srirattanamet
* tests/test-notify: remove unused hint variable (f494eae6)
2023-12-06 Ratchanan Srirattanamet
* Revert "Remove orphan osd-notify remnants" (18d92e36)
2023-11-06 Mike Gabriel
* release 23.10.1 (51d61854) (tag: 23.10.1)
2023-11-04 Robert Tari
* Merge branch 'sunweaver-pr/rda-optional' (0b8c415d)
2023-11-04 Mike Gabriel
* {CMakeLists.txt,src/service.c}: Make building against librda
optional. (55c6fbd9)
2023-10-24 Moo
* Translated using Weblate (Lithuanian) (5a029486)
2023-10-14 Quentin PAGÈS
* Translated using Weblate (Occitan) (5d81ce6d)
2023-10-13 Mike Gabriel
* release 23.10.0 (02fba87e) (tag: 23.10.0)
2023-10-10 Mike Gabriel
* po/: Update translation files. (75641c9a)
2023-10-06 Mike Gabriel
* Merge branch 'tari01-pr/drop-zenity' (c5c442e2)
2023-10-04 Robert Tari
* debian/control: Drop zenity dependency (7b961611)
2023-10-02 Mike Gabriel
* Merge branch 'personal/mariogrip/dbus-updates' (2e602b9f)
2023-09-18 Marius Gripsgard
* dbus: Add power percentage and is discharging (b794ebd0)
2023-09-15 gallegonovato
* Translated using Weblate (Spanish) (2aefd847)
2023-09-11 Mike Gabriel
* Translated using Weblate (German) (09dd9f9c)
2023-09-09 Mike Gabriel
* Merge branch 'tari01-pr/notification-cleanup' (c0496578)
2023-09-09 Robert Tari
* Remove orphan osd-notify remnants (ba37bd39)
2023-09-06 Luna Jernberg
* Translated using Weblate (Swedish) (9c705574)
2023-09-02 Robert Tari
* Merge branch 'sunweaver-pr/no-rda-checks-on-lomiri' (7b044357)
2023-08-31 Mike Gabriel
* src/service.c: Ignore RDA's opinion when on Lomiri. Assume local
session for Lomiri. (bc6df203)
2023-08-24 Mike Gabriel
* release 23.6.1 (3ddb5324) (tag: 23.6.1)
* src/deviceinfo-flashlight.c: Add copyright header. (1ccd548f)
* Merge branch 'tari01-pr/detect-remote-session' (dc145085)
2023-08-20 Sabri Ünal
* Translated using Weblate (Turkish) (62d78d59)
* Translated using Weblate (Turkish) (12e9c966)
2023-08-07 Robert Tari
* .build.yml: Add librda dependency (60c00e40)
* debian/control: Add librda dependency (7db56c61)
2023-08-10 Robert Tari
* Do not show when in a remote session (319748d4)
2023-08-04 Robert Tari
* src/notifier.c: Do not access freed variable (22563833)
2023-07-11 Jozef Mlich
* Translated using Weblate (Czech) (7ae61552)
2023-06-30 Ratchanan Srirattanamet
* src/service.c: stop special-casing Lomiri for level indicator type
(822b8010)
2023-07-12 Robert Tari
* Merge branch 'personal/peat-psuwit/update-phone-section' (9823a1da)
2023-06-15 Ratchanan Srirattanamet
* src/service.c: also update devices section on phone profile
(1ac0b0f6)
2023-06-27 Sylke Vicious
* Translated using Weblate (Italian) (7737c055)
2023-06-25 ssantos
* Translated using Weblate (Portuguese) (2e7cd281)
2023-06-22 Milan Korecky
* Translated using Weblate (Czech) (5ca05bd0)
2023-06-21 Daniel Frost
* Translated using Weblate (German) (e7d41b0e)
2023-06-22 Jozef Mlich
* Translated using Weblate (Czech) (c1f0d8c3)
2023-06-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (c5d69463)
* Translated using Weblate (Russian) (09e39d72)
2023-06-10 Sabri Ünal
* Translated using Weblate (Turkish) (dfcc519b)
2023-06-10 gallegonovato
* Translated using Weblate (Spanish) (c2b219dc)
2023-06-09 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (844930c3)
2023-06-09 Heimen Stoffels
* Translated using Weblate (Dutch) (c7954a9a)
2023-06-09 Yaron Shahrabani
* Translated using Weblate (Hebrew) (dee65363)
2023-06-09 Mike Gabriel
* po/: Translation update. (149b66aa)
* release 23.6.0 (8eb43eca) (tag: 23.6.0)
* d/control: Add to S: ayatana-ido (>= 0.10.0). Older versions don't
ship the 'level' menu item. (930179e4)
2023-06-08 Robert Tari
* Merge branch 'muhammad23012009-main' (238d705c)
2023-06-06 Mike Gabriel
* src/device.c: Don't show parentheses around time-remaining /
battery charge percentage values when in Lomiri.
(0ed3e176)
2023-06-08 Robert Tari
* Merge branch 'sunweaver-pr/no-parentheses-in-lomiri' (c20a21fa)
2023-06-06 Mike Gabriel
* src/device.c: Don't show parentheses around time-remaining /
battery charge percentage values when in Lomiri.
(80312bd7)
2023-06-05 Muhammad
* Merge branch 'AyatanaIndicators:main' into main (37ce149f)
2023-05-12 Muhammad
* src: add support for getting flashlight paths through deviceinfo
(dd3dccb5)
2023-05-20 Milo Ivir
* Translated using Weblate (Croatian) (22d2a526)
2023-05-05 Mike Gabriel
* Merge branch 'tari01-pr/adapt-to-level-ido' (08039f0b)
2023-04-05 Robert Tari
* Do not use charge-aware icons in the menu (8f7c0cdb)
* Use the device model name in the menu (906c021e)
* src/service.c: Use level or progress IDO as needed (eeea7eab)
* CMakeLists.txt: Fix minimum requred CMake warning (490ec9d3)
* Whitespace fix (858276bc)
2023-04-20 Vilakone Thammavong
* Translated using Weblate (Lao) (e62300da)
2023-04-06 ssantos
* Translated using Weblate (Portuguese) (813f52b7)
2023-04-07 Mike Gabriel
* CMakeLists.txt: Fix version number. (3bd498c0)
2023-04-03 Mike Gabriel
* Merge branch 'tari01-pr/show-bluetooth-devices' (e6e69b2b)
2023-03-06 Robert Tari
* Show battery level for all devices (including bluetooth) (c80d5eb2)
2023-03-16 Heimen Stoffels
* Translated using Weblate (Dutch) (e1f4b7ff)
* Translated using Weblate (Dutch) (0c28f812)
2023-03-03 gallegonovato
* Translated using Weblate (Spanish) (c63e0ded)
2023-02-28 Mike Gabriel
* release 22.9.5 (44408bb8) (tag: 22.9.5)
* Merge branch 'tari01-pr/lomiri-fake-battery' (b173fa10)
2023-02-16 Robert Tari
* src/service.c: Create a fake primary device icon on Lomiri if no
device is present (8a223541)
2023-02-12 Mike Gabriel
* release 22.9.4 (7f0e2f59) (tag: 22.9.4)
* Merge branch 'tari01-pr/flashlight-change-state' (a19e4d91)
2023-02-10 Luna Jernberg
* Translated using Weblate (Swedish) (d2569c71)
2023-02-11 Robert Tari
* Handle state changes for flashlight switch (8ec14e26)
2023-02-10 Luna Jernberg
* Translated using Weblate (Swedish) (5ff62e20)
2023-01-06 Andy Chiang
* Translated using Weblate (Chinese (Simplified) (zh_LATN@pinyin))
(a7c39af5)
2022-12-30 Milo Ivir
* Translated using Weblate (Croatian) (670d4d38)
2022-11-23 Mike Gabriel
* Merge branch 'tari01-pr/fix-lomiri-schemas-name' (1354d990)
2022-11-14 Robert Tari
* debian/control: Correct lomiri-schemas name (ff3449dc)
2022-11-13 Mike Gabriel
* release 22.9.3 (d1e4bc61) (tag: 22.9.3)
* Merge branch 'tari01-pr/fix-auto-brightness-toggle' (d744550b)
2022-11-13 Robert Tari
* src/service.c: Fix auto brightness switch (ddb60738)
2022-11-12 Mike Gabriel
* release 22.9.2 (8038312a) (tag: 22.9.2)
* Merge branch 'fredldotme-sargo-battery' (a87015b3)
2022-11-12 Alfred Neumayer
* Revert "Don't prioritize discharging items with no time estimate
that have more than 10% power remaining." (cdf24598)
2022-11-12 Mike Gabriel
* Merge branch 'tari01-pr/fix-tests' (ce3cef13)
2022-11-11 Robert Tari
* tests/test-device.cc: Fix icon tests (350a2104)
2022-11-12 Mike Gabriel
* release 22.9.1 (b72b14c4) (tag: 22.9.1)
* Merge branch 'tari01-pr/fix-flashlight-toggle' (009e1b62)
2022-11-11 Robert Tari
* src/service.c: Fix flashlight toggle (f4bbf9dd)
2022-11-10 Mike Gabriel
* Merge branch 'tari01-pr/fix-theming' (47feef09)
2022-10-06 Robert Tari
* Theming fix: Separate panel icons from the power menu icons
(1b8c12e2)
2022-10-19 Kristjan Räts
* Translated using Weblate (Estonian) (2b2ee5a8)
2022-10-01 Mubarek Seyd Juhar
* Translated using Weblate (Tigrinya) (99180967)
2022-09-29 이정희
* Translated using Weblate (Korean) (c5d5de4d)
2022-09-25 Oğuz Ersen
* Translated using Weblate (Turkish) (835f256b)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (e1f32cf7)
* Translated using Weblate (Russian) (2997ed41)
2022-09-14 Mike Gabriel
* release 22.9.0 (7f9bbcb2) (tag: 22.9.0)
2022-09-14 Milan Korecky
* Translated using Weblate (Czech) (0aa1bc1f)
2022-09-14 Mike Gabriel
* po/*.po{,t}: Translation strings update (esp. source file
references). (4e13213e)
* update-po{,t}.sh: Also catch multi-file source file references.
(069e9532)
2022-09-13 Robert Tari
* Merge branch 'sunweaver-pr/fix-and-update-translation-template'
(ee9f029e)
2022-09-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (b0aa9020)
2022-09-07 Moo
* Translated using Weblate (Lithuanian) (4f44d072)
2022-09-06 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (0374202f)
2022-09-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (64497ab2)
2022-09-05 Mike Gabriel
* Translated using Weblate (German) (7a83794e)
2022-09-11 Mike Gabriel
* po/*.pot: Update translation template file. (55df6adb)
* data/: Fix translation of .gschema.xml file. (5482074a)
* update-po{,t}.sh: Omit ../ at beginning of file names in .po(t)
file(s). (4e1ed14b)
2022-09-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (beaa19ff)
2022-09-07 Moo
* Translated using Weblate (Lithuanian) (ca3d681a)
2022-09-06 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (1df012ed)
2022-09-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (7bbf4e9d)
2022-09-05 Mike Gabriel
* Translated using Weblate (German) (67d732c3)
* po/*.po{,t}: Translation strings update. (d5fd034f)
2022-09-02 Robert Tari
* Merge branch 'sunweaver-pr/tooltip-support' (16cae61b)
* tests/test-device.cc: Add missing header (de773702)
* Whitespace fix (ebaf72c1)
2022-07-22 Mike Gabriel
* src/service.c: Add tooltip support. (322f63be)
2022-07-14 Teitei
* Translated using Weblate (Burmese) (dabd41da)
2022-04-23 Sergii Horichenko
* Translated using Weblate (Ukrainian) (08b4c591)
* Translated using Weblate (Ukrainian) (30ae76c6)
2022-04-05 Mike Gabriel
* Merge branch 'flexiondotorg-gaming-input' (5ade5c4e)
2022-04-05 Martin Wimpress
* Add support for gaming-input devices with internal batteries
(dbc0a8de)
2022-03-29 Quentin PAGÈS
* Translated using Weblate (Occitan) (56a3011c)
2022-03-29 Yaron Shahrabani
* Translated using Weblate (Hebrew) (4045fccd)
2022-03-26 Yaron Shahrabani
* Translated using Weblate (Hebrew) (a332c277)
2022-03-26 ButterflyOfFire
* Translated using Weblate (Arabic) (fa1d4af0)
2022-03-21 Yaron Shahrabani
* Translated using Weblate (Hebrew) (f81c2179)
2022-02-28 Mike Gabriel
* Merge branch 'tari01-pr/get-sounds-path-from-lomniri-sounds'
(fb42e141)
2022-02-23 Robert Tari
* .build.yml: Add lomiri-sounds dependency and pull it from git
(0a4e2ee6)
* Get Lomiri sounds path from lomiri-sounds pkg-config (cbf17a52)
2022-02-20 Mike Gabriel
* release 22.2.0 (8e990c91) (tag: 22.2.0)
* Merge branch 'tari01-pr/add-lomiri-features-flag' (bc16de10)
2022-02-18 Robert Tari
* .build.yml: Add ENABLE_LOMIRI_FEATURES flag and adapt build flow
(e6f52e91)
* Make Lomiri features configurable at build time (627d6852)
2022-02-16 Mike Gabriel
* Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'
(b12fb0e3)
2022-02-14 Robert Tari
* Drop pkglibexecdir and use native CMake file configuration
(a9e3f58e)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(47544b87)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (d70bd10f)
2021-12-17 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(6cf76046)
* Clean up compilation flags (f3426895)
2021-12-15 Mike Gabriel
* Merge branch
'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
(eeb9ddc6)
2021-12-06 Robert Tari
* .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
(0d84ced5)
2021-12-15 Mike Gabriel
* Merge branch 'tari01-pr/detect-lomiri-schemas' (809fa0a1)
2021-11-24 Robert Tari
* Check for lomiri-schemas package instead of individual files
(14726b03)
2021-12-15 Mike Gabriel
* Merge branch 'tari01-pr/drop-makevars' (01b36c88)
2021-11-23 Robert Tari
* po/Makevars: Drop file (d52a3d79)
2021-11-21 phlostically
* Translated using Weblate (Esperanto) (cf5df473)
2021-11-22 Mike Gabriel
* Merge branch 'tari01-pr/drop-sounds' (ddd9347a)
2021-11-19 Robert Tari
* Drop Low battery.ogg and adapt code to use Lomiri sounds (c8591cc9)
2021-11-20 phlostically
* Translated using Weblate (Esperanto) (f71a7c1a)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (3bd0e415)
2021-11-18 Mike Gabriel
* src/service.c: Assign copyright to Robert Tari, not
AyatanaIndicators project. (35726635)
* src/: Typo fix in license header. (084f344b)
2021-11-17 Mike Gabriel
* release 2.2.0 (9e26f76e) (tag: 2.2.0)
2021-11-10 Mike Gabriel
* Merge branch 'tari01-pr/rename-to-x-lomiri' (ce103610)
2021-11-09 Robert Tari
* Rename Lomiri-specific properties to x-lomiri (2b3772ab)
2021-11-03 ElectrifiedSpeed
* Translated using Weblate (Macedonian) (a692593a)
2021-11-02 Mike Gabriel
* Merge branch 'tari01-pr/drop-merge-review' (99f04801)
2021-11-02 Robert Tari
* Drop all references to MERGE-REVIEW (25aa4b1a)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/accountsservice-sound' (84201b1f)
2021-11-01 Robert Tari
*_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS to
HAS_LOMIRI_ACCTSERVICE_SOUND (c8aae42d)
* com.ubuntu.touch.AccountsService.Sound to
com.lomiri.touch.AccountsService.Sound (b956f93f)
* debian/control: Depend on lomiri-common-schemas instead of
accountsservice-ubuntu-schemas (c3e75f36)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/rename-com-ubuntu-touch-system' (f25c5c89)
2021-10-28 Robert Tari
* Rename com.ubuntu.touch.system to com.lomiri.touch.system
(aab43add)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/x-canonical-to-x-ayatana' (2e0b3e53)
2021-10-26 Robert Tari
* Rename x-canonical properties to x-ayatana (4cefa0be)
2021-10-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (9496810b)
2021-10-25 Mike Gabriel
* .build.yml: Remove source code of locally built dependency after it
has been installed. (50f55568)
* .build.yml: Run unit tests in build_scripts: target. (8c3fd380)
* .build.yml: Drop autogen.sh support. (de7348d2)
2021-10-22 Robert Tari
* data/CMakeLists.txt: Do not use automatic GSchema compilation
(6f08a78f)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/use-intltool-merge-translations' (89958b62)
2021-10-21 Robert Tari
* data/CMakeLists.txt: Use intltool_merge_translations instead of
execute_process (4fde8a36)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/use-native-cmake-gsettings-module'
(31defa19)
2021-10-20 Robert Tari
* Use native CMake GSettings module (cb4dc747)
* .travis.yml: Temporarily disable ppc64le builds (8cae7206)
2021-09-20 Robert Tari
* src/device.c: Fix copyright header (03b3c67d)
2021-09-02 Robert Tari
* .build.yml: Also run unit tests during CI builds against Ubuntu.
(892badd1)
* Fix Travis status image (85fcc78c)
2021-08-29 Hosted Weblate
* Update translation files (5b998de1)
2021-08-29 Mike Gabriel
* debian/{control,compat}: Bump to level 10. (399e1468)
* debian/rules: Enable unit tests with the new way. (b0897a0f)
2021-08-28 Weblate
* Added translation using Weblate (Kurdish (Southern)) (b78e5ac5)
* Added translation using Weblate (Kurdish (Northern)) (34e8684b)
2021-08-28 Mike Gabriel
* po/: Drop zh_Hant.po: Drop duplicate file for Chinese
(Tranditional) and adjust LINGUAS files. (8326b47e)
* .travis.yml: Fix branch name what is now the default branch in
ayatana-dev-scripts. (81bcde10)
* Merge branch 'tari01-pr/drop-lomiri-url-dispatcher' (ce0f7ae7)
2021-08-25 Robert Tari
* Drop all references to lomiri-url-dispatcher (5a49c61d)
2021-08-28 Mike Gabriel
* Merge branch 'sunweaver-pr/fix-ci-builds' (b22198ea)
* .build.yml: Assure that all build requirements for
libayatana-common are available in CI build chroots.
(9af4de71)
* .build.yml: Fix CI failures in before_script stage. The
libayatana-common build-from-source requires Vala
nowadays. (7c733c92)
* Merge branch 'tari01-pr/fix-lomiri-power-setting' (75bcdb42)
2021-08-25 Robert Tari
* Fix Lomiri power setting (956867ac)
2021-08-28 Mike Gabriel
* Merge branch 'tari01-pr/ubports-patches' (046a91ec)
2021-07-27 Robert Tari
* Rename com.canonical.powerd -> com.lomiri.Repowerd (d5a53027)
2020-12-03 Jami Kettunen
* flashlight: Add support for PM8998 based SoCs (2432f6b3)
2020-10-16 Jami Kettunen
* flashlight: Add support for simpler sysfs toggles (#34) (333a4273)
2018-10-28 Rodney
* Pull in many fixes from the bionic branch. (#7) (948a5107)
2016-05-16 Charles Kerr
* fix glib-fixture.h copyright year in header comment (ecb73d5a)
* since we're shopping audio out to org.freedesktop notifications,
drop the gstreamer build dep (4a4663ac)
* housekeeping: sync tests/glib-fixture with the up-to-date version
in indicator-datetime (bcdc3cc3)
* fix cmake warning of the test apps' dependency on the service
library (39571b0e)
2016-02-01 Charles Kerr
* remove dead code (557e10a0)
* for low power notifications, use libnotify's 'sound-file' property
instead of indicator-power calling the sound player
directly (f4d66118)
2016-01-04 Charles Kerr
* demote a spurious warning to a debug message (b9068926)
* don't disable the warning sound when AccountServices is completely
unavailable (d2e654d5)
* move sound-player-mock into the tests/ directory (f829a7e9)
* fix copy-paste typo (1d9e1e53)
* assume we're in silent mode if we can't get an accounts-service
proxy (27122e92)
* add a leak safeguard to accounts_service_sound_proxy (afc09193)
* add build-dep to accountsservice-ubuntu-schemas instead of bundling
com.ubuntu.touch.AccountsService.Sound.xml into our source
tree (1182c7fb)
2016-01-01 charles kerr
* handle service_set_notifier(NULL) gracefully (5d038638)
* update copyright dates on changed files (again) (deca9153)
* honor com.ubuntu.touch.AccountsService.Sound.SilentMode (97130ad0)
* use a symbolic constant for the low battery sound's filename
(460f1464)
* create a data/sounds/ directory in the repo to hold Low battery.ogg
(c7881a2d)
* fix another touched file's copyright date (9b631e93)
* fix notifier property in service (61327b52)
* in Notifier's destructor, unref its SoundPlayer field (46efcd90)
* update copyright years on changed/new files (bdc03e1c)
* add play-sound tests to test-notify (d7d630dd)
* make a SoundPlayer interface so we can mock it in the tests
(a8fd3f49)
* use gstreamer to play the sound (2b939453)
* add logic to call sound_play_file() when the low battery
notification is shown (4fc7a4e4)
* add an XDG friendly way of finding app-specific datafiles
(c5f9fe4e)
2015-06-02 Marc Deslauriers
* Don't prioritize discharging items with no time estimate that have
more than 10% power remaining. (522fdc6a)
2016-01-01 charles kerr
* add 'Low battery.ogg' (6fbccd32)
2021-08-27 Ács Zoltán
* Translated using Weblate (Hungarian) (92ac2554)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/no-pie-only-in-tests' (bad62953)
2021-08-10 Robert Tari
* Use -no-pie build flag for tests only (9ed2cfff)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/add-enable-werror-option' (0e8c18ce)
2021-08-09 Robert Tari
* Add ENABLE_WERROR option (b0737af9)
2021-08-06 Mike Gabriel
* Merge branch 'tari01-pr/add-documentation' (a3361b8f)
2021-07-28 Robert Tari
* Add documentation and build instructions (de47a96f)
2021-07-15 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (672d5f26)
2021-06-04 Hosted Weblate
* Update translation files (45e53e66)
2021-06-03 Weblate
* Added translation using Weblate (Chinese (Traditional)) (afd2c1f9)
2021-06-03 Hosted Weblate
* Update translation files (2cbabb96)
2021-05-22 Yaron Shahrabani
* Translated using Weblate (Hebrew) (d01da4e7)
2021-05-20 Jacque Fresco
* Translated using Weblate (Indonesian) (d6582eba)
2021-05-17 Mike Gabriel
* Merge branch 'tari01-pr/standard-cmake' (49afb061)
2021-05-17 Robert Tari
* CMakeLists.txt: Add standard Ayatana CMake bits (803dbf62)
2021-05-17 Mike Gabriel
* Merge branch 'tari01-pr/prefixed-libayatana-common' (408b2658)
2021-05-17 Robert Tari
* Use prefixed libayatana-common symbols (06a9f941)
2021-05-11 Robert Tari
* Merge branch 'sunweaver-pr/fix-cmake-coverage-reporting' (b03e69d7)
2021-05-04 Mike Gabriel
* .travis.yml: Don't try running autotools based CI build. (0261d5a6)
* .travis.yml: Don't try running autotools based CI build. (f853eda7)
* CMakeLists.txt: Switch to 'our' new style of enabling tests and
coverage reports. (edd6cdd6)
* Merge branch 'tari01-pr/remove-zenity-warning' (a3db5703)
2021-05-03 Mike Gabriel
* debian/control: Bump versioned B-D on libayatana-common to (>=
0.9.1). (22acbfc4)
2021-04-06 Robert Tari
* src/utils.(ch): Drop local zenity_warning and use
libayatana-common. (f3270035)
2021-05-03 Mike Gabriel
* CMakeLists.txt: Require libayatana-common 0.9.1. (284da3fc)
2021-05-04 Mike Gabriel
* Revert "Fix percentage for mice and keyboards" (d4e75ae9)
* debian/control: Fix B-D on libayatana-common(-dev). The -dev suffix
had been forgotten. (9299187a)
2021-05-03 Mike Gabriel
* Merge branch 'tari01-pr/peripherial-percentage' (94edbd37)
2021-04-01 Robert Tari
* Add us to the copyright headers (062e93c1)
* Fix percentage for mice and keyboards (f94ffac7)
2021-05-03 Mike Gabriel
* Merge branch 'tari01-pr/always-show' (773cf3e9)
2021-03-29 Robert Tari
* Always show indicator, use icon policy only on Lomiri (0ded1c9a)
2021-05-03 Mike Gabriel
* Merge branch 'tari01-pr/add-budgie' (f1881114)
2021-03-26 Robert Tari
* Add Budgie desktop support. (29f1219a)
2021-05-03 Mike Gabriel
* Merge branch 'tari01-pr/add-libayatana-common' (03e887ab)
2021-03-25 Robert Tari
* Add us to the copyright headers (9fefd2ee)
* debian/control: B-D on libayatana-common (>= 0.9.0). (716b6558)
* Move redundant code portions into libayatana-common and build
against it. (85b752c3)
2021-05-03 Mike Gabriel
* Merge branch 'tari01-pr/fix-build-warnings' (4c50f671)
2021-03-25 Robert Tari
* Fix cmake version warnings. (8a96865c)
2021-05-03 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (bb0490d7)