forked from GNOME/file-roller
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNEWS
4304 lines (3296 loc) · 119 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.29.1
--------------
New features and user visible changes:
* Removed app menu.
Bugs fixed:
* Keep "create" button disabled until a file name is entered. (#789766)
New or updated application translations:
* Catalan (Gil Forcada)
* Chinese (China) (Dingzhong Chen)
* Chinese (traditional) (Cheng-Chia Tseng)
* Polish (Piotr Drąg)
* Afrikaans (Pieter Schalk Schoeman)
* Русский (Stas Solovey)
New or updated manual translations:
* Galician (marcos)
version 3.28.0
--------------
New or updated application translations:
* British English (Bruce Cowan)
* Croatian (gogo)
* Danish (Ask Hjorth Larsen)
* Romanian (Daniel Șerbănescu)
* srpski (Marko M. Kostić)
* Ελληνικά (Efstathios Iosifidis)
version 3.27.91
---------------
New or updated application translations:
* Chinese (traditional) (Cheng-Chia Tseng)
* Croatian (gogo)
* Dutch (Nathan Follens)
* French (Guillaume Bernard)
* Fòram na Gàidhlig (GunChleoc)
* Galician (Fran Dieguez)
* Italian (Milo Casagrande)
* Kazakh (Baurzhan Muftakhidinov)
* Korea (강영선)
* Latvian (Rūdolfs Mazurs)
* Lietuvių ()
* Slovak (Dušan Kazik)
* Vietnamese (Trần Ngọc Quân)
version 3.27.90
--------------
Bugs fixed:
* meson: fix executable bit (Jeremy Bicha) (#793313)
* file roller installs dbus service files to wrong location (#793248)
New or updated application translations:
* Brazilian Portuguese (Enrico Nicoletto)
* Türkçe (Emin Tufan Çetin)
version 3.27.1
--------------
New features and user visibile changes:
* Ported to meson.
Bugs fixed:
* unarchiver: check that XADFileSize is set before reading it. Lsar
does not set XADFileSize for directories, so we would output a
critical when encountering one. (Mike Gorse) (#791505)
* nautilus-fileroller: Avoid the use of g_dgettext.
nautilus-fileroller is using g_dgettext which may cause problems
when extracting strings on some systems. This patch replaces
g_dgettext for g_dcgettext, which has the same behaviour when the
category is LC_MESSAGES. (Iñigo Martínez) (#790569)
* rar archives: wrong file date when using rar 5.30 or higher. adapt
to the new format. (#758121)
* Support squashfs filesystems and .snap files (Robert Ancell)
(#662519)
New or updated application translations:
* Catalan (Xavi Ivars)
* Chinese Simplified (Mingcong Bai)
* Deutsch (Mario Blättermann)
* es (Daniel Mustieles)
* Friulian (Fabio Tomat)
* Hungarian (Balázs Úr)
* Icelandic (Sveinn í Felli)
* Indonesian (Kukuh Syafaat)
* Norwegian bokmål (Åka Sikrom)
* Polish (Piotr Drąg)
* Slovenian (Matej Urbančič)
* suomi (Jiri Grönroos)
* Swedish (Anders Jonsson)
* čeština (Marek Černocký)
* српски (Марко М. Костић)
New or updated manual translations:
* Polish (Piotr Drąg)
version 3.26.1
--------------
New or updated application translations:
* Esperanto (Kristjan SCHMIDT)
* Greek, Modern (Efstathios Iosifidis)
* Icelandic (Sveinn í Felli)
* Persian (Arash Mousavi)
* Русский (Stas Solovey)
version 3.26.0
--------------
New or updated application translations:
* Basque (Iñaki Larrañaga Murgoitio)
* Bulgarian (Alexander Shopov)
* Catalan (Gil Forcada)
* Danish (Ask Hjorth Larsen)
* Dutch (Nathan Follens)
* Punjabi (A S Alam)
* Türkçe (Emin Tufan Çetin)
version 3.25.91
---------------
New or updated application translations:
* Belarusian (Yuras Shumovich)
* Brazilian Portuguese (Rafael Fontenelle)
* Chinese (traditional) (Cheng-Chia Tseng)
* Croatian (gogo)
* Deutsch (Mario Blättermann)
* Galician (marcos)
* Hungarian (Meskó Balázs)
* Indonesian (Kukuh Syafaat)
* Italian (Milo Casagrande)
* Korea (Junyoul Lim)
* Latvian (Rūdolfs Mazurs)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Romanian (Daniel Șerbănescu)
* Slovak (Dušan Kazik)
* srpski (Miroslav Nikolić)
* suomi (Jiri Grönroos)
* Turkish (Muhammet Kara)
* српски (Мирослав Николић)
New or updated manual translations:
* Finnish (Jiri Grönroos)
version 3.25.1
--------------
New features and user visibile changes:
* Filter: match any filename that contains the string, not just filenames
that begin with the string.
* Use Unicode in translatable strings (Piotr Drąg) (#774008)
Bugs fixed:
* Never tries WINDOWS-1252 encoding (#785081)
* Do not activate 'file delete' when pressing Delete in the filter entry.
version 3.24.1
--------------
Bugs fixed:
* Cannot browse archive, extract or open files when running on Wayland. (#772850)
New or updated application translations:
* Belarusian (Yuras Shumovich)
version 3.24.0
--------------
New or updated application translations:
* Japanese (sujiniku)
* Latvian (Rūdolfs Mazurs)
version 3.23.92
---------------
Bugs fixed:
* nautilus-fileroller: remove compress support. (Carlos Soriano) (#779706)
New or updated application translations:
* Fòram na Gàidhlig (GunChleoc)
version 3.23.91
--------------
New features and user visibile changes:
* Restore Nautilus extension for the format types not supported by Nautilus (Carlos Soriano) (#772765)
New or updated application translations:
* Polish (Piotr Drąg)
version 3.22.3
--------------
Bugs fixed:
* Fixed crash after extracting a file (#778846)
New or updated application translations:
* Danish (Ask Hjorth Larsen )
* Polish (Piotr Drąg)
* Slovenian (Matej Urbančič)
version 3.22.2
--------------
Bugs fixed:
* file-roller does not respect sort order for folders (Jan Achterhold) (#630543)
New or updated application translations:
* Chinese Simplified (Boyuan Yang)
* Icelandic (Sveinn í Felli)
* Norwegian bokmål (Åka Sikrom)
* Türkçe (Muhammet Kara)
version 3.22.1
--------------
Bugs fixed:
* Remove handling of Comic Books archives. Handle Source RPMs (#767244)
* fr-new-archive-dialog: Do not fail if access::can-write is not set.
(Ondrej Holy) (#688714)
* Fix crash when compressing remote files. (Bastien Nocera) (#767577)
* window: use gdk_cursor_new_for_display(). (Ernestas Kulik) (#767534)
* window: set the paned as the drag destination. (Ernestas Kulik) (#767621)
* Dialog title displayed untranslated (#756917)
New or updated application translations:
* Arabic (Khaled Hosny)
* Basque (dooteo)
* Catalan (Gil Forcada)
* Chinese (traditional) (Cheng-Chia Tseng)
* Croatian (gogo)
* Italian (Milo Casagrande)
New or updated manual translations:
* Danish (scootergrisen)
version 3.22.0
---------------
New or updated application translations:
* Dutch (Hannie Dumoleyn)
* Ukrainian (Daniel Korostil)
* Русский (Stas Solovey)
New or updated manual translations:
* French (Alain Lojewski)
version 3.21.91
---------------
New features and user visibile changes:
* Remove nautilus extension. For GNOME 3.22, this functionality is now
built directly into nautilus. (Michael Catanzaro) (#770248)
Bugs fixed:
* Fix a memory leak in the add files dialog. (David King) (#766271)
* Fix a clipboard paste memory leak. (David King) (#766271)
* Fix a memory leak when pasting from the clipboard. (David King)
(#766271)
* Fix a memory leak of the file content type. (David King) (#766271)
* Fix a memory leak in the file list. (David King) (#766271)
* Fix renaming files in a password-protected archive. (David King)
(#766227)
* Fix fr_application_local_command_line memory leak. (David King) (#752476)
New or updated application translations:
* Brazilian Portuguese (Enrico Nicoletto)
* British English (David King)
* Bulgarian (Alexander Shopov)
* Danish (Ask Hjorth Larsen)
* Deutsch (Mario Blättermann)
* Español; Castellano (Daniel Mustieles)
* French (Erwan GEORGET)
* Friulian (Fabio Tomat)
* Galician (Fran Dieguez)
* Greek, Modern (1453-) (Tom Tryfonidis)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Kazakh (Baurzhan Muftakhidinov)
* Korea (Seong-ho Cho)
* Latvian (Rūdolfs Mazurs)
* Lietuvių (Moo)
* Persian (Arash Mousavi)
* Polish (Piotr Drąg)
* Português (Tiago Santos)
* srpski (Miroslav Nikolić)
* suomi (Jiri Grönroos)
* Swedish (Anders Jonsson)
* Vietnamese (Trần Ngọc Quân)
* српски (Мирослав Николић)
* עברית (Yosef Or Boczko)
version 3.21.90
---------------
New features and user visibile changes:
* added support for lz4 compressed tar archives (#770016)
* added support for lz4 compressed files (#770016)
Bugs fixed:
* file-roller can delete the content of local folders upon extraction,
if archive contains symbolic links pointing to absolute paths (#698554)
* disambiguate translatable strings adding context (#696838)
New or updated application translations:
* Chinese (Hong Kong) (tomoe_musashi)
* Czech (Marek Černocký)
* Español; Castellano (Daniel Mustieles)
* Gujarati (વિશાલ ભલાણી)
* עברית (Yosef Or Boczko)
* Indonesian (Andika Triwidada)
* Slovak (Dušan Kazik)
* Tot En Òc (Cédric Valmary (totenoc.eu))
* Icelandic (Sveinn í Felli)
New or updated manual translations:
* Indonesian (Andika Triwidada)
version 3.20.2
--------------
Bugs fixed:
* Extract here: show the 'operation completed' dialog.
* Avoid tarbombs when using extract here. (#766071)
* Fix extracting files with single-character names. (Ernestas Kulik) (#761582)
* Fix Add Files dialog button sensitivity. (David King) (#738177)
* Fix GSettings schema validation with recent GLib. (David King) (#756607)
New or updated application translations:
* Fòram na Gàidhlig (GunChleoc)
* Português (Sérgio Cardeira)
* Tot En Òc (Cédric Valmary (totenoc.eu))
version 3.20.1
--------------
Bugs fixed:
* Most of file-roller appears untranslated. (#764342)
New or updated application translations:
* Catalan (Gil Forcada)
* Chinese Simplified (Jeff Bai)
* Friulian (Fabio Tomat)
* Persian (Arash Mousavi)
* Slovak (Dušan Kazik)
* Tot En Òc (Cédric Valmary (totenoc.eu))
* Vietnamese (Trần Ngọc Quân)
version 3.20.0
--------------
New or updated application translations:
* Basque (Inaki Larranaga Murgoitio)
* Danish (Ask Hjorth Larsen)
* Japanese (Jiro Matsuzawa)
* Korea (Changwoo Ryu)
* Serbian (Марко Костић)
version 3.19.91
---------------
New or updated application translations:
* Galician (Fran Dieguez)
* Greek, Modern (1453-) (Efstathios Iosifidis)
* Italian (Milo Casagrande)
* Kazakh (Baurzhan Muftakhidinov)
* Ukrainian (Daniel Korostil)
* Polish (Piotr Drąg)
* Serbian (Мирослав Николић)
* Serbian (Miroslav Nikolić)
* Swedish (Anders Jonsson)
* Tot En Òc (Cédric Valmary (totenoc.eu))
* Русский (Stas Solovey)
New or updated manual translations:
* Greek, Modern (Efstathios Iosifidis)
* Korea (Seong-ho Cho)
version 3.19.90
--------------
New or updated application translations:
* Bulgarian (Alexander Shopov)
* Chinese (traditional) (Chao-Hsiung Liao)
* Danish (Kenneth Nielsen)
* French (Erwan GEORGET)
* Hungarian (Meskó Balázs)
* Latvian (Rūdolfs Mazurs)
* Polish (Piotr Drąg)
* Slovak (Dušan Kazik)
* Slovenian (Matej Urbančič)
New or updated manual translations:
* Hungarian (Gabor Kelemen)
* Swedish (Anders Jonsson)
version 3.19.1
--------------
New features and user visible changes:
* Added support for .click packages (#752133)
* Use a message dialog to show the result of an extraction (#748428)
* Modernized the 'update files' dialog.
* Removed the quit button from the confirmation dialog.
* Make Nauitlus select the extracted file.
Bugs fixed:
* Only show the menubar when the shell shows the menubar (#730291)
* Fixed memory leaks (David King) (#752476, #752476, #752476, #752476, #752476, #752476, #752476, #752476)
* libarchive: correctly extract sparse files (#747091)
* Updated MimeType in org.gnome.FileRoller.desktop (#747639)
* Fix documentation typos (Anders Jonsson) (#758814)
* Error extracting files using file-roller with unar with the
character [ (#755580)
* Stop mis-treating p7zip 15.09 as pre-4.55 (Sebastian Pipping) (#757793)
* Add a configure environment variable to select the cpio path (Jasper Lievisse Adriaanse)
* Appdata: added kudos
* Removed deprecated widgets from .ui files
* Added support for the official debian package mime type
* Fixed message dialog showing a (null) string
New or updated application translations:
* Arabic (Khaled Hosny)
* Aragonés (Daniel)
* Brazilian Portuguese (Enrico Nicoletto)
* Czech (Marek Černocký)
* Deutsch (Mario Blättermann)
* Español; Castellano (Daniel Mustieles)
* Fòram na Gàidhlig (GunChleoc)
* Lietuvių (Aurimas Černius)
* Norwegian bokmål (Kjartan Maraas)
* Persian (Arash Mousavi)
* Slovak (Dušan Kazik)
* suomi (Jiri Grönroos)
* Türkçe (Muhammet Kara)
New or updated manual translations:
* Brazilian Portuguese (Enrico Nicoletto)
* Czech (Marek Černocký)
* Deutsch (Christian Kirbach)
* Español; Castellano (Daniel Mustieles)
version 3.16.4
--------------
Bugs fixed:
* Better rar support when unar is installed.
* Crashes on drag'n'drop. (#746236)
* Fixed possible crash. (Matthias Clasen) (#753951)
* Mac OS X compilation fixes.
New or updated application translations:
* Chinese (traditional) (Chao-Hsiung Liao)
* Friulian (Fabio Tomat)
* Polish (Piotr Drąg)
version 3.16.3
--------------
Bugs fixed:
* Fixed multi volume rar archives not working even when rar or unrar are
installed (#747141)
* Fixed build on OpenBSD (Antoine Jacoutot) (#748791)
* trivial: Fix a wrong header guard in src/fr-enum-types.h (Ting-Wei
Lan) (#750485)
New or updated application translations:
* Catalan (Gil Forcada)
* Italian (Milo Casagrande)
* Portuguese (Pedro Albuquerque)
* Romanian (Daniel Șerbănescu)
* Tot en òc (totenoc.eu) (Cédric Valmary (Tot en òc))
New or updated manual translations:
* Catalan (Manel Vidal)
version 3.16.2
--------------
Bugs fixed:
* Fixed memory leak
New or updated application translations:
* Chinese Simplified (osfans)
* Esperanto (Kristjan SCHMIDT)
version 3.16.1
--------------
Bugs fixed:
* Untranslated entries in Nautilus menus (#747318)
* don't merge translations into gschema file (#747304)
* gtk-utils: fix missing string format argument (Tim Lunn) (#747065)
* icon: provide a symbolic variant of the app icon. since gnome 3.16
used for the high contrast theme (Jakub Steiner) (#747019)
New or updated application translations:
* Estonian (Mattias Põldaru)
* Icelandic (Sveinn í Felli)
* Japanese (Hajime Taira)
* Latvian (Rūdolfs Mazurs)
* Punjabi/Panjabi (A S Alam)
version 3.16.0
--------------
New or updated application translations:
* Aragonés (Daniel Martinez)
* Basque (Iñaki Larrañaga Murgoitio)
* Deutsch (Benjamin Steinwender)
* Indonesian (Andika Triwidada)
version 3.15.92
---------------
New or updated application translations:
* Bosnian (Samir Ribic)
* Bulgarian (Alexander Shopov)
* Danish (Kenneth Nielsen)
* Korea (Changwoo Ryu)
* Polish (Paweł Żołnowski)
* Serbian (Мирослав Николић)
* Serbian (Miroslav Nikolić)
* suomi (Jiri Grönroos)
* Swedish (Sebastian Rasmussen)
* Tajik (Victor Ibragimov)
* Vietnamese (Trần Ngọc Quân)
version 3.15.91
---------------
Bugs fixed:
* fixed Compress command visible for trash and
disk drive on desktop (#744448)
New or updated application translations:
* Brazilian Portuguese (Rafael Ferreira)
* Czech (Marek Černocký)
* Chinese (traditional) (Chao-Hsiung Liao)
* Español; Castellano (Daniel Mustieles)
* French (Erwan GEORGET)
* Galician (Fran Dieguez)
* Greek, Modern (1453-) (Efstathios Iosifidis)
* Icelandic (Sveinn í Felli)
* Italian (Milo Casagrande)
* Kazakh (Baurzhan Muftakhidinov)
* Lietuvių (Aurimas Černius)
* Slovak (Dušan Kazik)
* Turkish (Muhammet Kara)
* Ukrainian (Daniel Korostil)
* עברית (Yosef Or Boczko)
version 3.15.90
---------------
New features and user visible changes:
* Use the header-bar for the progress dialog.
* Use libarchive to read/write tar.lrz, tar.lzo, zip,
and to read deb, rar and rpm. (Balló György)
Bugs fixed:
* Cannot delete files from password protected 7zip archives. (#618909)
* file-roller delete file in certain circumstances. (#536834)
* Extracting (by drag & drop) causes an error when the mouse is
hovering Chromium. (#735857)
* Make dialogs respect gtk-dialogs-use-header setting. (Iain Lane) (#741925)
* Deleting all files does not work. (#738178)
* Dragging a file to desktop doesn't work. (#479351)
New or updated application translations:
* Esperanto (Kristjan SCHMIDT)
* Hungarian (Balázs Úr)
* Norwegian bokmål (Kjartan Maraas)
* Slovenian (Matej Urbančič)
* Русский (Stas Solovey)
version 3.15.2
--------------
New or updated application translations:
* Aragonés (Daniel Martinez)
* Dutch (Hannie Dumoleyn)
* Romanian (Daniel Șerbănescu)
* suomi (Jiri Grönroos)
* Vietnamese (Trần Ngọc Quân)
New or updated manual translations:
* Catalan (Manel Vidal)
version 3.15.1
--------------
Bugs fixed:
* file-selector-dialog: Use symbolic icon for the go up button (Yosef
Or Boczko) (#735438)
* request-dialog: Remove the unneeded image (Yosef Or Boczko)
(#735438)
* Make the error dialogs more modern. Make it a real
GtkMessageDialog. Also, remove the icon, we not needs it
anymore. (Yosef Or Boczko) (#735438)
version 3.14.1
--------------
New or updated application translations:
* Bengali (India) (Saibal Ray)
* Bulgarian (Alexander Shopov)
* Chinese Simplified (irisgyq)
* Fòram na Gàidhlig (GunChleoc)
* Hindi (rajesh)
* Kazakh (Baurzhan Muftakhidinov)
* Persian (Arash Mousavi)
* Portuguese (Pedro Albuquerque)
* Telugu (Krishnababu Krothapalli)
version 3.14.0
--------------
New or updated application translations:
* Bengali (India) (sray)
* Danish (Kenneth Nielsen)
* Nepali (Pawan Chitrakar)
* Polish (Paweł Żołnowski)
* Serbian (Miroslav Nikolić)
* Ukrainian (Daniel Korostil)
version 3.13.92
---------------
New or updated application translations:
* American English (Shantha kumar)
* Galician (Fran Dieguez)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Italian (Milo Casagrande)
* Kannada
* Korea (Changwoo Ryu)
* Latvian (Rūdolfs Mazurs)
* Marathi (Sandeep Shedmake)
* Punjabi/Panjabi (A S Alam)
* Slovak (Dušan Kazik)
* Slovenian (Matej Urbančič)
* suomi (Jiri Grönroos)
* Swedish (Anders Jonsson)
New or updated manual translations:
* Indonesian (Andika Triwidada)
version 3.13.91
---------------
Bugs fixed:
* fr-command-rar: check for NULL in name_field. (Igor Gnatenko)
(#735657)
* "New Archive" should have an ellipsis (#735440)
* Remove the close action from the gear menu (Yosef Or Boczko)
(#735400)
* window: Use the new support for RTL icons in GtkIconTheme (Yosef Or
Boczko) (#735399)
* window: Make the navigation buttons linked and separate the home
button. Also, remove the 12px at the end of the navigation buttons.
(Yosef Or Boczko) (#735398)
New or updated application translations:
* Assamese (Nilamdyuti Goswami)
* Basque (Iñaki Larrañaga Murgoitio)
* Brazilian Portuguese (Enrico Nicoletto)
* Catalan (Gil Forcada)
* Chinese (Hong Kong) (Chao-Hsiung Liao)
* Chinese (traditional) (Chao-Hsiung Liao)
* Czech (Marek Černocký)
* Deutsch (Christian Kirbach)
* Español; Castellano (Daniel Mustieles)
* French (Erwan GEORGET)
* Greek (Tom Tryfonidis)
* Japanese (Jiro Matsuzawa)
* Lietuvių (Aurimas Černius)
* Norwegian bokmål (Kjartan Maraas)
* Oriya (Manoj Kumar Giri)
* Türkçe (Muhammet Kara)
* Русский (Yuri Myasoedov)
* עברית (Yosef Or Boczko)
version 3.13.2
--------------
Bugs fixed:
* Use new menu button icon. (Michael Catanzaro) (#733511)
* Drop the use of smclient and eggdesktopfile (Kalev Lember) (#731331)
* Added appdata file (#732642)
* Add missing unref when accessing NautilusFileInfo object. This
caused Nautilus to crash when unmounting a network connection while
transferring and then reconnecting to that service. (Robert Ancell)
(#732471)
New or updated application translations:
* Brazilian Portuguese (Enrico Nicoletto)
* Catalan (Pau Iranzo)
* Czech (Marek Černocký)
* Español; Castellano (Daniel Mustieles)
* Fòram na Gàidhlig (GunChleoc)
* Galician (Fran Dieguez)
* Greek (Tom Tryfonidis)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Lietuvių (Aurimas Černius)
* Norwegian bokmål (Kjartan Maraas)
* Slovenian (Matej Urbančič)
* Swedish (Anders Jonsson)
* Türkçe (Muhammet Kara)
New or updated manual translations:
* Finnish (Sami Jaktholm)
version 3.13.1
--------------
New features and user visible changes:
* Use the headerbar in the dialogs (Yosef Or Boczko) (#727063)
New or updated application translations:
* Español (Daniel Mustieles)
* עברית (Yosef Or Boczko)
New or updated manual translations:
* Deutsch (Christian Kirbach)
* Español (Daniel Mustieles)
* Greek (Tom Tryfonidis)
version 3.12.1
--------------
Bugs fixed:
* Make DBus-activatable. (Matthias Clasen) (#728009)
* "Open with" does not work (#727215)
New or updated application translations:
* Arabic (Ibrahim Saed)
* Deutsch (Christian Kirbach)
* Indonesian (Dirgita)
New or updated manual translations:
* Brazilian Portuguese (Rafael Ferreira)
* Czech (Marek Černocký)
* Español (Daniel Mustieles)
* French (Alain Lojewski)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
version 3.12.0
--------------
* Updated help pages (Ekaterina Gerasimova)
New or updated application translations:
* Basque (Iñaki Larrañaga Murgoitio)
* Danish (Kenneth Nielsen)
* Dutch (Erwin Poeze)
* Japanese (Jiro Matsuzawa)
* Punjabi/Panjabi (A S Alam)
* Scottish Gaelic (GunChleoc)
* Serbian (Miroslav Nikolić)
* Serbian (Мирослав Николић)
* Slovak (Peter Mráz)
New or updated manual translations:
* Czech (Marek Černocký)
* Español (Daniel Mustieles)
* Hungarian (Gabor Kelemen)
* Indonesian (Andika Triwidada)
version 3.11.92
---------------
New or updated application translations:
* Chinese (Hong Kong) (Chao-Hsiung Liao)
* Chinese (traditional) (Chao-Hsiung Liao)
* Chinese Simplified (Sphinx Jiang)
* Deutsch (Wolfgang Stoeggl)
* Friulian (Fabio Tomat)
* Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
* Hungarian (Gabor Kelemen)
* Korea (Changwoo Ryu)
* Latvian (Rūdolfs Mazurs)
* Polish (Paweł Żołnowski)
* Portuguese (Tiago S.)
* Russian (Yuri Myasoedov)
* Suomi (Jiri Grönroos)
New or updated manual translations:
* Czech (Marek Černocký)
* French (Alain Lojewski)
* Indonesian (Andika Triwidada)
version 3.11.91
---------------
New or updated application translations:
* Belarusian (Ihar Hrachyshka)
* Brazilian Portuguese (Rafael Ferreira)
* Catalan (Pau Iranzo)
* Czech (Marek Černocký)
* French (Alain Lojewski)
* Scottish Gaelic (GunChleoc)
* Slovenian (Matej Urbančič)
New or updated manual translations:
* Brazilian Portuguese (Rafael Ferreira)
* Hungarian (Gabor Kelemen)
version 3.11.90
---------------
New features and user visible changes:
* Show more rows in the drag icon when dragging multiple rows
Bugs fixed:
* Fixed wrong drag&drop activation when in single click mode
New or updated application translations:
* Aragonés (Jorge Pérez Pérez)
* Assamese (Nilamdyuti Goswami)
* Brazilian Portuguese (Enrico Nicoletto)
* Español (Daniel Mustieles)
* Galician (Fran Dieguez)
* Hebrew (Yosef Or Boczko)
* Indonesian (Andika Triwidada)
* Italian (Milo Casagrande)
* Kannada (Shankar Prasad)
* Kazakh (Baurzhan Muftakhidinov)
* Lietuvių (Aurimas Černius)
* Norwegian bokmål (Kjartan Maraas)
* Scottish Gaelic (GunChleoc)
* Tajik (Victor Ibragimov)
* Thai (Theppitak Karoonboonyanan)
* Ukrainian (Daniel Korostil)
version 3.11.5
--------------
New or updated application translations:
* Assamese (Nilamdyuti Goswami)
* Chinese (Hong Kong) (Chao-Hsiung Liao)
* Chinese (traditional) (Chao-Hsiung Liao)
* Czech (Marek Černocký)
* Dutch (Erwin Poeze)
* French (Alain Lojewski)
* Norwegian bokmål (Kjartan Maraas)
* Occitan (Yannig Marchegay (Kokoyaya))
* Suomi (Jiri Grönroos)
New or updated manual translations:
* Español (Daniel Mustieles)
version 3.11.4
--------------
New features and user visible changes:
* Use a HeaderBar instead of a Toolbar
* Removed the statusbar.
Bugs fixed:
* src/gtk-utils.c: non-void function should return a value (#722002)
* Cannot extract .tar.lzop archives (#720279)
* file-roller should not require sudo/root to extract an iso. (#721093)
* Align better the buttons in the header bar (Yosef Or Boczko) (#720904)
* Removed all the deprecated functions from the source code.
New or updated application translations:
* Tajik (Victor Ibragimov)
* Galician (Fran Dieguez)
* Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
* Brazilian Portuguese (Rafael Ferreira)
* Chinese (Hong Kong) (Cheng-Chia Tseng)
* Chinese (simplified) (Tong Hui)
* Chinese (traditional) (Cheng-Chia Tseng)
* Deutsch (Benjamin Steinwender)
* Español (Daniel Mustieles)
* Italian (Milo Casagrande)
* Kazakh (Baurzhan Muftakhidinov)
* Lietuvių (Aurimas Černius)
* Norwegian bokmål (Kjartan Maraas)
* Slovenian Translation (Matej Urbančič)
* Telugu (Krishnababu Krothapalli)
* עברית (Yosef Or Boczko)
New or updated manual translations:
* Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
version 3.11.3
--------------
New features and user visible changes: