-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathChangeLog
7215 lines (5120 loc) · 249 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' (b706a633)
2024-05-21 Mike Gabriel
* data/ayatana-indicator-session.service.in: Become part of
lomiri-indicators.target. (16f108be)
2024-04-01 复予
* Translated using Weblate (Chinese (Simplified)) (c9ee6ea1)
2024-03-22 Steve
* Translated using Weblate (French) (1001b221)
2024-03-14 이정희
* Translated using Weblate (Korean) (f7027084)
2024-02-23 Mike Gabriel
* release 24.2.0 (aafe9ced) (tag: 24.2.0)
2024-02-16 Robert Tari
* Merge branch 'sunweaver-pr/fix-tests-with-rda-enabled' (dbb6858f)
2024-02-05 Mike Gabriel
* src/service.c: Boolean values need to be upper-case. (efcda58a)
2024-02-16 Robert Tari
* Merge branch 'sunweaver-pr/boolean-newby' (a7e621f9)
2024-02-05 Mike Gabriel
* src/service.c: Use !rda_session_is_remote() rather than
rda_session_is_local(). (b18f3c70)
* src/service.c: Boolean values need to be upper-case. (5e2bf9eb)
2024-01-29 Moo
* Translated using Weblate (Lithuanian) (db07408b)
2023-12-26 Mike Gabriel
* release 23.10.3 (aefb2cdf) (tag: 23.10.3)
2023-11-29 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (f855f715)
2023-11-18 Quentin PAGÈS
* Translated using Weblate (Occitan) (9b5f130c)
2023-11-19 Mike Gabriel
* release 23.10.2 (46b45685) (tag: 23.10.2)
2023-11-19 Robert Tari
* Merge branch
'sunweaver-pr/assume-local-session-if-built-without-RDA'
(00746188)
2023-11-08 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (4192cf6a)
2023-11-08 Ivo Xavier
* Translated using Weblate (Portuguese) (f117dc0d)
2023-11-08 Lionel Duboeuf
* Translated using Weblate (French) (b5e18734)
2023-11-08 Jozef Mlich
* Translated using Weblate (Czech) (15df175a)
2023-11-05 Oğuz Ersen
* Translated using Weblate (Turkish) (49857b34)
2023-11-18 Mike Gabriel
* src/service.c: Initialize bLocal as true if building without RDA
support. (25ba8ee9)
2023-11-08 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (dee3c1c3)
2023-11-08 Ivo Xavier
* Translated using Weblate (Portuguese) (61e7c213)
2023-11-08 Lionel Duboeuf
* Translated using Weblate (French) (a33e0a8a)
2023-11-08 Jozef Mlich
* Translated using Weblate (Czech) (46297cc0)
2023-11-05 Oğuz Ersen
* Translated using Weblate (Turkish) (cfef340e)
2023-11-06 Mike Gabriel
* release 23.10.1 (4301580b) (tag: 23.10.1)
2023-11-04 Mike Gabriel
* Merge branch 'tari01-pr/drop-zenity' (34f6b0c8)
2023-10-07 Robert Tari
* debian/control: Drop zenity dependency and bump
libayatana-common-dev to 0.9.9 (4a7adb1d)
* src/backend-dbus/actions.c: Switch to
ayatana_common_utils_zenity_question (9b1b97a9)
2023-11-04 Robert Tari
* Merge branch
'sunweaver-pr/remote-technology-name-in-suspend-menu-item'
(75be6c2d)
* src/service.c: Add formatted string to menu (c18b57d2)
2023-11-02 Mike Gabriel
* src/service.c: In remote session, show remote technology name in
menu item label. (65b79215)
2023-11-02 Robert Tari
* Merge branch 'sunweaver-pr/rda-optional' (4a9824a8)
2023-11-02 Mike Gabriel
* src/service.c: Rename onRemoteSuspend -> on_remote_suspend (better
matching with other function names). (eca237d3)
* src/service.c: White-space fix. (8fd1edd3)
* {CMakeLists.txt,src/service.c}: Make building against librda
optional. (ba840e53)
2023-10-25 Quentin PAGÈS
* Translated using Weblate (Occitan) (9e19aaef)
2023-10-24 Moo
* Translated using Weblate (Lithuanian) (ab37dd86)
2023-10-20 Jozef Mlich
* Translated using Weblate (Czech) (0ee44e90)
2023-10-16 Yaron Shahrabani
* Translated using Weblate (Hebrew) (88846bad)
2023-10-14 gallegonovato
* Translated using Weblate (Spanish) (812876b9)
2023-10-13 Mike Gabriel
* release 23.10.0 (844aef1c) (tag: 23.10.0)
* Translated using Weblate (German) (18b2f8d7)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Ukrainian) (a852e427)
* Translated using Weblate (Russian) (db08c65d)
2023-10-11 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (bf599a53)
2023-10-11 Heimen Stoffels
* Translated using Weblate (Dutch) (ec1f5409)
2023-10-11 Mike Gabriel
* po/: Update translation files. (a761437e)
2023-09-15 gallegonovato
* Translated using Weblate (Spanish) (016a4218)
2023-09-15 Mike Gabriel
* Translated using Weblate (German) (9fabcc56)
2023-09-10 Mike Gabriel
* Merge branch 'tari01-pr/add-rda' (ac1c3d56)
2023-08-06 Robert Tari
* .build.yml: Add librda dependency (830773c4)
* debian/control: Add librda dependency (f6e69080)
* Add remote session detection/termination (52bc8932)
2023-09-06 Luna Jernberg
* Translated using Weblate (Swedish) (e072850c)
2023-08-06 Robert Tari
* Merge branch 'liushuyu-main' (bac7bccc)
2023-08-04 Salif Mehmed
* Translated using Weblate (Bulgarian) (419142b1)
* Translated using Weblate (Bulgarian) (232e1325)
2023-07-21 liushuyu
* tests/backend-dbus/mock-login1-seat.cc: fix build with GCC 13
(8cf9538f)
2023-06-27 Sylke Vicious
* Translated using Weblate (Italian) (c2f9ad79)
2023-06-22 Joan CiberSheep
* Translated using Weblate (Catalan) (e8062e7a)
2023-06-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (45d4c5c6)
* Translated using Weblate (Russian) (6727c35d)
2023-06-06 Mike Gabriel
* release 22.9.2 (0585f9e3) (tag: 22.9.2)
* Merge branch 'tari01-pr/custom-item' (c09eb8cc)
2023-05-07 Robert Tari
* Add custom label to admin section (cf32ce6b)
* CMakeLists.txt: Move project version to CMake's project()
(514cd389)
2023-05-20 Milo Ivir
* Translated using Weblate (Croatian) (3977a1e6)
2023-04-27 Mike Gabriel
* Merge branch 'tari01-pr/hide-admin-section' (5c624d42)
2023-04-06 Robert Tari
* Add options to hide items in the admin section (b4cabeb1)
* CMakeLists.txt: Fix CMake version warning (8ab10462)
2023-04-25 Kristjan Räts
* Translated using Weblate (Estonian) (d62ffc80)
2023-04-11 Temuri Doghonadze
* Translated using Weblate (Georgian) (63086997)
2023-04-06 ssantos
* Translated using Weblate (Portuguese) (091a6705)
2023-04-07 Mike Gabriel
* CMakeLists.txt: Fix version number. (b41d25fe)
2023-03-29 Quentin PAGÈS
* Translated using Weblate (Occitan) (f125c14e)
2023-03-22 Tomáš Marný
* Translated using Weblate (Czech) (747ee8cc)
2023-03-19 Oğuz Ersen
* Translated using Weblate (Turkish) (29be7b46)
2023-03-19 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (1a831665)
2023-03-20 Heimen Stoffels
* Translated using Weblate (Dutch) (48e862fa)
2023-03-19 Yaron Shahrabani
* Translated using Weblate (Hebrew) (0350368d)
2023-03-19 gallegonovato
* Translated using Weblate (Spanish) (7b33336b)
2023-03-19 Mike Gabriel
* Translated using Weblate (German) (7fed3824)
* po/: Translation updates. (ce6eab17)
2023-03-16 Heimen Stoffels
* Translated using Weblate (Dutch) (c5f9238c)
2023-03-03 gallegonovato
* Translated using Weblate (Spanish) (c755c65b)
* Translated using Weblate (Spanish) (83a3256b)
2023-02-28 Mike Gabriel
* release 22.9.1 (9931b0ba) (tag: 22.9.1)
2023-02-27 Robert Tari
* Merge branch 'sunweaver-pr/special-handling-for-ubuntu-touch'
(e2a40789)
2023-02-21 Mike Gabriel
* src/service.c: Add ellipsis to desktop help. (4e48436b)
* src/{service.c,dbus-backends/actions.c}: Special treatment if
running in an Ubuntu Touch session for desktop help,
distro help and bug reporting URL. (5b53d364)
* src/utils.c: Code formatting change (no-op change) in
get_desktop_name(). (8e572015)
* src/utils.(c|h): Add get_desktop_session() helper function.
(2f800334)
* src/dbus-backend/actions.c: Return 'lomiri.com' as Lomiri URL
(instead of UBports Forum). (8265a6af)
2023-02-14 Robert Tari
* Merge branch 'sunweaver-pr/full-lomiri-integration' (cbafa7e6)
2023-02-13 Mike Gabriel
* UnitySession -> LomiriSession: Re-rename related changes that we
erroneously hid away as Ayatana DesktopSession. (8c4df621)
2023-02-12 Anders Jonsson
* Translated using Weblate (Swedish) (f9d1e0d6)
2023-02-10 Luna Jernberg
* Translated using Weblate (Swedish) (99aab0a6)
2022-10-17 Gediminas Murauskas
* Translated using Weblate (Lithuanian) (455c3e53)
2022-10-07 Eric
* Translated using Weblate (Chinese (Simplified)) (f0a51b33)
2022-09-29 이정희
* Translated using Weblate (Korean) (05aafb6b)
2022-09-25 Oğuz Ersen
* Translated using Weblate (Turkish) (97c08f05)
2022-09-22 Yaron Shahrabani
* Translated using Weblate (Hebrew) (c1eb182a)
2022-09-16 Eric
* Translated using Weblate (Chinese (Simplified)) (ef42c425)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (79f94750)
* Translated using Weblate (Russian) (48f0c1c4)
2022-09-14 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (e05fbec1)
2022-09-14 Quentin PAGÈS
* Translated using Weblate (Occitan) (0ef6c599)
2022-09-14 Mike Gabriel
* release 22.9.0 (fce84911) (tag: 22.9.0)
* Translated using Weblate (German) (a2c55594)
2022-09-14 Milan Korecky
* Translated using Weblate (Czech) (d80883f1)
2022-09-14 Mike Gabriel
* po/*.po{,t}: Translation strings update (esp. source file
references). (8b9499f7)
* update-po{,t}.sh: Also catch multi-file source file references.
(cee76651)
2022-09-14 Eric
* Translated using Weblate (Chinese (Simplified)) (97b91745)
2022-09-14 Mike Gabriel
* po/*.po: Update translation strings. (2058a927)
2022-09-13 Robert Tari
* Merge branch 'sunweaver-pr/fix-and-update-translations' (6bca8f18)
2022-09-11 Mike Gabriel
* po/ayatana-indicator-session.pot: Update translation template file.
(fa225cf2)
* data/org.ayatana.indicator.session.gschema.xml: Add gettext-domain
property to <schema /> tag. (30b55bb0)
* data/: Fix translating the indicator's .gschema.xml file.
(fb1aebac)
* update-po{,t}.sh: Omit ../ at beginning of file names in .po(t)
file(s). (dd82acd7)
2022-09-07 Quentin PAGÈS
* Translated using Weblate (Occitan) (8fc23663)
2022-09-07 Moo
* Translated using Weblate (Lithuanian) (a016e792)
2022-09-05 Eric
* Translated using Weblate (Chinese (Simplified)) (01395f8a)
2022-09-06 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (d46ee3da)
2022-09-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (ed4878a5)
2022-09-05 Mike Gabriel
* Translated using Weblate (German) (b9aefb32)
* po/*.po{,t}: Translation strings update. (8b84185c)
2022-07-15 Mike Gabriel
* Merge branch 'tari01-pr/add-tooltip' (8472d6f0)
* release 22.2.1 (dd8ead32)
* release 22.2.1 (22ca3955) (tag: 22.2.1)
2022-07-13 Robert Tari
* src/service.c: Add tooltip to indicator (61a990a0)
2022-06-26 Mike Gabriel
* Merge branch 'peat-psuwit-no-lomiri-lock-shortcut' (dabb9205)
2022-06-23 Ratchanan Srirattanamet
* src/service.c: don't try to show any lockscreen shortcut on Lomiri
(eff77527)
2022-04-23 Sergii Horichenko
* Translated using Weblate (Russian) (95096378)
2022-03-31 Yaron Shahrabani
* Translated using Weblate (Hebrew) (50e3edf9)
2022-03-29 Yaron Shahrabani
* Translated using Weblate (Hebrew) (734eef7b)
2022-03-21 Yaron Shahrabani
* Translated using Weblate (Hebrew) (a0b4e072)
2022-03-08 Mike Gabriel
* Merge branch
'tari01-pr/read-lockscreen-shortcut-from-lomiri-schemas'
(aa4aeb40)
2022-03-04 Robert Tari
* src/service.c: Read Lomiri's lockscreen shortcut from
lomiri-schemas (04290777)
2022-03-08 Mike Gabriel
* Merge branch 'tari01-pr/drop-settings-daemons-depends' (62774712)
2022-03-04 Robert Tari
* debian/control: Drop all settings daemons runtime dependencies
(e6f63236)
2022-02-17 Mike Gabriel
* release 22.2.0 (89bff9db) (tag: 22.2.0)
2022-02-16 Mike Gabriel
* Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'
(76070b4c)
2022-02-11 Robert Tari
* Drop pkglibexecdir and use native CMake file configuration
(7276ec3b)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(3b04d065)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/fix-desktop-help-string' (9da96c4b)
2022-01-27 Robert Tari
* src/service.c: Fix the Desktop Help string (7ec9d3f0)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/add-phone-systemd-section' (aab117f6)
2022-01-27 Robert Tari
* data/org.ayatana.indicator.session: Add phone section (f101336d)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/fix-systemd-target' (da90e08e)
2022-01-27 Robert Tari
* data/ayatana-indicator-session.service.in: Fix sytemd unit target
(3a06cb9b)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/fix-gnome-screensaver-accelerator-key-type'
(50f9d850)
2022-01-20 Robert Tari
* Read org.gnome.settings-daemon.plugins.media-keys screensaver as a
list (838a9b3b)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (f62c629f)
2021-12-17 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(c77322a1)
* Clean up compilation flags (d40de8a8)
* Fix code to build with -Werror (904438ac)
2022-01-24 Eric
* Translated using Weblate (Chinese (Simplified)) (1ea9f8bd)
2021-12-15 Mike Gabriel
* Merge branch
'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
(35d48d35)
2021-12-06 Robert Tari
* .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
(8e481a71)
2021-11-22 phlostically
* Translated using Weblate (Esperanto) (3bf32659)
2021-11-20 phlostically
* Translated using Weblate (Esperanto) (918e5bdd)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (3f129aaa)
2021-11-17 Mike Gabriel
* release 0.9.0 (49265d28) (tag: 0.9.0)
2021-11-09 Joan CiberSheep
* Translated using Weblate (Catalan) (871d919a)
2021-11-03 Mike Gabriel
* Merge branch 'tari01-pr/use-ayatana-mock-user' (d08d7466)
2021-11-03 Robert Tari
* Use Ayatana as mock user (838e2ff7)
* Merge branch 'sunweaver-pr/remove-superfluous-files' (3834947c)
2021-11-02 Mike Gabriel
* build.sh: Drop file. Not needed here. (cdc973d0)
* Drop trim-lcov.py. Autotools related file. (32e7730f)
* Merge branch 'tari01-pr/drop-merge-review' (7d87d4cf)
2021-11-02 Robert Tari
* Drop all references to MERGE-REVIEW (8fed06b4)
2021-10-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-cleanup' (e30bc008)
2021-10-25 Mike Gabriel
* .build.yml: Remove source code of locally built dependency after it
has been installed. (50eab489)
* .build.yml: Run unit tests in build_scripts: target. (f7e6c7ba)
* .build.yml: Drop autogen.sh support. (37e12bc9)
2021-10-22 Robert Tari
* data/CMakeLists.txt: Do not use automatic GSchema compilation
(c6ce1b05)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/use-intltool-merge-translations' (72f7e021)
2021-10-21 Robert Tari
* data/CMakeLists.txt: Use intltool_merge_translations instead of
execute_process (1f84bc4c)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/drop-gcov-module' (1b5c1984)
2021-10-21 Robert Tari
* cmake/GCov.cmake: Drop redundant file (051459be)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/use-native-cmake-intltool-module'
(c4967935)
2021-10-20 Robert Tari
* Use native CMake Intltool module (e671e0e4)
2021-10-21 Mike Gabriel
* Merge branch 'tari01-pr/use-native-cmake-gsettings' (590f9614)
2021-10-19 Robert Tari
* data/CMakeLists.txt: Use native CMake GSettings module (27ca88b2)
2021-10-21 Mike Gabriel
* Merge branch
'tari01-pr/replace-deprecated-g-spawn-check-exit-status'
(21588e91)
2021-10-19 Robert Tari
* src/backend-dbus/actions.c: Replace deprecated
g_spawn_check_exit_status (607b5035)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (96c7eb51)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/update-ido-names' (b89a13f7)
2021-09-20 Robert Tari
* Update Ayatana IDO names (182d91b9)
2021-09-02 Robert Tari
* Merge branch 'pr/fix-ubuntu-tests' (cc2344a9)
* .build.yml: Add dbus dependency for Ubuntu builds (7797f06c)
* .build.yml: Also run unit tests during CI builds against Ubuntu.
(6b22b334)
* Fix Travis status image (0a238e4b)
2021-08-29 Hosted Weblate
* Update translation files (0e5b7464)
2021-08-29 Mike Gabriel
* debian/{control,compat}: Bump to level 10. (b46a40c6)
* debian/rules: Enable unit tests with the new way. (1eefebc5)
2021-08-28 Weblate
* Added translation using Weblate (Kurdish (Southern)) (5184aea4)
* Added translation using Weblate (Kurdish (Northern)) (da2729fc)
2021-08-28 Mike Gabriel
* po/: Drop zh_Hant.po: Drop duplicate file for Chinese
(Tranditional) and adjust LINGUAS files. (e76cb186)
* .travis.yml: Fix branch name what is now the default branch in
ayatana-dev-scripts. (503f7e08)
* Merge branch 'tari01-pr/drop-lomiri-url-dispatcher' (abb110ea)
2021-08-27 Robert Tari
* .build.yml: Add missing libayatana-common dependencies for
ArchLinux (2d13ddd1)
* .build.yml: Drop lomiri-url-dispatcher dependency (5a76f106)
* src/CMakeLists.txt: Drop unused URL_DISPATCHER code (4dbc6378)
2021-08-28 Mike Gabriel
* Merge branch 'tari01-pr/add-header-title' (a3ce3880)
2021-08-20 Robert Tari
* src/service.c: Add System title to the header (77f1d41d)
2021-08-28 Mike Gabriel
* Merge branch 'sunweaver-pr/debian-11-is-now-stable' (9330d8de)
* .build.yml: Add new build requirements for libayatana-common to
dependency blocks. (cfc128fc)
* .build.yml: Drop extra-dependency block for debian:stable (now that
Debian 11 is released). (525ae3ab)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/no-pie-only-in-tests' (ce534e84)
2021-08-10 Robert Tari
* Use -no-pie build flag for tests only (6472b6f7)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/add-enable-werror-option' (d9340bfd)
2021-08-09 Robert Tari
* Add ENABLE_WERROR option (13f51c1d)
2021-07-17 Robert Tari
* Revert "Travis CI: Limit CI builds to direct pushes, if not from
weblate user or pull request coming from a forked Git
repo." (0d59a1e9)
2021-07-16 Robert Tari
* Merge branch 'sunweaver-pr/limit-ci-builds' (4ea1bf99)
2021-06-27 GM
* Translated using Weblate (Lithuanian) (65d0a1e3)
2021-07-15 Mike Gabriel
* Travis CI: Limit CI builds to direct pushes, if not from weblate
user or pull request coming from a forked Git repo.
(d9743467)
2021-06-27 GM
* Translated using Weblate (Lithuanian) (3ea5f607)
2021-06-27 Mike Gabriel
* README.md: Add missing parenthesis close. (fe8e2958)
2021-06-24 Mike Gabriel
* Merge branch 'tari01-pr/ubports-patches' (e2864842)
2016-04-08 Marco Trevisan (Treviño)
* Actions: add force-restart-menuitem option to make it visible in
any environments (44fb1ec0)
* Ensure we request the UI to verify restart availability when unity
proxy connects/disconnects (dd4e19f3)
2016-03-15 Michael Terry
* Only use Lomiri schema if it's installed to avoid hard dependency
(df4c24eb)
2016-03-15 Lukáš Tinkl
* change the About string only for u8 (31d06b6a)
2016-03-09 Lukáš Tinkl
* open https://forums.ubports.com under Lomiri (a7f9ed4a)
2016-03-08 Lukáš Tinkl
* use ellipsis and convergence friendly "about" caption (9b7b8400)
* plug a memleak (b5ac3ae6)
* add "Desktop mode" switch for Lomiri (ed386e9d)
2021-06-11 Robert Tari
* README.md: Minor fix to give it a standard look (58689779)
* INSTALL.md: Add cmake-extras dependency (6eb45f16)
2021-06-11 Mike Gabriel
* Merge branch 'tari01-pr/cmake-install-full' (e01d64bb)
2021-06-11 Robert Tari
* data/CMakeLists.txt: Use CMAKE_INSTALL_FULL_*DIR locations
(7d21745c)
2021-06-11 Mike Gabriel
* debian/control: Add to B-D: cmake-extras. (40642daf)
* Merge branch 'tari01-pr/cmake-extras-tests-coverage' (cc15d245)
2021-06-11 Robert Tari
* Convert testing and coverage reporting to cmake-extras style
(887b5f92)
2021-06-10 Mike Gabriel
* Merge branch 'tari01-pr/ayatana-standard-cmake' (a2aac2de)
2021-06-10 Robert Tari
* CMakeLists.txt: Add Ayatana standard bits (dc1081e7)
2021-06-07 Robert Tari
* Merge branch 'sunweaver-pr/update-documentation-files' (7c2b8798)
2021-06-07 Mike Gabriel
* INSTALL.md: Use correct pkg-config library names in
build-dependency section. (a631738b)
2021-05-04 Mike Gabriel
* INSTALL.md: Drop optional build requirement of
liblomri-url-dispatcher-dev, add compulsory requirement of
libayatana-common-dev. (01082324)
2021-05-01 Mike Gabriel
* README.md: Add Travis-CI build status icon, add general Ayatana
Indicators information. (51a0ece7)
* INSTALL.md: Renamed from INSTALL file; adjust to updated test and
coverage CMake build options. (1aef23ab)
2021-06-07 Mike Gabriel
* Merge branch 'tari01-pr/fix-cmake-deprecation-warning' (479aefda)
2021-06-02 Robert Tari
* Fix CMake deprecation warning (83e352d0)
2021-06-04 Hosted Weblate
* Update translation files (9d9e7775)
2021-06-03 Weblate
* Added translation using Weblate (Chinese (Traditional)) (e4db6d93)
2021-06-03 Hosted Weblate
* Update translation files (8c1670c7)
2021-05-25 Robert Tari
* Merge branch 'sunweaver-libayatana-common' (eced932e)
2021-05-17 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (4a6696a9)
2021-05-04 Mike Gabriel
* debian/control: Drop optional B-D on liblomiri-url-dispatcher-dev.
Add required B-D: libayatana-common-dev (>= 0.9.2).
(3c10474f)
2021-01-11 Marius Gripsgard
* Move common parts over to libayatana-common and clean up (dc7faa22)
2021-05-04 Mike Gabriel
* CMakeLists.txt: Require libayatana-common (>= 0.9.2). (7803227f)
2021-05-17 Boyuan Yang
* Translated using Weblate (Chinese (Simplified)) (3b9fe90e)
2021-05-04 Mike Gabriel
* .travis.yml: Don't try running autotools based CI build. (09c1a589)
2021-05-03 Mike Gabriel
* .build.yml: URL fixes (copy+paste flaws). (0a3f7f64)
2021-05-03 Robert Tari
* Merge branch
'sunweaver-pr/travis-ci-build-libayatana-common-from-git'
(9318a4a6)
2021-05-01 Tomáš Marný
* Translated using Weblate (Czech) (689c38c5)
2021-05-02 Mike Gabriel
* Travis CI: Obtain libayatana-common from upstream Git (not from
distro archives). (15d213db)
2021-05-01 Tomáš Marný
* Translated using Weblate (Czech) (faf1fa15)
2021-05-01 Mike Gabriel
* Merge branch 'tari01-pr/budgie-support' (4b8dc293)
2020-08-27 Robert Tari
* Add Budgie support. (75cbf7ac)
2021-05-01 Mike Gabriel
* Merge branch 'tari01-pr/remove-gtk-update-icon-cache' (01510e1e)
2021-02-12 Robert Tari
* Do not update icon cache from CMake (19926252)
2021-04-28 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (f679c07d)
2021-04-28 Mike Gabriel
* CMakeLists.txt: Check for path variation on where to find
googletest source files. (651a8c3e)
2021-04-27 Mike Gabriel
* .build.yml: Produce verbose test output on test failures.
(f25aaab7)