forked from linuxmint/cinnamon-menus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1790 lines (1333 loc) · 36.2 KB
/
NEWS
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
=============
Version 3.8.0
=============
* Add more java things to sundry
* Add im-chooser, power statistics and personal file
sharing to sundry
* Remove special-casing for Fedora vendor prefixdd
* Translation updates
==============
Version 3.7.90
==============
Bugs Fixed:
* Fix error reporting
* Memory leak fixes (William John McCann)
* Remove the simple editor (William John McCann)
* New menu layout for gnome-shell tweaks (William John McCann,
Florian Muellner, Jasper St. Pierre)
* Remove old gnome-control-center files (Jasper St. Pierre)
Translation updates:
* Alexandre Franke
* Fabio Tomat
* Inaki Larranaga Murgoitio
* Piotr Drąg
* William Jon McCann
=============
Version 3.6.2
=============
* 688972 call menu_layout_load() with non_prefixed_name parameter
* Translation updates (Arabic, Kannada, Uyghur)
=============
Version 3.6.1
=============
* Translation updates (Catalan, Catalan (Valencian), Ukrainian,
Aragonese, Slovak, Uzbek)
=============
Version 3.6.0
=============
* Translation updates
==============
Version 3.5.92
==============
libmenu
* Add proper header reference to GMenu-3.0.gir (Rico Tzschichholz)
Translators
* Nilamdyuti Goswami (as)
* Petr Kovar (cs)
* Peter Bach (da)
* Bruce Cowan (en_GB)
* Arash Mousavi (fa)
* Jiri Grönroos (fi)
* Claude Paroz (fr)
* Leandro Regueiro (gl)
* Gabor Kelemen (hu)
* Dirgita (id)
* Milo Casagrande (it)
* Changwoo Ryu (ko)
* Aurimas Černius (lt)
* Sandeep Shedmake (mr)
* A S Alam (pa)
* Piotr Drąg (pl)
* Duarte Loreto (pt)
* Daniel Nylander (sv)
* Dr.T.Vasudevan (ta)
* Theppitak Karoonboonyanan (th)
* Muhammet Kara (tr)
* Nguyễn Thái Ngọc Duy (vi)
* Chrovex Fan (zh_CN)
=============
Version 3.5.5
=============
Translations Updates:
* Traditional Chinese (Chao-Hsiung Liao)
* German (Tobias Endrigkeit)
* Kazakh (Baurzhan Muftakhidinov)
* Silesian (Przemysław Buczkowski)
* Gujarati (Sweta Kothari)
* Serbian (Мирослав Николић)
=============
Version 3.5.4
=============
Translations Updates
* Belarusian (Alexander Shopov)
=============
Version 3.5.3
=============
libmenu
* Fix scanner warnings (Colin Walters)
* Add gmenu_tree_iter_get_separator (Jasper St. Pierre)
* Add a recursive NoDisplay getter (Jasper St. Pierre)
* Add a way to get a GMenuTree from a GMenuTreeItem (Jasper St. Pierre)
* Add a way to get the parent item for a GMenuTreeItem (Jasper St. Pierre)
Translations Updates
* Belarusian (Ihar Hrachyshka)
* Greek (Tom Tryfonidis)
* Assamese (Nilamdyuti Goswami)
* Telugu (Sasi Bhushan Boddepalli)
=============
Version 3.5.2
=============
Layout
* Add a separate category for Web Applications (Giovanni Campagna)
libmenu
* Add a new GMENU_TREE_FLAGS_INCLUDE_UNALLOCATED flag (Vincent Untz)
Translations
* Bulgarian
* Kashubian
* Spanish
* Galician
* Slovenian
* Hebrew
* Russian
* Norwegian bokmål
=============
Version 3.4.0
=============
Translators
* Morn Met (km)
* Bahodir Mansurov (uz@cyrillic)
=============
Version 3.3.5
=============
Translators
* Jiro Matsuzawa (ja)
* Kjartan Maraas (nb)
* Danishka Navin (si)
* Andiswa Mvanyashe (xh)
=============
Version 3.3.1
=============
libmenu
* Ignore desktop entries with no Name or Exec key (Florian Müllner)
Layout
* Put the Other menu at the end (Vincent)
===============
Version 3.2.0.1
===============
Menu Editor
* Work with latest pygobject (Vincent)
=============
Version 3.2.0
=============
Translators
* Nilamdyuti Goswami (as)
* Praveen Illa (te)
==============
Version 3.1.92
==============
libmenu
* Fix build failure with --enable-debug (Vincent)
Translators
* Ігар Грачышка (be)
* Daniel Mustieles (es)
* Jiro Matsuzawa (ja)
==============
Version 3.1.90
==============
libmenu
* Don't try to unref potentially NULL pointers (Jasper St. Pierre)
=============
Version 3.1.5
=============
This version of gnome-menus comes with a significant API and ABI break, to
modernize the code. As a result, the name of the library and the pkg-config
filename have changed, so that this new version is parallel-installable with
previous ones.
As of now, there is no guide to migrate to the new API, but it is rather
straight-forward as changes were mostly done to improve the experience for
introspection-based bindings. The examples shipped in util/ are a good basis.
libmenu
* Rebase internal representation of .desktop files on top of
GDesktopAppInfo (Colin Walters)
* Make GMenuTree a GObject (Colin Walters)
* Use GSlice for various data (Colin Walters)
* Use thread-default main context for callbacks for future flexibility
for thread support (Colin Walters)
* Many API changes, see new headers for changes. The most visible one
is that gmenu_tree_load_sync() should explicitly be used to load the
menu now. (Colin Walters, Vincent)
* Drop support for "KDE Desktop Entry" group (Vincent)
* Return GIcon instead of char * for icon-related API (Vincent)
* Various fixes and cleanups to merge Colin's branch (Vincent, Colin
Walters)
* Add gmenu_tree_get_entry_by_id() API (Colin Walters)
* Support XDG_CURRENT_DESKTOP (Vincent)
Menu Editor
* Port to introspection-based bindings (Vincent)
* Stop editing settings.menu (Vincent)
Python
* Drop static python bindings; introspection-based ones should be used
now (Colin Walters)
Misc
* Replace example of python code with javascript code (Colin Walters)
* Change library name, header directory, pkg-config filename (Vincent)
* Require glib 2.29.15 for new API (Vincent)
Translators
* Ігар Грачышка (be)
* Gil Forcada (ca@valencia)
* Priscilla Mahlangu (zu)
=============
Version 3.0.1
=============
Translators
* Anousak Souphavanh (lo)
* Theppitak Karoonboonyanan (th)
=============
Version 3.0.0
=============
Layout
* Show administration tools and old capplets in Other (Vincent)
Translators
* Khaled Hosny (ar)
* Zenat Rahnuma (bn)
* Gil Forcada (ca)
* Sense Hofstede (fy)
* Praveen Illa (te)
* Sahran (ug)
* Clytie Siddall (vi)
===============
Version 2.91.91
===============
Menu Editor
* Fix to work with latest pygi (Vincent)
Misc
* Build fix (Vincent)
Translators
* F Wolff (af)
* Changwoo Ryu (ko)
* Pavol Klačanský (sk)
* Korostil Daniel (uk)
==============
Version 2.91.6
==============
libmenu
* Do not send multiple notifications for one file change (Vincent)
Menu Editor
* Port to pygobject-based introspection bindings (Vincent)
* Make editor GTK+ 3 ready (Vincent)
Misc
* Improve introspection build (Vincent)
* Drop settings.menu (Vincent)
Translators
* Gil Forcada (ca@valencia)
* Mattias Põldaru (et)
* Mahyar Moghimi (fa)
* Fran Diéguez (gl)
* Kikongo Translation Team (kg)
* Sahran (ug)
* Clytie Siddall (vi)
==============
Version 2.30.4
==============
libmenu
* Clear cache of desktop entries set when files are added/removed
(Vincent)
Misc
* Associate .gir with pkg-config file (Vincent)
* Rename --enable-deprecations configure option to
--enable-deprecation-flags (Vincent)
Translators
* Daniel Martinez (an)
* Takayuki KUSANO (ja)
* Baurzhan Muftakhidinov (kk)
* Torstein Winterseth (nn)
==============
Version 2.30.3
==============
Menu Editor
* Respect XDG_MENU_PREFIX when writing user menu file (Vincent)
Misc
* Update information in README and other files (Vincent)
Translators
* Kristjan SCHMIDT (eo)
* Sense Hofstede (fy)
* Fran Diéguez (gl)
* Reuben Potts (gv)
* Dirgita (id)
* Baurzhan M. (kk)
* Sahran (ug)
==============
Version 2.30.2
==============
Misc
* Do not ship gir files in the tarball (Yaakov Selkowitz)
Translators
* Daniel Martinez (an)
* Gil Forcada (ca)
* Gil Forcada (ca@valencia)
* Reşat SABIQ (crh)
* Christian Kirbach (de)
* Thomas Thurman (en@shaw)
* Fran Diéguez (gl)
* Shankar Prasad (kn)
* Peteris Krisjanis (lv)
* Wouter Bolsterlee (nl)
* Matej Urbančič (sl)
==============
Version 2.30.0
==============
libmenu
* Fix layout processing for Menuname nodes (Vincent)
* Never ignore Menuname nodes from DefaultLayout (Vincent)
Misc
* Add configure summary (Vincent)
Translators
* Gil Forcada (ca)
* Kostas Papadimas (el)
* Iñaki Larrañaga Murgoitio (eu)
* Changwoo Ryu (ko)
* Badral (mn)
===============
Version 2.29.92
===============
libmenu
* Add gobject-introspection support (Vincent)
Misc
* Build fix (Vincent)
Translators
* Nikos Charonitakis (el)
* Pavol Klačanský (sk)
===============
Version 2.29.91
===============
Misc
* Make some non-visible strings non-translatable (Vincent)
* Add translator comment (Vincent)
Translators
* Fran Diéguez (gl)
* Torstein Adolf Winterseth (nn)
==============
Version 2.29.6
==============
libmenu
* Fix miscalculation for inlining when inline_header = true (Vincent)
* Add real support for inline aliases during layout processing
(Vincent)
* Support inline alias of an inline alias (Vincent)
* Do not count non-inlining submenus as inlining with header (Vincent)
Translators
* Sadia Afroz (bn)
* Gil Forcada (ca)
* Reşat SABIQ (crh)
* Thomas Thurman (en@shaw)
* Sveinn í Felli (is)
* Nils-Christoph Fiedler (nds)
* Dmitry Yacenko (ru)
* Krishna Babu K (te)
* 甘露(Gan Lu) (zh_CN)
================
Version 2.28.0.1
================
libmenu
* Fix sorting of menu items during merge to actually work (and not
crash) (Frédéric Crozat)
Python
* Link the python module to libpython (Frédéric Crozat, Vincent)
==============
Version 2.28.0
==============
Translators
* Amitakhya Phukan (as)
* Petr Kovar (cs)
* Peter Bach (da)
* Philip Withnall (en_GB)
* Rajesh Ranjan (hi)
* Luca Ferretti (it)
* Shankar Prasad (kn)
* Gintautas Miliauskas (lt)
* Rajesh Ranjan (mai)
* Peter Ani
* Sandeep Shedmake (mr)
* Nils-Christoph Fiedler (nds)
* A S Alam (pa)
* Adi Roiban (ro)
* Matej Urbančič (sl)
* Daniel Nylander (sv)
* Krishna Babu K (te)
* Baris Cicek (tr)
* Maxim Dziumanenko (uk)
* Chao-Hsiung Liao (zh_HK)
* Chao-Hsiung Liao (zh_TW)
===============
Version 2.27.92
===============
This releases features new API that applications can use to display the full
name contained in .desktop files that is now in the X-GNOME-FullName key. If an
application chooses to use this, then it should set the sort key so that
.desktop files are correctly sorted.
libmenu
* Add gmenu_tree_entry_get_display_name() API (Vincent)
This will return X-GNOME-FullName if available, and fallback to Name.
* Add gmenu_tree_get_sort_key()/gmenu_tree_set_sort_key() (Vincent)
The default sort key is still Name. Users of
gmenu_tree_entry_get_display_name() should use
gmenu_tree_set_sort_key().
Python
* Bind new API (Vincent)
* Add missing bindings for gmenu_tree_entry_get_generic_name() (Vincent)
Menu Editor
* Remove deprecated Encoding key from desktop file (Frédéric Péters)
* Use display name instead of name (Vincent)
Translators
* Khaled Hosny (ar)
* Alexander Shopov (bg)
* Runa Bhattacharjee (bn_IN)
* Denis (br)
* Mario Blättermann (de)
* Iñaki Larrañaga Murgoitio (eu)
* Claude Paroz (fr)
* Seán de Búrca (ga)
* Anton Meixome (gl)
* Sweta Kothari (gu)
* Gabor Kelemen (hu)
* Francesco Marletta (it)
* Takayuki KUSANO (ja)
* Changwoo Ryu (ko)
* Kjartan Maraas (nb)
* Mario Blättermann (nds)
* Manoj Kumar Giri (or)
* Tomasz Dominikowski (pl)
* Duarte Loreto (pt)
* Krix Apolinário (pt_BR)
* Горан Ракић (sr)
* Goran Rakić (sr@latin)
* Dr.T.Vasudevan (ta)
* Theppitak Karoonboonyanan (th)
* 甘露 (Lu Gan) (zh_CN)
==============
Version 2.27.5
==============
Misc
* Use silent-rules with automake 1.11 (Vincent)
Translators
* Ilkka Tuohela (fi)
==============
Version 2.27.4
==============
libmenu
* Improve performance by using a cache to not compute the same thing
again and again (Michael Meeks, Vincent)
* Add API to access GenericName (Robert Staudinger)
* Fix DefaultLayout attributes not being inherited (Vincent)
* Do not always inherit parent DefaultLayout attributes (Vincent)
* Sort inlined items unless inline_header is used (Vincent)
Menu Editor
* Add --help and --version arguments (Vincent)
* Port to GtkBuilder (Pedro Fragoso, Vincent)
Misc
* Use shave to improve build log readability (Vincent)
Translators
* Jordi Mallach (ca@valencia)
* Huxain (dv)
* Jorge González (es)
* Mattias Põldaru (et)
* Seán de Búrca (ga)
* Yaron Shahrabani (he)
* Daniel Nylander (sv)
==============
Version 2.26.1
==============
Translators
* Khaled Hosny (ar)
* Daniel Nylander (sv)
==============
Version 2.26.0
==============
Translators
* Reşat SABIQ (crh)
* Suso Baleato (gl)
* Rajesh Ranjan (hi)
* Francesco Marletta (it)
* Manoj Kumar Giri (or)
===============
Version 2.25.91
===============
Translators
* Changwoo Ryu (ko)
* Raivis Dejus (lv)
* Sandeep Shedmake (mr)
* Горан Ракић (sr)
* Daniel Nylander (sv)
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
==============
Version 2.25.5
==============
Misc
* Use gnome-common macro to define DEPRECATED build variables (Vincent)
Translators
* Reşat SABIQ (crh)
* Saudat Mohammed (ha)
* Sylvester Onye (ig)
* Fajuyitan, Sunday Ayo (yo)
==============
Version 2.25.2
==============
Fixes
* Fix a critical warning in the python binding for monitoring a file
(Vincent)
Misc
* Ship a gnome-menus-ls.py script that is an example of python bindings
and that can be used as a replacement for gnome-menu-spec-test
(Vincent)
==============
Version 2.24.2
==============
Translators
* Mikel González (ast)
==============
Version 2.24.1
==============
Translators
* Khaled Hosny (ar)
* Rostislav "zbrox" Raykov (bg)
* Margulan Moldabekov (kk)
==============
Version 2.24.0
==============
Translators
* F Wolff (af)
* Khaled Hosny (ar)
* Roozbeh Pournader (fa)
* Rajesh Ranjan (hi)
* Gabor Kelemen (hu)
* Francesco Marletta (it)
* Shankar Prasad (kn)
* Leonardo Ferreira Fontenelle (pt_BR)
* Mișu Moldovan (ro)
===============
Version 2.23.92
===============
Translators
* Seán de Búrca (ga)
* Krešo Kunjas (hr)
* Praveen Arimbrathodiyil (ml)
* Leonardo Ferreira Fontenelle (pt_BR)
===============
Version 2.23.91
===============
Translators
* Khaled Hosny (ar)
* Reuven Gonen (he)
* Shankar Prasad (kn)
==============
Version 2.23.6
==============
Layout
* Fix the icon for the accessibility menu (Matthias Clasen)
Translators
* Khaled Hosny (ar)
* Fabrício Godoy (pt_BR)
==============
Version 2.23.5
==============
Translators
* Yannig Marchegay (Kokoyaya) (oc)
* Wadim Dziedzic (pl)
* Zabeeh Khan (ps)
* Laurent Dhima (sq)
==============
Version 2.23.4
==============
Misc
* Require intltool 0.40.0 (Vincent)
Translators
* 甘露(Lu Gan) (zh_CN)
==============
Version 2.23.3
==============
Features
* Implement handling of $XDG_MENU_PREFIX from the xdg menu
specification (Vincent)
Fixes
* Fix the values of <DefaultLayout> (ie, show_empty, inline,
inline_limit, etc.) not being inherited by submenus when the
<DefaultLayout> node is after the <Menu> node in the .menu file
(Vincent)
* Fix a bug where the fallback on the filename in <MergeFile> couldn't
be used (Vincent)
Translators
* Djihed Afifi (ar)
* Anna Ármansdóttir (is)
* Manoj Kumar Giri (or)
==============
Version 2.23.1
==============
Features
* Do not show separators at the beginning/end of a menu, or after
another separator, but add an option to show them (Vincent)
Fixes
* Call g_type_init() because GIO needs it and we use GIO for file
monitoring (Vincent)
* Fix a crash when a file notification is emitted with a non-ascii
filename (Vincent)
* Remove entries from the excluded set if they are included after they
were excluded (eg:
<Exclude>something</Exclude><Include>something</Include>) (Vincent)
* Implicitly add <Merge> nodes to <Layout> and <DefaultLayout> that are
missing some (Vincent)
* Correctly order the move operations to execute so that moving
something and moving it back again works as undo (Vincent)
* Simplify some code (William Jon McCann, Vincent)
* Plug leak (Vincent)
Layout
* Do not show accessibility items in the accessories submenu
(Josselin Mouette)
* Merge menus and files at the end of the layout of settings.menu
* Explicitly do not include gnomecc.menu in the preferences menu
instead of explicitly excluding it, so that alacarte doesn't know it
was excluded (Vincent)
* Rename many .directory files so they use fd.o Categories as name
(Vincent)
* Remove preferences.menu and directly include things in settings.menu
(Vincent)
* Update a few icons used in .directory files according to the icon
naming spec (Vincent)
* Remove the accessibility submenu from Preferences, since it's empty
now anyway (Vincent)
Misc
* Remove shebangs from non-executable Python scripts.
Translators
* Žygimantas Beručka (lt)
* Kjartan Maraas (nb)
==============
Version 2.22.1
==============
Misc
* Remove shebangs from non-executable Python scripts.
Translators
* David Lodge (en_GB)
* Massimo Furlani (fur)
* Eskild Hustvedt (nn)
==============
Version 2.22.0
==============
Translators
* Petr Kovar (cs)
* nikosCharonitakis (el)
* Changwoo Ryu (ko)
* Žygimantas Beručka (lt)
* Sandeep Shedmake (mr)
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
===============
Version 2.21.92
===============
Translators
* Massimo Furlani (fur)
* Sangeeta Kumari (mai)
* Nabin Gautam (ne)
===============
Version 2.21.91
===============
Fixes
* Remove the various monitor backends, and unconditionnaly use gio
(Vincent)
Misc
* Do not install gnome-menu-spec-test, it's useless for the user
(Vincent)
* Add a hard dependency on gio (Vincent)
Translators
* Woodman Tuen (zh_HK)
* Woodman Tuen (zh_TW)
===============
Version 2.21.90
===============
Misc
* When using gio, require version 2.15.2 (Saleem Abdulrasool)
Translators
* Djihed Afifi (ar)
* Alexander Nyakhaychyk (be)
* Michael Terry (io)
==============
Version 2.21.5
==============
Fixes
* Fix for API changes in gio (Sebastian Bacher, Wouter Bolsterlee,
Vincent)
Translators
* F Wolff (af)
* Iñaki Larrañaga Murgoitio (eu)
* Erdal Ronahi (ku)
* Kjartan Maraas (nn)
* Yannig Marchegay (Kokoyaya) (oc)
==============
Version 2.21.3
==============
Features
* Fix for api change in gio (Kjartan Maraas)
* Prevent a major memory leak (Sebastian Droge)
Translators
* Petr Kovar (cs)
* Seán de Búrca (ga)
* Danishka Navin (si)
==============
Version 2.21.2
==============
Features
* Add a new GIO-based monitor backend. It is now the preferred one.
The --with-monitor-backend configure flag can be used to select the
backend to build. (Sebastian Dröge)
Translators
* Anas Husseini (ar)
* Peter Bach (da)
* Jorge González (es)
* Seán de Búrca (ga)
* Ignacio Casal Quinteiro (gl)
* Huda Toriq (id)
* Matej Urbančič (sl)
==============
Version 2.20.1
==============
Translators
* Peter Bach (da)
==============
Version 2.20.0
==============
Translators