-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
5036 lines (2704 loc) · 155 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-07-10 Mike Gabriel
* release 24.7.0 (HEAD -> main, tag: 24.7.0)
2024-07-08 Mike Gabriel
* Merge branch 'tari01-pr/lomiri-session' (340ef997)
2024-07-05 Robert Tari
* debian/rules: Build with ENABLE_UBUNTU_ACCOUNTSSERVICE on Ubuntu
and derivatives (6357866d)
2024-06-17 Robert Tari
* Fix integration with Lomiri session (a7045072)
2024-06-13 Robert Tari
* Merge branch
'sunweaver-pr/support-more-characters-in-Xkb-parameters'
(a630e4bb)
2024-05-28 Mike Gabriel
* src/keyboard-x11.c: Add ',' and '0-9' as allowed characters to
regexp for XkbLayout. (b18f267f)
* src/keyboard-x11.c: Add ',' and '0-9' as allowed characters to
regexp for XkbVariant. (5bb69d76)
* src/keyboard-x11.c: Amend file permissions (a-x). (fa22c11a)
2024-05-22 Mike Gabriel
* release 24.5.0 (a5c5b784) (tag: 24.5.0)
2024-05-21 Robert Tari
* Merge branch 'sunweaver-pr/lomiri-indicators-target' (3ac072f9)
2024-05-21 Mike Gabriel
* data/ayatana-indicator-keyboard.service.in: Become part of
lomiri-indicators.target. (5b375573)
2024-04-01 复予
* Translated using Weblate (Chinese (Simplified)) (e8137d87)
2024-03-22 Steve
* Translated using Weblate (French) (a1345f6f)
2024-03-14 이정희
* Translated using Weblate (Korean) (f552ce7d)
2024-02-24 Mike Gabriel
* release 24.2.0 (a2e81e96) (tag: 24.2.0)
* Merge branch 'tari01-pr/improved-icons' (0abb75dd)
2024-02-16 Robert Tari
* contrib/ayatana-indicator-keyboard-icon-generator.py: Update and
improve the script (bbf0a26a)
* Create a set of hicolor icons with improved visibility (2a238439)
2024-02-24 Mike Gabriel
* Merge branch 'tari01-pr/policy-message' (a584d9d3)
2024-02-23 Robert Tari
* data/org.ayatana.indicator.keyboard.AccountsService.policy: Fix
policy message text (2b8f77e2)
2023-12-26 Mike Gabriel
* release 23.10.2 (f0d04781) (tag: 23.10.2)
2023-12-06 Mike Gabriel
* Merge branch 'tari01-pr/update-languages' (eaa1b53f)
2023-11-19 Robert Tari
* src/languages.h: Update language list (1c25eb1b)
* Add missing icons (ed32932d)
2023-12-05 Mike Gabriel
* Merge branch 'tari01-pr/fix-system-layout-parser' (526d70f5)
2023-11-29 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (5e086630)
* Translated using Weblate (Swedish) (ae555134)
2023-11-19 Robert Tari
* src/keyboard-x11.c: Also parse
/etc/X11/xorg.conf.d/00-keyboard.conf for system layout
(93c068eb)
2023-11-08 bittin1ddc447d824349b2
* Translated using Weblate (Swedish) (1586aae7)
2023-11-08 Ivo Xavier
* Translated using Weblate (Portuguese) (1864eccd)
2023-11-06 Mike Gabriel
* release 23.10.1 (2b96145b) (tag: 23.10.1)
2023-11-02 Mike Gabriel
* Merge branch 'tari01-pr/drop-test-options' (c76913a3)
2023-11-01 Robert Tari
* debian/rules: Drop testing and coverage flags (6b1a64e4)
* .build.yml: Drop testing flag (9e8713de)
2023-11-02 Mike Gabriel
* Merge branch 'tari01-pr/accoutsservice-prefixed' (982a0e9d)
2023-11-01 Robert Tari
* Check if layout array is null before iterating it (76e4d65d)
* src/keyboard-x11.c: Skip AccountsService operations for all
prefixed users (465d686a)
2023-10-24 Moo
* Translated using Weblate (Lithuanian) (d1091356)
2023-10-14 Quentin PAGÈS
* Translated using Weblate (Occitan) (9ccbd06e)
2023-10-13 Mike Gabriel
* release 23.10.0 (bd80cf8b) (tag: 23.10.0)
2023-10-11 Serhii Horichenko
* Translated using Weblate (Ukrainian) (d9015c87)
2023-10-12 Serhii Horichenko
* Translated using Weblate (Russian) (cdf2aee9)
2023-10-12 Mike Gabriel
* Merge branch 'tari01-pr/polkit-rules' (933deec8)
2023-10-11 Robert Tari
* Add PolicyKit .rules file (ffd995cd)
2023-10-10 Mike Gabriel
* po/: Update translation files. (a6e13834)
* Merge branch 'tari01-pr/drop-tests' (20db87cc)
2023-10-07 Robert Tari
* src/keyboard-x11.c: Define new D-Bus name and path for greeter
(44483ffe)
2023-10-10 Mike Gabriel
* Merge branch 'tari01-pr/define-greeter' (dce3e336)
2023-10-06 Mike Gabriel
* CMakeLists.txt: Require libayatana-common >= 0.9.9. (a8867cf9)
* d/control: Bump B-D libayatana-common-dev to (>= 0.9.9). (2666f465)
2023-10-10 Robert Tari
* CMakeLists.txt: Drop test options (a92d37c1)
2023-10-07 Robert Tari
* src/keyboard-x11.c: Define new D-Bus name and path for greeter
(56311efd)
* Merge branch 'sunweaver-pr/depend-on-libayatana-common-0.9.9'
(f7afd417)
2023-10-06 Mike Gabriel
* CMakeLists.txt: Require libayatana-common >= 0.9.9. (d9de2119)
* d/control: Bump B-D libayatana-common-dev to (>= 0.9.9). (e4978aee)
2023-10-03 Robert Tari
* debian/control: Drop zenity dependency (1f2a0d20)
* src/service.c: Switch to execute_command_warn (d3c4ad8b)
* src/main.c: Do not pass NULL to functions without a prototype
(7be65c76)
2023-09-20 Jozef Mlich
* Translated using Weblate (Czech) (a3792d52)
2023-09-15 Oğuz Ersen
* Translated using Weblate (Turkish) (82b77132)
2023-09-16 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (d38d8d0c)
2023-09-15 Heimen Stoffels
* Translated using Weblate (Dutch) (5748ad84)
2023-09-16 Yaron Shahrabani
* Translated using Weblate (Hebrew) (3f1fcb17)
2023-09-15 gallegonovato
* Translated using Weblate (Spanish) (f16bc021)
2023-09-15 Robert Tari
* Merge branch 'sunweaver-mr/greeter-pos-of-keyboard-indicator'
(60e41a1e)
2023-09-15 Mike Gabriel
* Translated using Weblate (German) (da76f9b7)
* data/org.ayatana.indicator.keyboard: In greeter mode, move the
keyboard indicator between a11y indicator and network
indicator (so second from the left). (1706ca68)
* Translated using Weblate (German) (4a2137cd)
* po/: Translation template update. (0365c0ca)
* Merge branch 'tari01-pr/show-layout' (76141928)
2023-09-06 Robert Tari
* debian/control: Add new dependencies (6cd61d67)
* Add layout display section (832d5f46)
2023-09-05 Robert Tari
* Update language list and icons (b134dd7b)
2023-08-07 Mike Gabriel
* Merge branch 'tari01-pr/greeter-keyboard-layout' (ecf5e442)
2023-04-03 Robert Tari
* src/keyboard-x11.c: Set up D-Bus connection with Arctica Greeter
(6b67808c)
2023-08-07 Mike Gabriel
* Merge branch 'tari01-pr/high-contrast-icons' (59057dfe)
2023-08-02 Robert Tari
* Add high contrast icons (a5cb3f92)
* Fix build warnings + cleanup (794ebd1d)
2023-07-01 spnux
* Translated using Weblate (French) (8a1b9c35)
2023-06-27 Sylke Vicious
* Translated using Weblate (Italian) (3124f2d6)
2023-06-22 Joan CiberSheep
* Translated using Weblate (Catalan) (fb5bb114)
2023-05-20 Milo Ivir
* Translated using Weblate (Croatian) (ca102def)
2023-04-25 Kristjan Räts
* Translated using Weblate (Estonian) (b34f6b85)
2023-04-06 ssantos
* Translated using Weblate (Portuguese) (3a47ab60)
2023-03-15 Heimen Stoffels
* Translated using Weblate (Dutch) (e7b11764)
2023-03-03 gallegonovato
* Translated using Weblate (Spanish) (d6e9d3bb)
2023-02-10 Luna Jernberg
* Translated using Weblate (Swedish) (4c8da09a)
2023-01-06 Andy Chiang
* Translated using Weblate (Chinese (Simplified) (zh_LATN@pinyin))
(3cf860e8)
2022-12-30 Milo Ivir
* Translated using Weblate (Croatian) (b93871ff)
2022-12-15 Mike Gabriel
* release 22.9.1 (74a11f92) (tag: 22.9.1)
2022-12-03 Kevin Zhou
* Translated using Weblate (Chinese (Simplified)) (7f18b9f4)
2022-11-10 Mike Gabriel
* Merge branch 'tari01-pr/update-languages' (32f76b32)
2022-11-08 Robert Tari
* src/languages.h: Update the layout list + rewrite the code to use a
struct instead of two lists (c16bded3)
2022-10-17 Gediminas Murauskas
* Translated using Weblate (Lithuanian) (e9e02ded)
2022-09-29 이정희
* Translated using Weblate (Korean) (6f809923)
2022-09-25 Oğuz Ersen
* Translated using Weblate (Turkish) (c25f3287)
2022-09-22 Yaron Shahrabani
* Translated using Weblate (Hebrew) (c8d30464)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Ukrainian) (1ede2c04)
2022-09-14 Quentin PAGÈS
* Translated using Weblate (Occitan) (175c9641)
2022-09-14 Sergii Horichenko
* Translated using Weblate (Russian) (42df6165)
2022-09-14 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (62caace0)
2022-09-14 Mike Gabriel
* release 22.9.0 (48c42153) (tag: 22.9.0)
* Translated using Weblate (German) (4663447e)
2022-09-14 Milan Korecky
* Translated using Weblate (Czech) (062568a7)
2022-09-14 Mike Gabriel
* po/*.po{,t}: Translation strings update. (0ad52347)
* update-po{,t}.sh: Also catch multi-file source file references.
(4d0bdb06)
2022-09-13 Robert Tari
* Merge branch 'sunweaver-pr/fix-and-update-translation-template'
(5191b1fc)
2022-09-11 Mike Gabriel
* po/ayatana-indicator-keyboard.pot: Update translation template
file. (800c3ef6)
* update-po{,t}.sh: Omit ../ at beginning of file names in .pot file.
(1768f497)
* update-po.sh: White-space fix. (b31f62c1)
* Fix translating the indicator's .gschema.xml file. (8818b2d6)
2022-09-09 Quentin PAGÈS
* Translated using Weblate (Occitan) (1f668a5d)
2022-09-08 Mike Gabriel
* Merge branch 'tari01-pr/language-icon-gsettings' (e6f63b65)
2022-09-07 Moo
* Translated using Weblate (Lithuanian) (5ad5e033)
* Translated using Weblate (Lithuanian) (a4fd7cb1)
2022-09-07 Robert Tari
* Add GSettings options for indicator icon (c5d48625)
* src/service.c: Create separate header profiles (1136552d)
2022-09-06 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (cf59345a)
2022-09-05 Yaron Shahrabani
* Translated using Weblate (Hebrew) (a81d0326)
2022-09-05 Mike Gabriel
* Translated using Weblate (German) (0ab29024)
* po/*.po{,t}: Translation strings update. (ef217bb3)
2022-09-01 Mike Gabriel
* Merge branch 'sunweaver-pr/tooltip-support' (4174027f)
2022-07-22 Mike Gabriel
* src/service.c: Add tooltip. (2bca91c2)
2022-08-15 Mike Gabriel
* Merge branch 'tari01-pr/translate-layout-names' (dd3bb865)
2022-08-03 Robert Tari
* Translate layout names (d06286ca)
2022-08-06 Quentin PAGÈS
* Translated using Weblate (Occitan) (8c6e2b03)
2022-07-27 Sergii Horichenko
* Translated using Weblate (Ukrainian) (3ebcb219)
* Translated using Weblate (Russian) (3cd6a7ad)
2022-07-19 ssantos
* Translated using Weblate (Portuguese) (0a24b978)
2022-07-15 Mike Gabriel
* release 22.2.3 (bcbfe01c) (tag: 22.2.3)
2022-07-14 Teitei
* Translated using Weblate (Burmese) (d2676988)
2022-07-06 Robert Tari
* Merge branch 'sunweaver-pr/input-keyboard-icon' (9873f1f7)
2022-06-25 Kristjan Räts
* Translated using Weblate (Estonian) (1221d55f)
2022-07-05 Mike Gabriel
* src/service.c: Use 'input-keyboard' (symbolic) icon as indicator
icon on Lomiri. (54be1fe4)
2022-06-25 Kristjan Räts
* Translated using Weblate (Estonian) (97fb737a)
2022-06-25 Mike Gabriel
* release 22.2.2 (99562d29) (tag: 22.2.2)
2022-06-24 Mike Gabriel
* Merge branch 'Ionic-bugfix/create-dir-before-symlink' (b8d388fe)
2022-06-22 Mihai Moldovan
* data/CMakeLists.txt: create dbus-1/interfaces datadir subdirectory
before trying to create a symlink into it. (c307d59e)
2022-06-22 Milo Ivir
* Translated using Weblate (Croatian) (e66631bf)
2022-06-21 Mike Gabriel
* release 22.2.1 (523b881d) (tag: 22.2.1)
2022-06-14 Eric
* Translated using Weblate (Chinese (Simplified)) (81c2d27f)
2022-06-15 Oğuz Ersen
* Translated using Weblate (Turkish) (ea5fe293)
2022-06-16 Kristoffer Grundström
* Translated using Weblate (Swedish) (225c0198)
2022-06-15 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (48bc243d)
2022-06-15 Yaron Shahrabani
* Translated using Weblate (Hebrew) (1e7de82d)
2022-06-14 Mike Gabriel
* Translated using Weblate (German) (ab24438a)
2022-06-15 Mike Gabriel
* Update translation files. (94787243)
* po/POTFILES.in: Update list of files to check for translation
strings. (7456be7c)
2022-06-12 Robert Tari
* Merge branch 'sunweaver-pr/relax-x11-build-requirements' (cca8a803)
2022-06-11 Mike Gabriel
* CMakeLists.txt: Relax build-requirements of libX11 to 1.6.5 and
libxklavier to 5.3. (6d89352b)
2022-04-23 Sergii Horichenko
* Translated using Weblate (Ukrainian) (fb2f014e)
* Translated using Weblate (Russian) (37988396)
* Translated using Weblate (Ukrainian) (0ebf9cb8)
2022-03-26 ButterflyOfFire
* Translated using Weblate (Arabic) (0a482a3b)
2022-03-02 Mike Gabriel
* Merge branch 'tari01-pr/add-features-to-lomiri' (7455bfd3)
2022-03-01 Robert Tari
* src/keyboard-lomiri.c: Add as much functionality to Lomiri as
currently possible (94e368f5)
2022-03-02 Mike Gabriel
* Merge branch 'tari01-pr/add-accoutsservice' (85d85d46)
2022-03-01 Robert Tari
* .buil.yml: Add AccountsService build dependency (f4c6f017)
* debian/control: Add AccountsService build dependency (d93c53d0)
* Add AccountsService support (52d9983d)
2022-03-01 Mike Gabriel
* Merge branch 'tari01-pr/use-libxkbcommon' (4a74e3ef)
2022-03-01 Robert Tari
* .build.yml: Add libxkbcommon build dependency (801486c2)
* debian/control: Add libxkbcommon build dependency (aed21256)
* Read layout information using libxkbcommon (eb957b75)
2022-02-27 이정희
* Translated using Weblate (Korean) (9a730357)
2022-02-17 Mike Gabriel
* release 22.2.0 (167b6299) (tag: 22.2.0)
* Merge branch 'tari01-pr/add-new-layouts' (3c62b070)
2022-02-16 Robert Tari
* src/languages.h: Add additional layouts (2d1eefa6)
2022-02-16 Mike Gabriel
* Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'
(d813ce96)
2022-02-14 Robert Tari
* Drop pkglibexecdir and use native CMake file configuration
(53da9925)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(c92041d7)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/merge-icon-generators' (6d1a75ee)
2022-01-26 Robert Tari
* Merge icon generators + add some tweakability (2f4a12a0)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (cba5f9cb)
2022-01-11 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(57a14957)
* Clean up compilation flags (a9b2be7a)
2022-01-27 Mike Gabriel
* Merge branch 'z3ntu-dlopen-soname' (c4846f09)
2022-01-09 Luca Weiss
* Try to dlopen .so.0 instead of .so (191d5aea)
2022-01-02 ssantos
* Translated using Weblate (Portuguese) (fb9defb0)
2021-12-15 Mike Gabriel
* Merge branch
'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
(e4f88bd5)
2021-12-06 Robert Tari
* .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
(c62643a7)
2021-11-18 phlostically
* Translated using Weblate (Esperanto) (dc72c3c2)
2021-11-18 Mike Gabriel
* release 0.9.0 (9c9a9d80) (tag: 0.9.0)
2021-10-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-cleanup' (bc77d667)
2021-10-25 Mike Gabriel
* .build.yml: Remove source code of locally built dependency after it
has been installed. (dab97205)
* .build.yml: If we ever start having unit tests, run those unit
tests in build_scripts: target. (98412439)
* .build.yml: Drop autogen.sh support. (a3c1ba48)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (bc2bd700)
2021-10-20 Mike Gabriel
* Merge branch 'tari01-pr/correct-icon-generator-location' (1117825d)
2021-10-20 Robert Tari
* README.md: Correct icon generator location (ab5b21bf)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/lomiri-settings-handler' (7a041f29)
2021-09-21 Robert Tari
* Add settings handler for Lomiri (b00f48be)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/fix-lomiri-detection' (93b533bc)
2021-09-20 Robert Tari
* src/service.c: Fix Lomiri detection (e0089c42)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/add-new-language-variants' (bc1f16f8)
2021-09-17 Robert Tari
* Add new languages/variants (392b4061)
2021-09-23 Wellington Terumi Uemura
* Translated using Weblate (Portuguese (Brazil)) (108d1fa9)
2021-09-14 Mike Gabriel
* contrib/ayatana-indicator-keyboard-icon-generator-lomiri.py: Set
x-bit on script. (d33d3d3d)
* Merge branch 'tari01-pr/add-lomiri-icon-generator' (b325d460)
2021-09-09 Robert Tari
* Add Lomiri icon generator and move both generators to /contrib
(1483c259)
2021-09-14 Mike Gabriel
* Merge branch 'tari01-pr/add-lomiri-backend' (4a0e63a4)
2021-09-07 Robert Tari
* Split X11 and Lomiri backends (d2758a87)
2021-09-09 Mike Gabriel
* Merge branch 'tari01-pr/use-libayatana-common' (4e27c337)
2021-09-03 Robert Tari
* .build.yml: Install libayatana-common dependency from GitHub
(d42da412)
* debian/control: add libayatana-common-dev build dependency
(e81e7fa8)
* Replace local code with libayatana-common (baa08a2e)
* Fix Travis status image (ce72a2c9)
2021-08-30 Mike Gabriel
* AUTHORS: Create file from Git history. Resolves DEB build.
(6d20b6af)
2021-08-29 Hosted Weblate
* Update translation files (c6b2b354)
2021-08-29 Mike Gabriel
* debian/{control,compat}: Bump to level 10. (6b058085)
* debian/: Drop stray files AUTHORS and ChangeLog. (0c01ca05)
* debian/: Drop stray files AUTHORS and ChangeLog. (65642167)
* debian/rules: Enable unit tests (if there were any). (0fbf19aa)
2021-08-28 Mike Gabriel
* .travis.yml: Use Ayatana Indicators project's dev-scripts repo.
(453403c1)
2021-08-28 Weblate
* Added translation using Weblate (Kurdish (Southern)) (2e860476)
* Added translation using Weblate (Kurdish (Northern)) (57a16d18)
2021-08-28 Mike Gabriel
* .travis.yml: Fix branch name what is now the default branch in
ayatana-dev-scripts. (1f9f086b)
2021-08-13 Luna Jernberg
* Translated using Weblate (Swedish) (c9378693)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/add-enable-werror-option' (5f909177)
2021-08-09 Robert Tari
* Add ENABLE_WERROR option (7a57a70b)
2021-08-04 Mike Gabriel
* Merge branch 'tari01-pr/cmake-install-full' (11a61d41)
2021-08-04 Robert Tari
* Use CMAKE_INSTALL_FULL_*DIR locations for installation (c37f453e)
2021-08-04 Mike Gabriel
* Merge branch 'tari01-pr/add-documentation-and-build-instructions'
(39a3583e)
2021-07-29 Robert Tari
* Add documentation and build instructions (6bf9165d)
2021-08-04 Mike Gabriel
* Merge branch 'tari01-pr/add-standard-ayatana-cmake-bits' (6dc8e402)
2021-07-29 Robert Tari
* Add standard Ayatana CMake bits (c59cc974)
2021-07-15 Yaron Shahrabani
* Translated using Weblate (Hebrew) (f30807b9)
2021-05-22 Yaron Shahrabani
* Translated using Weblate (Hebrew) (aae9e8a6)
2021-05-04 Mike Gabriel
* .travis.yml: Don't try running autotools based CI build. (45110556)
2021-05-01 Tomáš Marný
* Translated using Weblate (Czech) (3c173677)
2021-04-28 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (7aed265c)
2021-04-26 Mike Gabriel
* .travis.yml: Ubuntu rolling (I series) is currently in
bootstrapping process, disabling for now. (bb73bf39)
* Travis-CI: Initial draft for CI builds. (b134fa0a)
2021-04-16 Mike Gabriel
* Merge branch 'tari01-pr/base-on-languages' (90235f32)
2021-04-16 Robert Tari
* src/keyboard.c: Get languages via lookupLanguage() (39b1efc4)
* src/languages.h: Use a predefined language lookup table (8f32270e)
* data/icons/scalable/status: Use an improved icon set (b62c1fb1)
* data/ayatana-indicator-keyboard-icon-generator: Use a predefined
abbreviation list (3ff7d74a)
2021-04-12 Mike Gabriel
* release 0.7.901 (cd616fd2) (tag: 0.7.901)
* Merge branch 'tari01-pr/remove-gtk-update-icon-cache' (68b858e6)
2021-02-12 Robert Tari
* Do not update icon cache from CMake (21264ea5)
2021-04-12 Mike Gabriel
* po/ayatana-indicator-keyboard.pot: Update translation template.
(64f8dcc1)
* Merge branch 'comradekingu-patch-1' (d2843ad2)
2021-02-22 Allan Nordhøy
* Tripledot (...) → ellipsis (…) (1e3e227a)
2021-04-12 Mike Gabriel
* Merge branch 'tari01-pr/test-null-pointer' (0788459e)
2021-03-31 Robert Tari
* src/keyboard.c: Test if layout variant is null before checking
length (c942c531)
2021-03-30 Hosted Weblate
* Update translation files (9baaba32)
2021-03-29 Weblate
* Added translation using Weblate (Chinese (Simplified)
(zh_LATN@pinyin)) (50a64c49)
2021-03-18 Reza Almanda
* Translated using Weblate (Indonesian) (37d88aaf)
2021-03-15 xiao0yy
* Translated using Weblate (Chinese (Simplified)) (3225f2c8)
2021-02-22 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål) (e54ca0aa)
2021-02-19 J. Lavoie
* Translated using Weblate (French (Canada)) (6e298495)
* Translated using Weblate (Italian) (d1921853)
* Translated using Weblate (French) (c1b64551)
* Translated using Weblate (Finnish) (9e82ba61)
* Translated using Weblate (German) (e7eddd44)
2021-02-07 Kristjan Räts
* Translated using Weblate (Estonian) (f038b210)
2021-02-07 Ács Zoltán
* Translated using Weblate (Hungarian) (f1a1b803)
2021-02-04 Adolfo Jayme Barrientos
* Translated using Weblate (Catalan) (8c0d8312)
* Translated using Weblate (Spanish) (bd70247e)
2021-01-30 Quentin PAGÈS
* Translated using Weblate (Occitan) (783a56ff)
2021-01-29 Moo
* Translated using Weblate (Lithuanian) (4e3264b7)
2021-01-27 Oğuz Ersen
* Translated using Weblate (Turkish) (1cb486b2)
2021-01-28 Milo Ivir
* Translated using Weblate (Croatian) (2262de85)
2021-01-28 Mike Gabriel
* release 0.7.900 (be3cfc38) (tag: 0.7.900)
* CMakeLists.txt: Relax build requirement for libx11 (from 1.7.0 to
1.6.7). (eb17f239)
2021-01-27 Mike Gabriel
* debian/control: Make B-D on dh-systemd optional (fixes FTBFS in
Debian bullseye). (b7c52d4e)
* debian/control: Add B-D: cmake-extras (>= 0.10). (8827f6e2)
* Downgrade upstream version (to 0.7.900). (8cd20d8a)
* debian/control: Move myself to Maintainer: field. (51a85740)
* debian/control: Add B-D dh-systemd. (0e694f89)
* debian/control: Bump Standards-Version: to 4.5.1. (80205f0b)
* debian/control: Add LONG_DESCRIPTION. (4c30de17)
* debian/docs: Adapt to new docu files in upstream sources.
(4d3f10ea)
* NEWS: Add (empty) file. (ad7e9f02)
* AUTHORS: Add file. (6f1218e9)
* README.md: Make .md file more readable if viewed in a text editor.
(eb796992)
* src/*: Add license headers. (8b7a2a2b)
2021-01-24 Robert Tari
* Fix crash after Bluetooth pairing (1ff94fac)
* Send a layout-changed signal after manual selection (7186ce77)
* 100% re-write of the keyboard indicator in plain C. (b85daf94)
2020-11-01 Hosted Weblate
* Update translation files (9b8fb049)
2020-10-31 Weblate
* Added translation using Weblate (Italian) (50f5d80f)
* Added translation using Weblate (Tamil (Sri Lanka)) (22305b88)
* Added translation using Weblate (Dhivehi) (f7c99f97)
* Added translation using Weblate (Venetian) (800d6e83)
* Added translation using Weblate (Kashubian) (dc7d15d2)
* Added translation using Weblate (Macedonian) (e732d7b9)
* Added translation using Weblate (Friulian) (2a794508)
* Added translation using Weblate (Tatar) (df266b5a)
2020-10-26 Adrià Martín
* Translated using Weblate (Sardinian) (62082950)
2020-10-16 Yota321
* Translated using Weblate (Bengali) (0278e98e)
2020-09-25 Quentin PAGÈS
* Translated using Weblate (Occitan) (7d4ca8aa)
2020-07-30 Sithu Aung
* Translated using Weblate (Burmese) (a0b01ffa)
2020-04-27 Jeannette L
* Translated using Weblate (French (Canada)) (d3586d02)
2020-03-17 Prachi Joshi
* Translated using Weblate (Marathi) (3f5e0db4)