-
Notifications
You must be signed in to change notification settings - Fork 16
/
typing-booster.appdata.xml
5053 lines (5045 loc) · 181 KB
/
typing-booster.appdata.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html -->
<component type="inputmethod">
<id>org.freedesktop.ibus.engine.typing_booster</id>
<metadata_license>CC0-1.0</metadata_license>
<name>Typing Booster</name>
<summary>Predictive input method</summary>
<description>
<p>
Ibus-typing-booster is a predictive input method and predicts
complete words based on context and partial input. One can then
simply select the desired word from a list of suggestions and
improve one’s typing speed and spelling.
</p>
</description>
<keywords>
<keyword>input-method</keyword>
<keyword>multilingual</keyword>
<keyword>emoji</keyword>
</keywords>
<screenshots>
<screenshot type="default">
<image type="source" width="956" height="233">
https://mike-fabian.github.io/ibus-typing-booster/images/typing-emoji-and-context-sensitive-completion.png
</image>
<caption>Typing Booster screenshot</caption>
</screenshot>
<screenshot>
<video container="webm" codec="vp9">
https://mike-fabian.github.io/ibus-typing-booster/videos/overview-demo-setup-use-typing-booster-emoji-picker.webm
</video>
<caption>Typing booster demo video</caption>
</screenshot>
</screenshots>
<icon type="remote" width="64" height="64">https://raw.githubusercontent.com/mike-fabian/ibus-typing-booster/main/icons/64x64/ibus-typing-booster.png</icon>
<icon type="remote" width="128" height="128">https://raw.githubusercontent.com/mike-fabian/ibus-typing-booster/main/icons/128x128/ibus-typing-booster.png</icon>
<icon type="remote" width="256" height="256">https://raw.githubusercontent.com/mike-fabian/ibus-typing-booster/main/icons/256x256/ibus-typing-booster.png</icon>
<icon type="remote">https://raw.githubusercontent.com/mike-fabian/ibus-typing-booster/main/icons/ibus-typing-booster.svg</icon>
<project_license>GPL-3.0+</project_license>
<developer id="io.github.mike-fabian">
<name>Mike FABIAN</name>
</developer>
<update_contact>[email protected]</update_contact>
<url type="homepage">https://mike-fabian.github.io/ibus-typing-booster/</url>
<url type="bugtracker">https://github.com/mike-fabian/ibus-typing-booster/issues</url>
<url type="help">https://mike-fabian.github.io/ibus-typing-booster/docs/user/</url>
<url type="translate">https://translate.fedoraproject.org/projects/ibus-typing-booster/</url>
<content_rating type="oars-1.1" />
<releases>
<release version="2.26.11" date="2024-11-09" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.26.11</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Improve detection of Wayland session (Resolves:
github-issues#561)
</li>
<li>
Support non-ASCII input for m17n-db input methods
(Resolves: github-issues#537)
</li>
<li>
Improve “class KeyEvent”: Prepend 'S-' to msymbol when
Shift is pressed and is is a space or not printabl
</li>
<li>
Show also the languages supported by a font in
emoji-picker (only when -d or --debug is used)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/561">
github-issues#561
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/537">
github-issues#537
</issue>
</issues>
</release>
<release version="2.26.8" date="2024-11-04" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.26.8</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
When adding an msymbol to input_phrase and checking
whether it changes the transliteration, don’t apply a case
mode change to that msymbol (Resolves: github-issues#558)
</li>
<li>
Fix get_font_file() for family names which contain “-”
</li>
<li>
Translation update from Weblate (kab 75.9%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/558">
github-issues#558
</issue>
</issues>
</release>
<release version="2.26.6" date="2024-10-28" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.26.6</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
In do_reset() skip clearing input only when the
surrounding text **up to the cursor** ends with the
current preedit (Resolves:github-issues#529)
</li>
<li>
Also make it possible to show font file names, font
versions, and emoji related OpenType tables of the fonts
used (shown only in debug mode, i.e. when "emoji-picker
--debug" is used, when not in debug mode show only the
font family name)
</li>
<li>
Get more information about the Pango rendering support for
an emoji and use fallback in emoji-picker only when
necessary (Resolves: github-issues#508)
</li>
<li>
Simplify itb_pango.py: don’t use ctypes, use `from gi.repository import Pango` instead
</li>
<li>
Translation update from Weblate (kab 75.9%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/529">
github-issues#529
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/508">
github-issues#508
</issue>
</issues>
</release>
<release version="2.26.0" date="2024-10-23" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.26.0</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Introduce a delay time before candidates are updated and
displayed (Resolves: github-issues#530)
</li>
<li>
emoji-picker: Show Emoji properties, Unicode category, and
Unicode block always, not only when --debug is used. As
they are now shown always, make their labels translatable.
</li>
<li>
Translation update from Weblate (de 100%, fr 100%, ja 99.5%, ka 100%, sv 100%, tr 100%, uk 100%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/530">
github-issues#530
</issue>
</issues>
</release>
<release version="2.25.19" date="2024-10-19" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.19</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Translation update from Weblate (el 5.3%, kab 34.8%, sv 100%)
</li>
</ul>
</description>
<issues>
</issues>
</release>
<release version="2.25.18" date="2024-10-09" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.18</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Make sure all emoji, even those which are sequences, get a
Unicode version and not only an Emoji version (Resolves:
github-issues#542)
</li>
<li>
Translation update from Weblate (ka 100%, pl 99.5%, tr 100%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/542">
github-issues#542
</issue>
</issues>
</release>
<release version="2.25.17" date="2024-10-08" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.17</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Get correct Unicode version from DerivedAge.txt and also
display both Unicode version and Emoji version in
emoji-picker (Resolves: github-issues#538)
</li>
<li>
Translation update from Weblate (de 100%, fr 100%, ja 100%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/538">
github-issues#538
</issue>
</issues>
</release>
<release version="2.25.16" date="2024-09-11" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.16</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
When committing, normalize to NFC **and** recompose the
composition exclusions (Resolves: github-issues#531)
</li>
<li>
Update the emoji data files to the to version from the
final Unicode 16.0.0 release 2024-09-10
</li>
<li>
Update UnicodeData.txt to the Unicode 16.0.0 release 2024-09-10
</li>
<li>
Update emoji annotations from CLDR
</li>
<li>
Translation update from Weblate (New: el 4.9%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/531">
github-issues#531
</issue>
</issues>
</release>
<release version="2.25.15" date="2024-08-25" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.15</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Also catch ValueError exception when trying to import
nltk (Resolves: github-issues#527)
</li>
<li>
Translation update from Weblate (ru 25.1%)
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/527">
github-issues#527
</issue>
</issues>
</release>
<release version="2.25.14" date="2024-07-22" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.14</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
'S- ' (Shift-space) should not trigger a commit if it has
a transliteration (Resolves: github-issues#524).
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/524">
github-issues#524
</issue>
</issues>
</release>
<release version="2.25.13" date="2024-07-18" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.13</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Name of Sinhala input method changed: si-wijesekera ➡️ si-wijesekara
</li>
<li>
Translation update from Weblate (new: ru 12.3%, uk 100%)
</li>
</ul>
</description>
<issues>
</issues>
</release>
<release version="2.25.12" date="2024-07-09" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.12</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Correct calculation of caret when a key which triggered a
commit *increases* the length of the transliteration
(Resolves: github-issues#519).
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/519">
github-issues#519
</issue>
</issues>
</release>
<release version="2.25.11" date="2024-06-26" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.11</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Yet another fix to make it possible again to use keys with
Unicode keysyms in keybindings and make it work with all
known versions of ibus (Resolves: github-issues#497).
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/497">
github-issues#497
</issue>
</issues>
</release>
<release version="2.25.10" date="2024-06-24" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.10</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Use NFC when doing the cursor correction after committing
a preedit using space (Resolves: github-issues#515).
</li>
<li>
Fix for ibus-1.5.30: Make it possible again to use keys
with Unicode keysyms in keybindings (Resolves:
github-issues#497).
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/515">
github-issues#515
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/497">
github-issues#497
</issue>
</issues>
</release>
<release version="2.25.9" date="2024-06-10" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.9</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Translation update from Weblate (cs 100%)
</li>
<li>
Update emoji annotations from CLDR
</li>
<li>
Drop Python < 3.6 support
</li>
<li>
Fix test_0_gtk.py: typing booster now avoids clearing the input in do_reset() when the preedit is empty
</li>
</ul>
</description>
<issues>
</issues>
</release>
<release version="2.25.8" date="2024-05-27" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.8</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Support compose sequences containing ASCII keys written as
<U00XX> code points (Resolves: github-issues#510).
</li>
<li>
Update emoji annotations from CLDR
</li>
<li>
Translation update from Weblate (pt 91.3%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/510">
github-issues#510
</issue>
</issues>
</release>
<release version="2.25.7" date="2024-04-15" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.7</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Don’t use forward_key_event() on Gnome Wayland if the key
might be a keyboard shortcut using a modifier (Resolves:
github-issues#507).
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/507">
github-issues#507
</issue>
</issues>
</release>
<release version="2.25.6" date="2024-04-10" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.6</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
If Shift+something is pressed and then released, do not
swallow the release of the Shift key (Resolves:
github-issues#504).
</li>
<li>
Decrease grid_row_spacing from 5 to 1 pixels to make the
setup tool still fit on a 1024x768 pixel screen
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/504">
github-issues#504
</issue>
</issues>
</release>
<release version="2.25.4" date="2024-04-04" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.4</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Pass key which triggered cancel command to application if
self._min_char_complete == 0 and there are no candidates
(Resolves: github-issues#505).
</li>
<li>
Update emoji annotations from CLDR
</li>
<li>
Translation update from Weblate (ka 100%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/505">
github-issues#505
</issue>
</issues>
</release>
<release version="2.25.3" date="2024-02-24" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.3</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Add a feature to insert or remove RLM or LRM markers to
change the direction of a line of bidi text (Resolves:
github-issues#500).
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/500">
github-issues#500
</issue>
</issues>
</release>
<release version="2.25.1" date="2024-02-13" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.1</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Make it possible to use keys with Unicode keysyms in
keybindings (Resolves: github-issues#497).
</li>
<li>
Add hack to make space handling for punctuation work for
kate and kwrite (Resolves: github-issues#496).
</li>
<li>
Translation update from Weblate (pl 99.5%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/497">
github-issues#497
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/496">
github-issues#496
</issue>
</issues>
</release>
<release version="2.25.0" date="2024-02-05" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.25.0</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Add new combobox option “Record mode” (Resolves:
github-issues#470).
</li>
<li>
Improve handling of “:” for fr_CA and add fr_CH to use the
same rules as fr_FR (Related: github-issues#480).
</li>
<li>
Translation update from Weblate (bn 100%, de 100%, fr
100%, ja 99%, ka 100%, sv 100%, tr 100%)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/470">
github-issues#470
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/480">
github-issues#480
</issue>
</issues>
</release>
<release version="2.24.12" date="2024-01-27" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.12</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Improve handling of punctuation marks when writing (French) French
(Resolves: github-issues#480).
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/480">
github-issues#480
</issue>
</issues>
</release>
<release version="2.24.11" date="2024-01-06" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.11</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Really clear the preedit when it is empty, don’t just hide
it (Resolves: github-issues#476). Just hiding a non-empty
preedit is not enough because of
IBus.PreeditFocusMode.COMMIT a non-empty preedit is still
committed on focus out, even when it is hidden.
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/476">
github-issues#476
</issue>
</issues>
</release>
<release version="2.24.10" date="2023-12-29" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.10</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Update the preedit to empty right after deleting
surrounding text when reopening a preedit (Resolves:
github-issues#474)
</li>
<li>
Improve do_reset() (Resolves: github-issues#473)
(Resolves: github-issues#474)
</li>
<li>
Fix _record_in_database_and_push_context()
</li>
<li>
Avoid updating the preedit to empty or hiding it if the preedit is already hidden or empty
</li>
<li>
Do not pass through a key release event if the corresponding key press event was handled
</li>
<li>
Remove two probably redundant calls to get_surrounding_text()
</li>
<li>
Hide and clear lookup table and aux in
_update_ui_empty_input_try_completion() if no candidates
are found
</li>
<li>
Make self._ibus_event_sleep_seconds settable via gsettings
</li>
<li>
Avoid more duplicate calls of _update_preedit() (Resolves: github-issues#473)
(Resolves: github-issues#474)
</li>
<li>
Fix first character disappearing when compose was involved in WhatsApp and Telegram
(Resolves: github-issues#473)
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/474">
github-issues#474
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/473">
github-issues#473
</issue>
</issues>
</release>
<release version="2.24.5" date="2023-12-05" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.5</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Fix first character disappearing when compose was involved in WhatsApp and Telegram
(Resolves: github-issues#471)
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/471">
github-issues#471
</issue>
</issues>
</release>
<release version="2.24.4" date="2023-10-18" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.4</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Fix typos which prevented autosettings from working when
the attempting to autoset “avoidforwardkeyevent” or
“addspaceoncommit” (Resolves: github-issues#469)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/469">
github-issues#469
</issue>
</issues>
</release>
<release version="2.24.3" date="2023-10-16" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.3</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Adapt compose test cases to newest compose table
</li>
<li>
Parse compose sequence “Multi_key slash slash : "\\"
backslash # REVERSE SOLIDUS” correctly (Resolves:
github-issues#467)
</li>
<li>
Avoid really *all* use of self.foreward_key_event() if the
option self._avoid_forward_key_event is True
</li>
<li>
Avoid verbatim bidi formatting characters in the source code
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/467">
github-issues#467
</issue>
</issues>
</release>
<release version="2.24.2" date="2023-10-01" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.2</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
improve _return_false() and remove
_commit_or_forward_key_event_or_return_false() (Resolves:
github-issues#463)
</li>
<li>
Make characters for Biángbiángmiàn easily searchable
</li>
<li>
emoji-picker: Update default for current Unicode release 15.1
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/463">
github-issues#463
</issue>
</issues>
</release>
<release version="2.24.1" date="2023-09-12" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.1</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Support several backends for playing sounds (Resolves: rhbz#2237675)
</li>
<li>
Update UnicodeData.txt to current Unicode 15.1.0 and emoji
data files to current Unicode 15.1
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://bugzilla.redhat.com/show_bug.cgi?id=2237675">
rhbz#2237675
</issue>
</issues>
</release>
<release version="2.24.0" date="2023-09-01" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.24.0</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Implement “commit_and_forward_key” command (Resolves:
github-issues#461)
</li>
<li>
m17n-lib interface: transliterate “produced” part and
“preedit” separately (Resolves: github-issues#460)
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/461">
github-issues#461
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/460">
github-issues#460
</issue>
</issues>
</release>
<release version="2.23.4" date="2023-08-10" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.23.4</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Support msymbol 'S-C-Return' as a commit to preedit key
(Resolves: github-issues#457). Needed by hi-itrans.mim,
hi-optitransv2.mim, kn-optitransv2.mim, mr-gamabhana.mim,
sa-itrans.mim, sa-vedic-itrans.mim.
</li>
<li>
Update emoji annotations from CLDR
</li>
<li>
Remove useless m4/{Makefile.am,as-version.m4}
</li>
<li>
Update UnicodeData.txt to current Unicode 15.1.0 draft
</li>
<li>
Update emoji data files for current Unicode 15.1 DRAFT
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/457">
github-issues#457
</issue>
</issues>
</release>
<release version="2.23.3" date="2023-08-03" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.23.3</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Translation update from Weblate (tr 100%)
</li>
</ul>
</description>
</release>
<release version="2.23.2" date="2023-07-30" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.23.2</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Move self._gsettings.connect('changed', self.on_gsettings_value_changed) in __init__() *after* defining self._set_get_functions
(Resolves: github-issues#454)
</li>
<li>
Translation update from Weblate (ar 100%)
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/454">
github-issues#454
</issue>
<issue url="https://bugzilla.redhat.com/show_bug.cgi?id=2171140">
rhbz#2171140
</issue>
</issues>
</release>
<release version="2.23.1" date="2023-07-03" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.23.1</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Translation update from Weblate (pl 100%)
</li>
<li>
Adapt some test cases to changes in enchant
</li>
</ul>
</description>
</release>
<release version="2.23.0" date="2023-06-29" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.23.0</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Translation update from Weblate (de 100%, ka 100%, nl 100%, sv 100%, uk 100%)
</li>
<li>
configure.ac: add a warning about not using /usr/local as
the prefix (Resolves: github-issues#444)
</li>
<li>
Add an option to convert language specific digits to ASCII
(Resolves: github-issues#445)
</li>
<li>
Strip entered autosettings value for boolean values
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/444">
github-issues#444
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/445">
github-issues#445
</issue>
</issues>
</release>
<release version="2.22.5" date="2023-05-09" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.22.5</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Remove `xml:lang="en"` from the screenshots in appdata.xml
(There must be one image in the default locale, and there
can be some translated ones, but having only translated
images is not okay).
</li>
<li>
Improve regexp for parsing description out of of .mim
files (Resolves: github-issues#440)
</li>
<li>
Setup tool: scale input method icons correctly (Resolves:
github-issues#441)
</li>
<li>
Update emoji annotations from CLDR
</li>
<li>
Get version information of m17n-db (Needed for test cases
depending on the version of m17n-db)
</li>
<li>
Skip m17n_translit test cases when m17n-db is too old
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/440">
github-issues#440
</issue>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/441">
github-issues#441
</issue>
</issues>
</release>
<release version="2.22.4" date="2023-04-24" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.22.4</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Return empty program_name and window_title in
get_active_window_xprop() when xprop results are
unexpected (Resolves: rhbz#2175009)
</li>
<li>
Update emoji annotations from CLDR
</li>
</ul>
</description>
<issues>
<issue url="https://bugzilla.redhat.com/show_bug.cgi?id=2175009">
rhbz#2175009
</issue>
</issues>
</release>
<release version="2.22.3" date="2023-04-13" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.22.3</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Apply workaround for committing multiline strings only for
'^gtk3-im:(firefox|thunderbird)' (Resolves:
github-issues#438)
</li>
</ul>
</description>
<issues>
<issue url="https://github.com/mike-fabian/ibus-typing-booster/issues/438">
github-issues#438
</issue>
</issues>
</release>
<release version="2.22.2" date="2023-04-03" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.22.2</url>
<description>
<p>Bug fixes and enhancements</p>
<ul>
<li>
Translation update from Weblate (ka 100%, sw 99.5%)
</li>
</ul>
</description>
<issues>
</issues>
</release>
<release version="2.22.1" date="2023-02-28" urgency="medium">
<url>https://github.com/mike-fabian/ibus-typing-booster/releases/tag/2.22.1</url>
<description>
<p>Bug fixes and enhancements</p>