-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
1928 lines (1190 loc) · 54.4 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-22 Robert Tari
* Merge branch 'sunweaver-pr/lomiri-indicators-target' (b982756f)
2024-05-21 Mike Gabriel
* data/ayatana-indicator-display.service.in: Become part of
lomiri-indicators.target. (3699389a)
2024-05-22 Mike Gabriel
* Merge branch 'OPNA2608-fix/recursive-schema-lookup' (ffec0d45)
2024-05-20 OPNA2608
* src/service.cpp: Look up schemas recursively (50b2197c)
2024-05-17 Mike Gabriel
* release 24.4.1 (4d95bad3) (tag: 24.4.1)
2024-05-17 Robert Tari
* Merge branch 'sunweaver-pr/cppcheck-2.14' (4b25c3a1)
2024-05-04 Mike Gabriel
* cppcheck: Run with --check-level=exhaustive. (bfb74193)
* cppcheck: Replace C-style casts by C++-style static_cast<> casts.
(9b3eb0bc)
* cppcheck: Suppress constParameterCallback. (8c4b2d9c)
* cppcheck: Fix missingOverride complaints. (f1dde7a9)
2024-05-15 Robert Tari
* Merge branch
'sunweaver-pr/xsct-brightness-slider-blackscreen-with-de-locale'
(9a605aa2)
2024-05-14 Mike Gabriel
* src/main.cpp: Initialize LC_NUMERIC with 'POSIX'. (89ca869f)
2024-04-18 复予
* Translated using Weblate (Chinese (Simplified)) (cd7ad7e2)
2024-04-13 ID J
* Translated using Weblate (Korean) (79894112)
2024-04-08 Mike Gabriel
* release 24.4.0 (fb208451) (tag: 24.4.0)
* Merge branch 'tari01-pr/slider-step' (3ec03467)
2024-04-05 Robert Tari
* src/service.cpp: Fix slider step and precision (60760e48)
2024-03-22 Steve
* Translated using Weblate (French) (7b200131)
2024-03-14 이정희
* Translated using Weblate (Korean) (e235cda0)
2024-03-04 Mike Gabriel
* Merge branch 'gber-personal/gber/fix-uninitialized-mem' (7eae679a)
2024-03-04 Guido Berhoerster
* Fix access of unitialized variables in DisplayIndicator destructor
(21967eef)
2024-02-24 Mike Gabriel
* release 24.1.1 (1e797106) (tag: 24.1.1)
* Merge branch 'tari01-pr/add-pkla' (2d236192)
2024-02-23 Robert Tari
* data/org.ayatana.indicator.display.AccountsService.policy: Fix
policy message text (cdc1572a)
* Add data/50-org.ayatana.indicator.display.AccountsService.pkla to
support old systems (8738816d)
2024-01-22 Moo
* Translated using Weblate (Lithuanian) (0403a06b)
2023-12-28 Ivo Xavier
* Translated using Weblate (Portuguese) (13015ca8)
2023-12-26 Mike Gabriel
* release 24.1.0 (0acb2e83) (tag: 24.1.0)
2023-12-14 Ratchanan Srirattanamet
* po: update .pot file (0539978b)
* debian/control: remove uneeded dependency (7b5f8187)
* Remove ENABLE_LOMIRI_FEATURES CMake flag (b7db65f0)
* tests: remove no longer needed parts (fce2bb77)
* Remove USB manager and corresponding tests (32f4db85)
2023-12-05 Mike Gabriel
* Merge branch 'tari01-pr/add-accountsservice' (3c0c8488)
2023-12-03 Robert Tari
* INSTALL.md: Update build dependencies (8fec9b6f)
* debian/control: Add libaccountsservice-dev dependency (86d64f3b)
* .build.yml: Add accountsservice dependency (405c7fdd)
* CMakeLists.txt: Add accountsservice dependency (0638d3d1)
* src/service.cpp: Add AccountsService support (92416fee)
2023-12-04 Robert Tari
* Whitespace fix (aef2ed68)
2023-12-03 Robert Tari
* src/service.cpp: Fix build with ENABLE_COLOR_TEMP off (50448a83)
* data/*: Add AccountsService files (83fad630)
2023-11-21 Mike Gabriel
* release 23.10.5 (72490e5c) (tag: 23.10.5)
* Merge branch 'tari01-pr/metacity-icon-cursor' (4657aab5)
2023-11-21 Robert Tari
* src/service.cpp: Also switch metacity, icon and cursor themes when
changing theme (08ede859)
2023-11-20 Mike Gabriel
* release 23.10.4 (7ef3aaf2) (tag: 23.10.4)
* Merge branch 'tari01-pr/greeter-mode' (566c9d8e)
2023-11-20 Robert Tari
* src/service.cpp: Hide theme profiles and settings in the greeter
(327d016e)
* data/org.ayatana.indicator.display: Add desktop greeter section
(6c151348)
2023-11-14 Mike Gabriel
* release 23.10.3 (0f8eb5c7) (tag: 23.10.3)
* Merge branch 'tari01-pr/missing-color-scheme' (cc077180)
2023-11-11 Robert Tari
* src/service.cpp: Handle missing
org.gnome.desktop.interface::color-scheme (256b8334)
2023-11-11 Mike Gabriel
* release 23.10.2 (d389b92c) (tag: 23.10.2)
* Merge branch 'tari01-pr/fix-translation' (a2f03b4f)
2023-11-11 Robert Tari
* src/service.cpp: Fix string array translation (2f04eecf)
2023-11-08 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (9ec76fed)
2023-11-08 Ivo Xavier
* Translated using Weblate (Portuguese) (5c03da64)
2023-11-06 Jozef Mlich
* Translated using Weblate (Czech) (3f89bec6)
2023-11-06 Mike Gabriel
* release 23.10.1 (d3c6cb47) (tag: 23.10.1)
2023-11-02 Mike Gabriel
* Merge branch 'tari01-pr/no-properties-cpp-dependency-condition'
(5db00b36)
2023-11-01 Robert Tari
* CMakeLists.txt: Remove condition from properties-cpp dependency
(524d36e1)
2023-10-20 Jozef Mlich
* Translated using Weblate (Czech) (92ef663c)
2023-10-13 Serhii Horichenko
* Translated using Weblate (Ukrainian) (28603c2e)
2023-10-14 Oğuz Ersen
* Translated using Weblate (Turkish) (5f5d5672)
2023-10-13 Serhii Horichenko
* Translated using Weblate (Russian) (a4b715f3)
2023-10-13 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (f5e0cd79)
2023-10-14 Quentin PAGÈS
* Translated using Weblate (Occitan) (b0a29f80)
2023-10-13 Heimen Stoffels
* Translated using Weblate (Dutch) (a37ac66a)
2023-10-14 Yaron Shahrabani
* Translated using Weblate (Hebrew) (d7219d9e)
2023-10-14 gallegonovato
* Translated using Weblate (Spanish) (4c9f39b7)
2023-10-12 Mike Gabriel
* release 23.10.0 (e793fd2f) (tag: 23.10.0)
* Translated using Weblate (German) (92921093)
* po/: Update translation files. (75993e21)
* Translated using Weblate (German) (ae467dfc)
* data/org.ayatana.indicator.display.gschema.xml: Fix phrase in
description tag of 'theme-profile' gsetting. (2e55a78d)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Ukrainian) (832667e4)
* Translated using Weblate (Russian) (555d05e2)
2023-10-11 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (b75808be)
2023-10-11 Heimen Stoffels
* Translated using Weblate (Dutch) (cb407eba)
2023-10-12 Mike Gabriel
* Translated using Weblate (German) (96d9b836)
2023-10-10 Mike Gabriel
* po/: Update translation files. (440dbcd4)
* Merge branch 'tari01-pr/rename-to-display' (a6635f03)
2023-10-09 Robert Tari
* Update documentation (15d318fe)
* src/indicator.h: Fix multiple definitions of header property
(bb479fd0)
* tests/CMakeLists.txt: Suppress useless override buggy cppcheck
warning (f8ee1db7)
* Rename indicator class and service source files (132a445a)
* Rename Indicator Service (abcbf6b7)
2023-09-11 Mike Gabriel
* Translated using Weblate (German) (0713c691)
2023-09-10 Mike Gabriel
* Merge branch 'tari01-pr/notification-cleanup' (a87dce30)
2023-09-10 Robert Tari
* Remove orphan notify-osd remnants (acdf1661)
2023-09-10 Mike Gabriel
* Merge branch 'tari01-pr/store-geolocation' (ef13b221)
2023-09-07 Robert Tari
* src/rotation-lock.cpp: Save last geographic location and use that
at startup (533a38d4)
* data/org.ayatana.indicator.display.gschema.xml: Create keys for
longitude and latitude (81de7013)
2023-09-06 Mike Gabriel
* Merge branch 'tari01-pr/add-dark-mode' (a41ed61c)
2023-07-06 Robert Tari
* .build.yml: Add missing dependency (37b16637)
* CMakeLists.txt: Minor CMake warning fixes (78273398)
* src/exporter.cpp: Drop unused variable (5945143a)
* src/rotation-lock.cpp: Add theme profiles (24556f25)
* data/org.ayatana.indicator.display.gschema.xml: Add theme
manipulation keys (08134f79)
2023-07-05 Robert Tari
* src/rotation-lock.cpp: Use singular profile in menu label
(d2e5eb6e)
* src/rotation-lock.cpp: Simplify code and keep updater callback
running (5346a0cb)
2023-09-06 Luna Jernberg
* Translated using Weblate (Swedish) (61c22b5f)
2023-08-20 Sabri Ünal
* Translated using Weblate (Turkish) (2c63641c)
2023-07-01 spnux
* Translated using Weblate (French) (4e11c1e4)
2023-06-27 Sylke Vicious
* Translated using Weblate (Italian) (360ee7fd)
2023-06-22 Joan CiberSheep
* Translated using Weblate (Catalan) (e9e05756)
2023-06-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (90676be6)
* Translated using Weblate (Russian) (00fa16fe)
2023-05-20 Milo Ivir
* Translated using Weblate (Croatian) (f70ef345)
2023-04-07 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (5dfabd1c)
2023-04-06 ssantos
* Translated using Weblate (Portuguese) (72b3d093)
2023-03-29 Quentin PAGÈS
* Translated using Weblate (Occitan) (09633ff6)
2023-03-22 Tomáš Marný
* Translated using Weblate (Czech) (c0da3a21)
2023-03-19 Mike Gabriel
* Translated using Weblate (German) (5e181f92)
2023-03-15 Heimen Stoffels
* Translated using Weblate (Dutch) (3c149cd4)
2023-03-09 Oğuz Ersen
* Translated using Weblate (Turkish) (656bd5f1)
2023-03-09 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (beca4106)
2023-03-09 Yaron Shahrabani
* Translated using Weblate (Hebrew) (714c4188)
2023-03-09 gallegonovato
* Translated using Weblate (Spanish) (891ac0b6)
2023-03-09 Mike Gabriel
* po/: Update translation files. (8e3599e8)
* Merge branch 'tari01-pr/add-brightness' (1fc6d8ec)
2023-03-08 Robert Tari
* debian/control: Require xsct 1.9 or higher (bd6769f3)
* src/rotation-lock.cpp: Add brightness action, slider and handlers
(6b17e30f)
* data/org.ayatana.indicator.display.gschema.xml: Store current
brightness (13d89c67)
* Add brightness icons (ea15f0a3)
* src/rotation-lock.cpp: Replace gclue_simple_new_with_thresholds
functions (88685752)
2023-03-03 gallegonovato
* Translated using Weblate (Spanish) (ef9cf417)
2023-02-24 Tomáš Marný
* Translated using Weblate (Czech) (045b7af8)
2023-02-21 Sergii Horichenko
* Translated using Weblate (Ukrainian) (1422fd29)
* Translated using Weblate (Russian) (e2ac9103)
2023-02-10 Luna Jernberg
* Translated using Weblate (Swedish) (0f4e97a7)
2023-02-04 Mike Gabriel
* release 22.9.4 (7b78fec5) (tag: 22.9.4)
2023-01-12 Robert Tari
* .build.yml: Add geoclue build dependency (decf6091)
* debian/control: Add libgeoclue-2 dependencies (4e5098bd)
2023-02-02 Robert Tari
* Skip geoclue calls during the rotation lock test (94df80b3)
2023-01-12 Robert Tari
* Implement adaptive colour temperature profiles (0db5d4e7)
* src/solar.*: Add solar elevation calculation from Redshift
(2d4a7321)
* data/org.ayatana.indicator.display.gschema.xml: Store colour
profile + change default temperature (5b366675)
2023-01-13 Quentin PAGÈS
* Translated using Weblate (Occitan) (b13b8b91)
2022-12-30 Milo Ivir
* Translated using Weblate (Croatian) (ef654f04)
2022-12-18 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (723be173)
2022-12-17 Yaron Shahrabani
* Translated using Weblate (Hebrew) (729d8229)
2022-12-16 Oğuz Ersen
* Translated using Weblate (Turkish) (70c1f4d7)
2022-12-15 Mike Gabriel
* Translated using Weblate (German) (fa138594)
* release 22.9.3 (868f232a) (tag: 22.9.3)
* Translated using Weblate (German) (29c9429d)
* po/: Update translation files. (cf39314a)
* release 22.9.2 (663e4db1) (tag: 22.9.2)
2022-12-15 Ratchanan Srirattanamet
* src/rotation-lock.cpp: make MenuItem QMenuModel-compatible
(853f224f)
2022-12-15 Mike Gabriel
* Merge branch 'tari01-pr/add-lomiri-features-flag' (59f15748)
2022-11-14 Robert Tari
* .build.yml: Build with ENABLE_LOMIRI_FEATURES (260817c0)
* Allow building with(out) Lomiri features (f26dba31)
2022-11-23 Mike Gabriel
* Merge branch 'tari01-pr/disable-rotation-on-desktops' (796525b9)
2022-11-17 Robert Tari
* src/rotation-lock.cpp: Hide the rotation switch on desktops
(adec0ba6)
2022-11-10 Mike Gabriel
* Merge branch 'tari01-pr/fix-test-dependencies' (275ebbc1)
2022-11-08 Robert Tari
* CMakeLists.txt: Skip test dependencies when testing is off
(214a5114)
2022-11-10 Mike Gabriel
* Merge branch 'tari01-pr/add-colourtemp' (2b111259)
2022-11-07 Robert Tari
* .build.yml: Build xsct from source (353d95c6)
* debian/control: Add xsct as a dependency (f3d919bd)
* Provide icons for the colour temperature slider (67565343)
* Add colour temperature changing functionality (f5820076)
2022-11-07 Mike Gabriel
* Merge branch 'tari01-pr/symbolic-panel-icon' (a8c45b77)
2022-10-09 Robert Tari
* src/rotation-lock.cpp: Prefer a symbolic panel icon (97b5e159)
2022-10-29 Quentin PAGÈS
* Translated using Weblate (Occitan) (21c5f70f)
2022-10-19 Kristjan Räts
* Translated using Weblate (Estonian) (174fe2cb)
* Translated using Weblate (Estonian) (add9f013)
2022-10-17 Gediminas Murauskas
* Translated using Weblate (Lithuanian) (67f2e809)
2022-10-15 Sergii Horichenko
* Translated using Weblate (Ukrainian) (22dcb2a1)
* Translated using Weblate (Russian) (6a5b7687)
2022-10-11 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (c3fe3eea)
2022-10-11 Yaron Shahrabani
* Translated using Weblate (Hebrew) (9fad02c6)
2022-10-09 Oğuz Ersen
* Translated using Weblate (Turkish) (80fecab3)
2022-10-09 Mike Gabriel
* Merge branch 'tari01-pr/fix-tooltip' (b898993b)
2022-10-09 Robert Tari
* src/exporter.cpp: Add missing tooltip to header (30072438)
2022-10-08 Mike Gabriel
* Translated using Weblate (German) (645579b9)
* po/: Update translation template. (6045e451)
* Merge branch 'tari01-pr/add-display-settings' (89236207)
2022-10-04 Robert Tari
* src/rotation-lock.cpp: Add display setting menu item (8352ae86)
2022-10-02 Mike Gabriel
* release 22.9.1 (7407056d) (tag: 22.9.1)
* Merge branch 'tari01-pr/fix-cppcheck' (64b2cf0d)
2022-09-25 Robert Tari
* Fix failing cppcheck (03a692c8)
2022-09-29 이정희
* Translated using Weblate (Korean) (0ba06d37)
2022-09-25 Oğuz Ersen
* Translated using Weblate (Turkish) (4f3a5ba6)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (f9aa7fd9)
* Translated using Weblate (Russian) (b96aede5)
2022-09-14 Mike Gabriel
* CMakeLists.txt: Post-release fix-up upstream version. (a85903d5)
* release 22.9.0 (ce557835) (tag: 22.9.0)
2022-09-14 Milan Korecky
* Translated using Weblate (Czech) (3c559f9a)
2022-09-14 Mike Gabriel
* po/*.po{,t}: Translation strings update (esp. source file
references). (a1703eb6)
* update-po{,t}.sh: Also catch multi-file source file references.
(99a3ea4e)
2022-09-13 Robert Tari
* Merge branch 'sunweaver-pr/beautify-paths-in-pot-file' (7e252aeb)
2022-09-09 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (d8abb6b4)
2022-09-09 Quentin PAGÈS
* Translated using Weblate (Occitan) (5bd86fff)
2022-09-09 Yaron Shahrabani
* Translated using Weblate (Hebrew) (ab580977)
2022-09-11 Mike Gabriel
* po/ayatana-indicator-display.pot: Update file. (35073f59)
* update-po{,t}.sh: Omit ../ at beginning of file names in .pot file.
(183f41e0)
2022-09-09 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (276c3870)
2022-09-09 Quentin PAGÈS
* Translated using Weblate (Occitan) (51b8fa65)
2022-09-09 Yaron Shahrabani
* Translated using Weblate (Hebrew) (86b70348)
2022-09-09 Eric
* Translated using Weblate (Chinese (Simplified)) (9989e050)
2022-09-09 Mike Gabriel
* Translated using Weblate (German) (ae80e7c7)
* po/*.po: Update translation strings in .po files. (e22388d6)
2022-09-09 Robert Tari
* Merge branch 'sunweaver-pr/update-and-fix-translations' (41950dea)
2022-09-08 Mike Gabriel
* ChangeLog: Forgotten to be added. Add it now. (6805522e)
2022-09-09 Robert Tari
* Merge branch 'sunweaver-pr/changelog' (5d0960ec)
2022-09-08 Mike Gabriel
* po/ayatana-indicator-display.pot: Update translation strings.
(a384b486)
* data/: Rename org.ayatana.display.gschema.xml.in to
org.ayatana.indicator.display.gschema.xml. Fix and
simplify translations of .gschema.xml strings with it.
(b3a400f6)
* ChangeLog: Forgotten to be added. Add it now. (ee89d2f5)
* Merge branch 'sunweaver-pr/tooltip-support' (98ae0c7f)
2022-07-22 Mike Gabriel
* src/rotation-lock.cpp: Add tooltip, rename indicator title from
'Rotation' to 'Display' on desktops. (af65c5d1)
2022-07-20 Mike Gabriel
* release 22.2.1 (f3b8d734) (tag: 22.2.1)
2022-07-06 Marius Gripsgard
* Merge pull request #52 from JamiKettunen/musl-tests (274b9773)
2022-06-30 Jami Kettunen
* src/adbd-client.cpp: Fix cppcheck (4e457eef)
* tests/utils/qmain.cpp: Add missing include for libintl.h (c61be879)
2022-03-08 Mike Gabriel
* Merge branch
'ubports-personal/peat-psuwit/upstream_-_gschemas.compile-race'
(4d895fa3)
2022-03-07 Ratchanan Srirattanamet
* tests/unit: fix cmake custom command race condition (036b96b4)
2022-02-17 Mike Gabriel
* release 22.2.0 (cefd302d) (tag: 22.2.0)
2022-02-16 Mike Gabriel
* Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'
(26000403)
2022-02-16 Robert Tari
* Drop pkglibexecdir and use native CMake file configuration
(bab7087b)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(51776b60)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (f57b15b8)
2022-01-12 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(7ba756aa)
* CMakeLists.txt: Clean up compilation flags (20b38172)
* tests/integration/usb-manager-test.cpp: Remove unneded lambda
capture (502ff920)
2021-12-15 Mike Gabriel
* Merge branch
'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
(6c32528d)
2021-12-06 Robert Tari
* .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
(856547c6)
2021-12-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-qt5-use-modules-warning' (29177a2a)
2021-12-07 Robert Tari
* tests/utils/CMakeLists.txt: Fix qt5_use_modules warning (ced7420e)
2021-12-08 Mike Gabriel
* Merge branch 'z3ntu-desktop-file-path' (36683d2b)
2021-12-06 Luca Weiss
* Fix wrong Exec= in .desktop file (c8ab74b0)
2021-12-08 Mike Gabriel
* Merge branch 'tari01-pr/properties-cpp-dependency' (985278af)
2021-12-07 Robert Tari
* INSTALL.md: Update dependency list (f7dcfcee)
* CMakeLists.txt: Fix missing check for properties-cpp dependency
(51c61cf0)
2021-12-08 Mike Gabriel
* Merge branch 'z3ntu-systemd' (6204a16b)
2021-12-06 Luca Weiss
* Do not install systemd service file if not found (2695f1d8)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (89937b64)
2021-11-19 Robert Tari
* Merge branch 'sunweaver-pr/consolidate-gschema-usage' (809eb8cf)
2021-11-19 Mike Gabriel
* GSettings: Use org.ayatana.display.gschema.xml for non-Lomiri
sessions and unit tests. (f59500bf)
2021-11-18 Mike Gabriel
* AUTHORS (5a2368bf)
* release 0.9.0 (899e8f89) (tag: 0.9.0)
* NEWS: Add empty file. (6bc86ddf)
2021-11-10 Mike Gabriel
* Merge branch 'tari01-pr/rename-to-x-lomiri' (7d12d6eb)
2021-11-09 Robert Tari
* Rename Lomiri-specific properties to x-lomiri (e61cc79a)
2021-11-03 ElectrifiedSpeed
* Translated using Weblate (Macedonian) (6b381ed8)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/drop-has-lomiri-touch-schema' (a2ecae1e)
2021-10-29 Robert Tari
* Drop HAS_LOMIRI_TOUCH_SCHEMA, use native schema instead (92334f72)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/rename-com-ubuntu-touch-system' (9facc9ae)
2021-10-28 Robert Tari
* Rename com.ubuntu.touch.system to com.lomiri.touch.system
(2626734c)
2021-11-01 Mike Gabriel
* Merge branch 'tari01-pr/x-canonical-to-x-ayatana' (f8148576)
2021-10-27 Robert Tari
* Raname x-canonical properties to x-ayatana (2cefc0f4)
2021-10-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-cleanup' (03d55a30)
2021-10-25 Mike Gabriel
* .build.yml: Remove source code of locally built dependency after it
has been installed. (313410a3)
* .build.yml: Run unit tests in build_scripts: target. (f670d1cd)
* .build.yml: Drop autogen.sh support. (e7872e7d)
* Merge branch 'tari01-pr/suppress-constparameter-cppcheck'
(e9a053a5)
2021-10-23 Robert Tari
* tests/CMakeFiles.txt: Suppress constParameter cppcheck (215bf8fb)
2021-10-22 Robert Tari
* data/CMakeLists.txt: Do not use automatic GSchema compilation
(db6cef87)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/compile-gschema-during-installation'
(c0ca600d)
2021-10-20 Robert Tari
* Compile GSchema during installation (3505d7b4)
* .travis.yml: Temporarily disable ppc64le builds (f0394c7a)
2021-09-02 Robert Tari
* Fix Travis status image (b2e8ec50)
2021-08-30 Robert Tari
* Merge branch 'sunweaver-pr/no-potfile-updates-during-builds'
(0215693f)
2021-08-29 Mike Gabriel
* tests/integration/usb-manager-test.cpp: Fix cppcheck test in Ubuntu
20.04. Mark unused adbd_server and usb_manager as such.
(61284902)
* .build.yml: Also run unit tests on Ubuntu. (83105872)
2021-08-29 Hosted Weblate
* Update translation files (b5750867)
2021-08-30 Robert Tari
* Merge branch 'sunweaver-pr/run-tests-on-focal' (34f8c069)
2021-08-29 Hosted Weblate
* Update translation files (4556b7aa)
2021-08-29 Mike Gabriel
* tests/integration/usb-manager-test.cpp: Fix cppcheck test in Ubuntu
20.04. Mark unused adbd_server and usb_manager as such.
(3792e339)
* .build.yml: Also run unit tests on Ubuntu. (40c52501)
2021-08-29 Hosted Weblate
* Update translation files (f1e0194d)
2021-08-29 Mike Gabriel
* po/CMakeLists.txt: No fiddling anymore with the .pot file during
builds. (30ffed76)
* tests/integration/usb-manager-test.cpp: Fix cppcheck test in Ubuntu
20.04. Mark unused adbd_server and usb_manager as such.
(9374f989)
* .build.yml: Also run unit tests on Ubuntu. (4055f286)
* debian/{control,compat}: Bump to level 10, this will run out tests.
(91d4ef01)
* debian/rules: Enable unit tests with the new way. (e3d2e569)
* debian/control: Omit B-D dh-systemd on Debian/Ubuntu versions that
don't have it anymore. Use alternative B-D 'hello'
instead. (8886a97e)
* debian/control: Add B-D: libayatana-common-dev. (d7bd2ed5)
2021-08-28 Weblate
* Added translation using Weblate (Kurdish (Southern)) (1aaac50c)
* Added translation using Weblate (Kurdish (Northern)) (db1c5c01)
2021-08-28 Mike Gabriel
* po/LINGUAS: Adjust zh_* variants. (9da23285)
* po/zh_Hant.po: Drop duplicate file for Chinese (Tranditional).
(db7c639b)
* .travis.yml: Fix branch name what is now the default branch in
ayatana-dev-scripts. (4ab67755)
* Merge branch 'sunweaver-pr/ci-fixes' (b98e3685)
* .build.yml: Adjust to new build requirements of built-from-source
libayatana-common. (b47561dc)
* Merge branch 'tari01-pr/add-info-and-install-instructions'
(e56ff8b4)
2021-08-16 Robert Tari
* Add info and install instructions (2bf38e75)
2021-08-14 Mike Gabriel
* Merge branch 'tari01-pr/fix-schema-path' (8ab565a2)
2021-08-13 Robert Tari
* Fix schema path (18b77712)
2021-08-13 Mike Gabriel
* Merge branch 'tari01-pr/check-for-adbd-socket' (07df9869)
2021-08-11 Robert Tari
* Check for ADBD socket before creating UsbManager (bd2347fd)
2021-08-13 Mike Gabriel
* Merge branch 'tari01-pr/add-xdg-autostart-stuff' (a3907f16)
2021-08-03 Robert Tari
* Add XDG autostart stuff (01de53a1)
2021-08-13 Mike Gabriel
* Revert "Fix schema path" (7b110fc4)
* Merge branch 'tari01-pr/fix-schema-path' (30f951b9)
2021-08-03 Robert Tari
* Fix schema path (fb3029c0)
2021-08-13 Mike Gabriel
* Merge branch
'tari01-pr/fix-double-declaration-of-create-desktop-menu'
(04baf260)
2021-08-12 Robert Tari
* Fix failing build (e66c68e2)
2021-08-10 Mike Gabriel
* .build.yml: Add build requirement libayatana-common via a source
build. (7db2204c)
* Merge branch 'tari01-pr/no-pie-only-in-tests' (6362bec5)
2021-08-10 Robert Tari
* Use -no-pie build flag for tests only (3ab314a9)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/fix-switch' (392eb319)