forked from kaio/ibus-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
10806 lines (7319 loc) · 355 KB
/
ChangeLog
File metadata and controls
10806 lines (7319 loc) · 355 KB
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
commit 632be268364f26337128aa301e7acf134f38f2c1
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 25 16:55:21 2022 +0100
Release 1.16.7
commit de758ee10970d84c3e5b902efd1e83f3f7364bfe
Author: Mike FABIAN <mfabian@redhat.com>
Date: Fri Jan 28 12:58:33 2022 +0100
Update ibus-table.pot (Only line number changes)
commit 9150ab7996e75389fe4ce3706d4904820db9e581
Author: Mike FABIAN <mfabian@redhat.com>
Date: Fri Jan 28 08:30:11 2022 +0100
Update copyright years
commit e72481fd0652cefb71c791eed9803c084d7ab779
Author: Mike FABIAN <mfabian@redhat.com>
Date: Fri Jan 28 10:29:04 2022 +0100
Add default value for auto_wildcard in self._default_ime_attributes
commit 0078dc05caf62da118d13617b597af783999eb5f
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jan 27 12:59:16 2022 +0100
Ignore MOD3_MASK (“Usually” Scroll Lock) when matching key bindings
Resolves: https://github.com/mike-fabian/ibus-table/issues/102
commit cd8746e1eba0d427c7440b93602d7adc333755a2
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 26 11:09:02 2022 +0100
Add some more type hints
commit 05cc750a0c84d1cc48d9c54855391d558d17efdb
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 25 16:51:04 2022 +0100
When a Modifier key release matches a hotkey command, return False not True.
Resolves: https://github.com/mike-fabian/ibus-table/issues/98
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2038973
commit 082680dd44b89e9dbbd81e5b93e2f385414bd712
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 25 12:55:14 2022 +0100
Add some more type hints
commit c71482e3cdd4ed824278cb0cd8c58d2d9f6c89f2
Author: Weblate <noreply@weblate.org>
Date: Fri Jan 28 08:39:46 2022 +0100
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit 9d9bbbd11d728bf0c4031785c2cf0e2f8d6b05dc
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 25 17:00:29 2022 +0100
Update ibus-table.pot (Only line number changes)
commit 8d0ce1e3d5b8d2cbd5483c7912bcbdaa363c9327
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jan 24 18:14:57 2022 +0100
Release 1.16.4
commit b25a994cf34120f00f82a106c06e3d8d1124b716
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jan 24 21:08:32 2022 +0100
Adapt test case for “Fix more errors in Unihan_Variants.txt by checking against a Traditional Chinese dictionary”
See: https://github.com/mike-fabian/ibus-table/issues/100
commit a0bef3f19dfb034f360533f6d932b329f1a72aec
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jan 24 20:04:13 2022 +0100
Fix more errors in Unihan_Variants.txt by checking against a Traditional Chinese dictionary
Resolves: https://github.com/mike-fabian/ibus-table/issues/100
commit c01cd0a3e53db5ad52495416797431c7be9c65fa
Author: Mike FABIAN <mfabian@redhat.com>
Date: Sat Jan 22 16:30:17 2022 +0100
Fix some errors in Unihan_Variants.txt
Resolves: https://github.com/mike-fabian/ibus-table/issues/97
commit 89415b0c6704f7f61607a85095531eb8b5858857
Author: Emilio Herrera <ehespinosa57@gmail.com>
Date: Sun Jan 23 17:16:37 2022 +0100
Translated using Weblate (Spanish)
Currently translated at 100.0% (146 of 146 strings)
Co-authored-by: Emilio Herrera <ehespinosa57@gmail.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/es/
Translation: ibus-table/app
commit 72fa3d30831c03f551c94b04c81fc1b4a8cbbcb0
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jan 20 12:47:10 2022 +0100
Release 1.16.3
commit 9ee6edbe23ed1ad39199d916ec740775d69b58f0
Author: Mike FABIAN <mfabian@redhat.com>
Date: Fri Jan 21 11:26:12 2022 +0100
Fix a few errors in Unihan_Variants.txt
Resolves: https://github.com/mike-fabian/ibus-table/issues/96
commit c80597d1d35bb7bf3302ed0c7ffa3fea37a3c67d
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jan 20 12:34:45 2022 +0100
栗 U+6817 is used in Traditional Chinese as well.
Resolves: https://github.com/mike-fabian/ibus-table/issues/95
commit c1c39a3dd8aca8c334c00118ba54dd74995fbd47
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jan 20 11:22:12 2022 +0100
Regenerate engine/chinese_variants.py for Unihan_Variants.txt from “2021-12-01 Unicode 15.0.0 draft”
- Because of the new Unihan_Variants.txt, the following 37 characters
are added to the VARIANTS_TABLE in chinese_variants.py:
u'䓨': 1, u'沄': 1, u'潕': 2, u'澐': 2, u'罃': 2, u'鮗': 2, u'龻': 2,
u'鿟': 1, u'鿠': 2, u'鿰': 1, u'鿲': 1, u'鿳': 2, u'鿴': 1, u'鿵': 1,
u'鿶': 1, u'鿷': 1, u'鿸': 1, u'鿹': 1, u'鿺': 1, u'𣲘': 1, u'𤇾': 2,
u'𤪤': 2, u'𦥯': 2, u'𧰎': 2, u'𩷓': 2, u'𩷕': 2, u'𩹎': 2, u'𪄳': 2,
u'𪛞': 1, u'𫇦': 1, u'𬉧': 2, u'𬵨': 2, u'𰀡': 1, u'𰀢': 1, u'𰁜': 1,
u'𰃮': 1, u'𰯲': 2,
1 = simplified Chinese
2 = traditional Chinese
3 = used both in simplified *and* traditional Chinese
commit df46474f7e8bc57e66910529c319c1512c0f3366
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jan 20 11:12:52 2022 +0100
Update Unihan_Variants.txt from “2021-08-06 Unicode 14.0.0 final” to “2021-12-01 Unicode 15.0.0 draft”
commit f52c1071d6157619a57e3b14f898a4660b2b7d0e
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 11:56:58 2022 +0100
Release 1.16.0
commit 8ce8323f955fb249c11bfdff337461c6abce12b4
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 18 14:42:02 2022 +0100
Make true the default for “rememberinputmode”
When the input mode is remembered, it works much better when using
“[x] Switch input sources individually for each window”.
See: https://github.com/mike-fabian/ibus-table/issues/85#issuecomment-1015417630
Overall remembering the input mode is the nicer default.
commit 41b35381cdd44a28d19cbfd39029f22442862945
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jan 10 15:37:15 2022 +0100
Save “inputmode” to gsettings and add a “rememberinputmode” gsettings
Resolves: https://github.com/mike-fabian/ibus-table/issues/85
This makes it possible to change the current input mode from the command line.
And with “rememberinputmode” one can choose whether the last used
input mode should be remembered and be used again when a new session
starts or whether a new session should always start in table mode.
commit 22d0772d132fea008195e90b1ccdb654ab490bc6
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 10:58:16 2022 +0100
Remove useless + when concatenating strings
commit 6e421a2ec808e05f11dfb5b66d8a45569c755a57
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 10:58:45 2022 +0100
Rename a local variable
commit cf4f52943bb9fbd3ccee898dca03ca61b0adea1b
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 11 19:18:30 2022 +0100
Skip cangjie5 and erbi-qs test cases if the tables are too old
commit 4350424214eb9b47cf232fd2c030134bd521f383
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 11 16:48:01 2022 +0100
Replace deprecated module “optparse” with “argparse”
commit 0476c2de7a6a8f160f90f6df34748fd4ab8ee17d
Author: Oğuz Ersen <oguzersen@protonmail.com>
Date: Thu Jan 13 08:03:15 2022 +0100
Translated using Weblate (Turkish)
Currently translated at 100.0% (146 of 146 strings)
Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translation: ibus-table/app
commit 407430eb28fa1d2371bb32eeb0e3e4adc08287f2
Author: Yuri Chornoivan <yurchor@ukr.net>
Date: Thu Jan 13 08:03:14 2022 +0100
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (146 of 146 strings)
Co-authored-by: Yuri Chornoivan <yurchor@ukr.net>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/
Translation: ibus-table/app
commit b5a4722493daa6b7725ee0462cd3af00f675c873
Author: Anonymous <noreply@weblate.org>
Date: Wed Jan 12 18:33:19 2022 +0100
Translated using Weblate (Ukrainian)
Currently translated at 99.3% (145 of 146 strings)
Translated using Weblate (Spanish)
Currently translated at 96.5% (141 of 146 strings)
Translated using Weblate (Czech)
Currently translated at 36.9% (54 of 146 strings)
Translated using Weblate (Catalan)
Currently translated at 86.9% (127 of 146 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/ca/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/cs/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/es/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/
Translation: ibus-table/app
commit a205ea795a8cc24f81329f1f80a523cb8652c923
Author: Anonymous <noreply@weblate.org>
Date: Wed Jan 12 18:30:46 2022 +0100
Translated using Weblate (Turkish)
Currently translated at 99.3% (145 of 146 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translation: ibus-table/app
commit 9297231c96090dbcad73c05799aefc345f96d7d8
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 18:23:21 2022 +0100
Translated using Weblate (German)
Currently translated at 100.0% (146 of 146 strings)
Co-authored-by: Mike FABIAN <mfabian@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translation: ibus-table/app
commit 5c59c66820443c0c5a210274f98cd69edbfb2b67
Author: Weblate <noreply@weblate.org>
Date: Wed Jan 12 18:23:21 2022 +0100
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit 59b26f4766db3c5c09baeada3ad2dfc9cabf9fd5
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 18:17:06 2022 +0100
Update ibus-table.po (Fix mistakes in one English message I
commit 925f9d76aaed26a354ba85d41f687d91040ec4d7
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 18:11:02 2022 +0100
Update ibus-table.po (Fix mistakes in one English message ID)
commit 25eb384914ea633a7cf3f4ef570be845b811abba
Author: Anonymous <noreply@weblate.org>
Date: Wed Jan 12 18:01:18 2022 +0100
Translated using Weblate (German)
Currently translated at 99.3% (145 of 146 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translation: ibus-table/app
commit 2c97d9ddf32b0f341c6c7061744eb04cf0c1bed1
Author: Weblate <noreply@weblate.org>
Date: Wed Jan 12 17:54:59 2022 +0100
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit ae297221f26c80a399dbca4921625b038b084bf7
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jan 12 12:02:51 2022 +0100
Update ibus-table.po (Two new messages because of rememberinputmode)
commit c90a0e3349d6fe681f79aaf19519a3f528c7d058
Author: Weblate <noreply@weblate.org>
Date: Tue Jan 11 12:15:15 2022 +0100
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit 84ad6bbc3b754de1c3e0566b138e1ff62d8711fe
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Sep 28 13:02:33 2021 +0200
Release 1.15.0
commit 0fbc83d5af306a512b177defa0c1e0a73fdff53a
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 11 09:56:28 2022 +0100
Update ibus-table.pot (Only line number changes)
commit 4aaca9f9bc6bba15ad0d9a8d32155be59d42b734
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 11 09:17:09 2022 +0100
Fix type hint warning
commit d1ebf137b7076d00953b05ae9a60fd6cf73ffc77
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 11 08:29:58 2022 +0100
Fix some pylint warnings
commit 3a3ce9076667cf61ba3fb5c93d8d883b5a7d9e9e
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jan 10 15:35:31 2022 +0100
Improve comment explaining goucima
commit 4399053de16462574785108909bd53e61a9a7153
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jan 10 15:34:28 2022 +0100
Add test cases for goucima for the wubi-jidian86 and erbi-qs tables
commit 8b819bf378615c37e9d649c1a8870983ee2d7526
Author: lidan <yihuanlingjian@gmail.com>
Date: Thu Dec 23 15:56:51 2021 +0800
skip i/u/v started code for pinyin mode of erbi-qs
commit ee338f3642f7c020021c671de43047c88ed0a70f
Author: lidan <yihuanlingjian@gmail.com>
Date: Wed Dec 22 20:02:05 2021 +0800
use max same-prefix count code as pinyin candidate
for example select "sxr." in ["sx", "sxr.", "isong"] for 松 in erbi-qs
commit 54391f45645f042ccca4120068761e3cc8671320
Author: lidan <yihuanlingjian@gmail.com>
Date: Wed Dec 22 16:24:27 2021 +0800
add code to table by section
in case unmarked auxiliary code in erbi-qs selected as goucima.
commit 00871d6d5cd4b24232aefc00bc8a64c893bb5fef
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jan 11 07:40:34 2022 +0100
Adapt test cases for cangjie5 for the improvements in the cangjie5 table
The cangjie5 table has been improved according to:
https://github.com/mike-fabian/ibus-table/issues/76
https://github.com/mike-fabian/ibus-table/issues/87
Therefore, the test cases need to be changed as well.
commit 4debaa58c3fda80880a33f87f54568a11649f03c
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Oct 5 11:30:31 2021 +0200
Regenerate engine/chinese_variants.py for Unihan_Variants.txt from “2021-08-06 Unicode 14.0.0 final”
- *All* our fixes which are now included upstream.
- Because of the new Unihan_Variants.txt, the following 48 characters
are added to the VARIANTS_TABLE in chinese_variants.py:
u'䓖': 1, u'了': 1, u'伙': 1, u'借': 1, u'傢': 2, u'冬': 1, u'千': 1,
u'卜': 1, u'卷': 1, u'吁': 1, u'合': 1, u'回': 1, u'夥': 2, u'姜': 1,
u'家': 1, u'峃': 1, u'嶨': 2, u'庼': 1, u'廎': 2, u'懞': 2, u'才': 1,
u'折': 1, u'捲': 2, u'摺': 2, u'旋': 1, u'朱': 1, u'濛': 2, u'灶': 1,
u'瞭': 3, u'矇': 2, u'硃': 2, u'秋': 1, u'竈': 2, u'籲': 2, u'纔': 2,
u'蒙': 1, u'蔑': 1, u'蔔': 2, u'薑': 2, u'藉': 3, u'藭': 2, u'衊': 2,
u'迴': 2, u'霉': 1, u'鞦': 2, u'黴': 2, u'鼕': 2,
1 = simplified Chinese
2 = traditional Chinese
3 = used both in simplified *and* traditional Chinese
commit 6ade76f6212fc21fb842bf59fbc6d83dde266f90
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Oct 5 11:19:27 2021 +0200
Update Unihan_Variants.txt from “2021-05-18 Unicode 14.0.0 draft” to “2021-08-06 Unicode 14.0.0 final”
commit a816c14bcea6642368656b9bb9e9b9f5e58d2c8b
Author: Anonymous <noreply@weblate.org>
Date: Tue Sep 28 14:00:34 2021 +0200
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/
Translation: ibus-table/app
commit 63c5839731ce32e1392fc31ca93af9d5c6604a31
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Sep 28 14:00:34 2021 +0200
Translated using Weblate (Turkish)
Currently translated at 100.0% (145 of 145 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (145 of 145 strings)
Translated using Weblate (German)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Mike FABIAN <mfabian@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_BR/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translation: ibus-table/app
commit cf894c6bbdd971a7cce2d64b2ca9061c58f88ac4
Author: Weblate <noreply@weblate.org>
Date: Tue Sep 28 13:08:15 2021 +0200
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit 3af201336edd646b07da063100e76c668dd1de41
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Sep 28 13:04:44 2021 +0200
Update ibus-table.pot, Rafael Fontenelle fixed a typo
commit 3cf8a94f05d6ae7651dc407a8a2a2d2c417bd65f
Author: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Date: Sat Sep 4 21:23:21 2021 -0300
Fix typo in main file
commit 55a61b94d0330305592176d58a894b15057204f5
Author: Rafael Fontenelle <rafaelff@gnome.org>
Date: Mon Sep 6 03:05:05 2021 +0200
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Rafael Fontenelle <rafaelff@gnome.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_BR/
Translation: ibus-table/app
commit e83aa51cc0b580829b7f9751c10f5a753138bafe
Author: Anonymous <noreply@weblate.org>
Date: Mon Sep 6 03:05:05 2021 +0200
Translated using Weblate (Spanish)
Currently translated at 97.2% (141 of 145 strings)
Translated using Weblate (Catalan)
Currently translated at 87.5% (127 of 145 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/ca/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/es/
Translation: ibus-table/app
commit 96286e3458150aad08bf00c23bb5b0b204b334bd
Author: Anonymous <noreply@weblate.org>
Date: Thu Aug 26 14:04:54 2021 +0200
Translated using Weblate (Sinhala)
Currently translated at 6.8% (10 of 145 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/si/
Translation: ibus-table/app
commit 32307584f7b9329c706adcf61fd4d786a0a5f677
Author: Weblate <noreply@weblate.org>
Date: Wed Aug 25 13:18:50 2021 +0200
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit cc121ef1bfa5ba97b679b9496a608357cd1f1940
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jul 22 16:44:27 2021 +0200
Release 1.14.1
commit 523c63097fedd5a79de886e58395d0c11b6bfd29
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Aug 25 12:38:05 2021 +0200
Update ibus-table.pot (Only line number changes)
commit c43c22e8088f0da92ee8a187f3bfe0438addef34
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Aug 25 12:31:40 2021 +0200
If an exception happens when trying to play a sound, catch it.
This bug has been reported:
https://bugzilla.redhat.com/show_bug.cgi?id=1995955
Bug 1995955 - [abrt] ibus-table: play_buffer(): shiny.py:60:play_buffer:_simpleaudio.SimpleaudioError: Error opening PCM device. -- CODE: -24 -- MSG: 開啟太多檔案
(開啟太多檔案 = Too many files open)
I have no idea how to reproduce that but catching the exception should
fix it, it should make ibus-table continue working normally if any
such serious problem with playing sounds occurs. Without sound of course
but it should not stop working.
commit 0dc03fd2cb97013f2e208b42b62237d4b2e07f79
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Aug 25 12:24:01 2021 +0200
When changing the error sound file with the setup tool, play it
To make the user hear immediately what kind of sound was selected.
commit 56d2ef760ce37565b8ae4589004ae5208443a17c
Author: Mike FABIAN <mfabian@redhat.com>
Date: Sun Aug 22 20:21:56 2021 +0200
Translated using Weblate (Spanish)
Currently translated at 95.8% (139 of 145 strings)
Co-authored-by: Mike FABIAN <mfabian@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/es/
Translation: ibus-table/app
commit eab7d13075e25b0a05d1251fdb93f1eb8ba3df43
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 26 11:56:57 2021 +0200
Fix typo when attaching to the options grid
Luckily that typo had no effect.
commit 22df558c379edaf9a273c1c6cdb26d1f296f6130
Author: Yuri Chornoivan <yurchor@ukr.net>
Date: Thu Jul 22 17:04:01 2021 +0200
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Yuri Chornoivan <yurchor@ukr.net>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/
Translation: ibus-table/app
commit d65bfda0905e95aeaf87c8404f0860c8bae16881
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jul 22 17:04:01 2021 +0200
Translated using Weblate (Portuguese (Portugal))
Currently translated at 78.6% (114 of 145 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (145 of 145 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.8% (139 of 145 strings)
Translated using Weblate (French)
Currently translated at 95.8% (139 of 145 strings)
Translated using Weblate (Spanish)
Currently translated at 95.8% (139 of 145 strings)
Translated using Weblate (German)
Currently translated at 100.0% (145 of 145 strings)
Translated using Weblate (Catalan)
Currently translated at 86.8% (126 of 145 strings)
Co-authored-by: Mike FABIAN <mfabian@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/ca/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/es/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/fr/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_BR/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_PT/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translation: ibus-table/app
commit aaa6dc1deb10eb91e4c50e71eefab0df16d86a9c
Author: Anonymous <noreply@weblate.org>
Date: Thu Jul 22 17:04:00 2021 +0200
Translated using Weblate (Chinese (Simplified) (zh_CN))
Currently translated at 95.1% (138 of 145 strings)
Translated using Weblate (Turkish)
Currently translated at 99.3% (144 of 145 strings)
Translated using Weblate (Portuguese (Portugal))
Currently translated at 78.6% (114 of 145 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.1% (138 of 145 strings)
Translated using Weblate (Catalan)
Currently translated at 86.8% (126 of 145 strings)
Translated using Weblate (Spanish)
Currently translated at 95.1% (138 of 145 strings)
Translated using Weblate (German)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/ca/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/es/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_BR/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_PT/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/zh_CN/
Translation: ibus-table/app
commit 8319049d7e8a3422a1bf297a806e23e6079c0217
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jul 22 17:04:00 2021 +0200
Translated using Weblate (German)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Mike FABIAN <mfabian@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translation: ibus-table/app
commit cebefbe4500a49c9c422e9df3ebc6302625f14a6
Author: Anonymous <noreply@weblate.org>
Date: Thu Jul 22 17:03:59 2021 +0200
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translation: ibus-table/app
commit beb9eb87fcf30924a1dc866667845b3c2344827f
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jul 22 16:51:38 2021 +0200
Update ibus-table.pot (Remove some :s at the end of messages which are not checkboxes)
commit dc0c4603ef7ce6e07e97701e3e700e55ee5cf436
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jul 22 16:42:01 2021 +0200
Remove colons after “Auto select:”, “Auto wildcard:”, and “Use dark theme:”
Resolves: https://github.com/mike-fabian/ibus-table/issues/70#issuecomment-884664898
commit cb98270d665c92bf8210f3d177656ac728193d76
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jul 14 11:16:22 2021 +0200
Release 1.14.0
commit 62843052ed1c1d427a7b384fbf25c22c39575278
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 19:28:19 2021 +0200
Fix some pylint warnings
commit eb06116266fb8066ac25b751b4f83cb184ca9016
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 19:27:54 2021 +0200
Update copyright years
commit 5d6ff33455a697ff554b57ff16fe5546be2a48d6
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 13:27:09 2021 +0200
Hide options which make no sense for certain tables instead of just graying them out
commit a132945ad87bccfb5321480be5b1bb348d105cce
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 11:41:08 2021 +0200
Save some now unused translatable strings for possible use later
To avoid losing translations which are already done.
commit b799cb9acf68855d0edfceaba518eaade5e85080
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 11:34:46 2021 +0200
Use a checkbutton instead of a combobox for the always show lookup option
commit 9775c29d20bd1981506943071787ac7457bf5af2
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 11:23:01 2021 +0200
Use a checkbutton instead of a combobox for the dark theme option
commit f312eaeee81c32c42a4ace9600f353b71068aba9
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 11:03:56 2021 +0200
Use a checkbutton instead of a combobox for the autowildcard option
commit 65011db885e8e3a6fe52bd14c4fbe6fba503eb94
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 10:46:13 2021 +0200
Use a checkbutton instead of a combobox for the autoselect option
commit fe2aef8c393c4f6eb3b9bd7950cfa5df5d276431
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 08:38:43 2021 +0200
Test case for new dynamic adjust option
commit f0ba8ffd23416189916d5b6778cd41348214dbbe
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jul 14 18:45:32 2021 +0200
Add option to set dynamic adjust at runtime
Resolves: https://github.com/mike-fabian/ibus-table/issues/70
Also add a button to forget all the data learned by typing and selecting candidates.
commit 5bb3c11fe41f818e958fb5fe103efbb599d90b6b
Author: Mike FABIAN <mfabian@redhat.com>
Date: Sat Jul 17 21:43:17 2021 +0200
Use variables to count rows in options tabs in setup tools
commit 5e6d7c87f0673e84e5519db5fb03ce356fe9edca
Author: Mike FABIAN <mfabian@redhat.com>
Date: Fri Jul 16 13:45:38 2021 +0200
Add more type hints to setup/main.py
commit c18050e47f2a8f5f58cd30212690996bb0fd5350
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jul 14 18:29:09 2021 +0200
Remove self.suggestion_mode from class TabSqliteDb, it was unused there
commit 20d665f768c38904cb88cc37b33a0cb107526b40
Author: Mike FABIAN <mfabian@redhat.com>
Date: Wed Jul 14 18:03:18 2021 +0200
Move self._dynamic_adjust variable from tabsqlitedb.py to table.py
Preparation to make dynamic adjustment changeable at runtime.
commit 3a75033754490eccea6fe580cbe625a3bdbb6a64
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 12 10:35:46 2021 +0200
Add options to play sound file on error
Resolves: https://github.com/kaio/ibus-table/issues/75
commit 55e6bc4ec120c31ed6dc63306914f319bb972a21
Author: Mike FABIAN <mfabian@redhat.com>
Date: Thu Jul 8 15:47:47 2021 +0200
Add sound file coin9.wav
To be used as an error sound.
Downloaded from:
https://freesound.org/people/The-Sacha-Rush/sounds/336936/download/336936__the-sacha-rush__coin9.wav
License:
This work is licensed under the Creative Commons 0 License.
https://creativecommons.org/publicdomain/zero/1.0/
CC0 1.0 Universal (CC0 1.0)
Public Domain Dedication
No Copyright
The person who associated a work with this deed has dedicated the work
to the public domain by waiving all of his or her rights to the work
worldwide under copyright law, including all related and neighboring
rights, to the extent allowed by law.
https://creativecommons.org/publicdomain/zero/1.0/legalcode
commit 6848ee810a6ea790d6b764c6196fa5bc65ceac4a
Author: Mike FABIAN <mfabian@redhat.com>
Date: Tue Jul 20 10:59:38 2021 +0200
Translated using Weblate (German)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Mike FABIAN <mfabian@redhat.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translation: ibus-table/app
commit 05a6686d49e140469a88e773c5e1906dc48ac823
Author: Yuri Chornoivan <yurchor@ukr.net>
Date: Tue Jul 20 10:59:38 2021 +0200
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Yuri Chornoivan <yurchor@ukr.net>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/
Translation: ibus-table/app
commit eb3bbaf9afb964f40c1f4d57285e0d9bc1f8b9e0
Author: Anonymous <noreply@weblate.org>
Date: Tue Jul 20 10:59:37 2021 +0200
Translated using Weblate (Turkish)
Currently translated at 100.0% (145 of 145 strings)
Translated using Weblate (German)
Currently translated at 100.0% (145 of 145 strings)
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Weblate <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/de/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translation: ibus-table/app
commit bbf9f1ae72575833dc239a8c0bf6d9b1020c8239
Author: Mike FABIAN <mfabian@redhat.com>
Date: Mon Jul 19 20:49:57 2021 +0200
Update ibus-table.pot (Added a missing space after a period in a tooltip)
commit 219063b075736cb4288e7914d15ae96fc2ebd318
Author: Oğuz Ersen <oguzersen@protonmail.com>
Date: Mon Jul 19 20:18:08 2021 +0200
Translated using Weblate (Turkish)
Currently translated at 100.0% (145 of 145 strings)
Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translation: ibus-table/app
commit 6c3cbd00e4782db05890d28c4218ac88a4e02bfa
Author: Yuri Chornoivan <yurchor@ukr.net>
Date: Mon Jul 19 16:10:59 2021 +0200
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (145 of 145 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.6% (143 of 145 strings)
Co-authored-by: Yuri Chornoivan <yurchor@ukr.net>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/
Translation: ibus-table/app
commit 24652bf9b52e992947f024e96db8d04b72c4ec51
Author: Anonymous <noreply@weblate.org>
Date: Mon Jul 19 16:10:59 2021 +0200
Translated using Weblate (Turkish)
Currently translated at 95.8% (139 of 145 strings)
Translated using Weblate (Chinese (Simplified) (zh_CN))
Currently translated at 95.8% (139 of 145 strings)
Translated using Weblate (Ukrainian)
Currently translated at 97.9% (142 of 145 strings)
Co-authored-by: Anonymous <noreply@weblate.org>
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/tr/
Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/uk/