-
Notifications
You must be signed in to change notification settings - Fork 28
/
NEWS
5019 lines (3837 loc) · 137 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 44.4
~~~~~~~~~~~~
Released: 2024-11-24
Features:
* Added bzip3 support. (!266)
* File selector: show volumes and allow to mount unmounted volumes. (!258)
* New archive dialog: allow to use all the possible extensions a mime type
supports, and allow to specify a name without extension, which will be
concatenated to the selected extension to get the full name. (!275) (!267)
* File selector: save and restore the sort order. (!246)
* Properties dialog: show an icon, make the headerbar flat.
Bugfixes:
* Error opening rar archive in RAR4 format and password protected. (!279)
* Rar: fixed file list parsing for some encrypted archives. (!277)
* Fixed error when renaming a file inside an encrypted archive. (!276)
* Disabled the native appchooser by default. (!217)
* 'Show destination' sometimes opens the wrong folder. (!255)
* 'Show destination' sometimes doesn't show anything.
* Use the native appchooser only for a single file. (!221)
* Show flat headerbar in empty state. (!216)
* Fixed error messages impossible to close. (!257)
* Fixed segfaults when opening an empty .deb file. (!253)
* --extract-to keeps asking to create a directory. (!254)
* Fixed wrong context menu item activation. (!268)
* Avoid the exit timeout unless file-roller was launched with `--service`. (FeRD (Frank
Dana)) (!34)
* Error when opening the created archive after saving as 7zip multi-volume.
Translations:
* Belarusian (Yuras Shumovich)
* Brazilian Portuguese (Juliano de Souza Camargo)
* English - United Kingdom (Andi Chandler)
* Hindi (Scrambled777)
* Portuguese (Hugo Carvalho)
* Slovak (Dušan Kazik)
* srpski (Marko M. Kostić)
* Thai (Theppitak Karoonboonyanan)
* српски (Марко М. Костић)
Version 44.3
~~~~~~~~~~~~
Released: 2024-05-19
Bugfixes:
* Fixed filename not changed when creating a new archive (!248)
* 7z: error when creating archives with volumes (!249)
Version 44.2
~~~~~~~~~~~~
Released: 2024-05-08
Features:
* Added expanders to the tree view (!220)
Bugfixes:
* Fixed crash opening some rar files (!243)
* Do not crash if the loaded file is empty (!233)
Translations:
* Indonesian (Andika Triwidada)
Version 44.1
~~~~~~~~~~~~
Released: 2024-04-09
Features:
* New archive dialog: allow to choose a location without changing name
Bugfixes:
* Fixed adding multiple files on a 'drop' event (!235)
* Show the options dialog when adding files in batch mode (!231)
* Appdata: Add 44.0 release (Maximiliano Sandoval)
Translations:
* Occitan (Quentin PAGÈS)
* Kabyle (Rachida SACI)
Version 44
~~~~~~~~~~
Released: 2024-03-24
Bugfixes:
* Fixes compilation when native app chooser is disabled
(Amin Bandali) (!227)
Translations:
* French - France (Jean-Marc Tissières)
* Hungarian (Balázs Úr)
* Kabyle (ButterflyOfFire)
* Slovenian (Martin Srebotnjak)
Version 44.beta
~~~~~~~~~~~~~~~
Released: 2024-03-10
Bugfixes:
* window: Fix incompatible pointer types (David King) (!225)
* appdata: Fix reverse DNS developer id (Maximiliano Sandoval)
Translations:
* Catalan (Jordi Mas i Hernàndez)
* Kazakh (Baurzhan Muftakhidinov)
* Latvian (Rūdolfs Mazurs)
Version 44.alpha
~~~~~~~~~~~~~~~~
Released: 2024-02-18
Features:
* Ported to GTK4
Bugfixes:
* Fixed filenames when opening from google-drive. (FeRD (Frank Dana)) (!212)
* Disable broken deb package support. (Bastien Nocera) (!14)
* properties.ui: fixed typo (!215)
* new-archive-dialog: fixed untranslatable row name (!213)
* Retire AppMenu and remove redundant codes. (Sabri Ünal) (!63)
* appdata: file-roller is no longer default in GNOME (Anders Jonsson)
(!210)
* Redo the headerbar button tooltips to follow the GNOME HIG recommendations.
(Jake Dane) (!189)
* doap: Remove rdf resource (Maximiliano Sandoval R) (!35)
Translations:
* Abkhazian (Нанба Наала)
* Basque (Asier Sarasua Garmendia)
* Belarusian (Yuras Shumovich)
* Catalan (Jordi Mas i Hernàndez)
* Chinese (Traditional) <http://darkbear.mercusysddns.com/ (Cheng-Chia
Tseng)
* Chinese - China (lumingzh)
* Danish (Alan Mortensen)
* Deutsch (Jürgen Benvenuti)
* Dutch (Nathan Follens)
* Friulian (Fabio Tomat)
* Galician (Fran Dieguez)
* Georgian (Ekaterine Papava)
* Hebrew (Yosef Or Boczko)
* Hungarian (Balázs Úr)
* Icelandic (Sveinn í Felli)
* IE (OIS)
* Indonesian (Kukuh Syafaat)
* Kazakh (Baurzhan Muftakhidinov)
* Nepali (Pawan Chitrakar)
* Persian (Danial Behzadi)
* Polish (Piotr Drąg)
* Romanian (Florentina Mușat)
* Slovak (Dušan Kazik)
* Slovenian (Martin Srebotnjak)
* Spanish - Spain (Daniel Mustieles)
* suomi (Jiri Grönroos)
* Swedish (Anders Jonsson)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
* Vietnamese (Trần Ngọc Quân)
* čeština (Daniel Rusek)
* Ελληνικά (Efstathios Iosifidis)
* Русский (Ser82-png)
Help translations:
* Chinese (China) (Boyuan Yang)
* Galician <Proxecto Trasno (Fran Dieguez)
* Polish (Piotr Drąg)
* Swedish (Anders Jonsson)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
* русский (Ser82-png)
Version 43.0
----------------
Released: 2022-09-17
New features and user visible changes:
- Add read-only support for Apple’s `dmg` image format through 7-zip (!85)
Bugs fixed:
- Prevent libarchive backend from writing endless padding when extracting RAR archives (!87)
Other changes:
- Various source code clean-ups (!86)
Translation updates:
- Abkhazian (Nart Tlisha)
- Basque (Asier Sarasua Garmendia)
- Brazilian Portuguese (Enrico Nicoletto)
- Bulgarian (Alexander Shopov)
- Catalan (Jordi Mas)
- Chinese (China) (Luming Zh)
- Czech (Marek Černocký)
- Danish (Alan Mortensen)
- Finnish (Jiri Grönroos)
- French (Irénée THIRION)
- Galician (Fran Dieguez)
- German (Jürgen Benvenuti)
- Hungarian (Balázs Úr)
- Indonesian (Kukuh Syafaat)
- Korean (Seong-ho Cho)
- Latvian (Rūdolfs Mazurs)
- Lithuanian (Aurimas Černius)
- Occitan (Quentin PAGÈS)
- Persian (Danial Behzadi)
- Polish (Piotr Drąg)
- Portuguese (Hugo Carvalho)
- Russian (Aleksandr Melman)
- Serbian (Марко Костић)
- Slovenian (Matej Urbančič)
- Spanish (Daniel Mustieles)
- Turkish (Sabri Ünal)
- Ukrainian (Yuri Chornoivan)
Version 43.alpha
----------------
Released: 2022-08-18
New features and user visible changes:
- Support `7zz` and `7zzs` programs from the official 7-Zip project (!75)
- Distros will want to adjust the `data/packages.match` file.
- Add a mnemonic to Extract button (!73)
- Make password field reveal icon consistent with other GNOME apps
- Nautilus extension now supports extracting multiple archives simultaneously with “Archive to…” (!78)
- Add context menu item to navigate to a file from search (!71)
Bugs fixed:
- Fix RAR decompression support in 7-Zip backend (!75)
- Fix opening RAR archives with encrypted headers (Jake Dane; !82)
Other changes:
- Port Nautilus extension to Nautilus 43 (!81)
- Various code clean-ups (!74, #69, !59, !15, !80, !78, …)
- Slightly modernized Meson code (!60)
- Use portal-based APIs for opening files, adding dependency on libportal and libportal-gtk3 (Maximiliano; !55)
- Add support for building internal API docs using gi-docgen (!72)
- Do not hide File-Roller icon in the KDE app laucher (!70)
- Remove dependency on libnotify (Maximiliano; !61)
Translation updates:
- Abkhazian (Nart Tlisha)
- Basque (Asier Sarasua Garmendia)
- Catalan (Jordi Mas)
- Chinese (China) (Luming Zh)
- Croatian (Goran Vidović)
- Dutch (Nathan Follens)
- Finnish (Jiri Grönroos)
- French (Irénée THIRION)
- Friulian (Fabio Tomat)
- Galician (Fran Dieguez)
- Georgian (Zurab Kargareteli)
- Hebrew (Yosef Or Boczko)
- Indonesian (Andika Triwidada, Kukuh Syafaat)
- Nepali (Pawan Chitrakar)
- Occitan (Quentin PAGÈS)
- Persian (Danial Behzadi)
- Polish (Piotr Drąg)
- Portuguese (Hugo Carvalho)
- Russian (Aleksandr Melman)
- Serbian (Марко Костић)
- Slovak (Dušan Kazik)
- Slovenian (Matej Urbančič)
- Spanish (Daniel Mustieles)
- Swedish (Anders Jonsson)
- Turkish (Emin Tufan Çetin)
- Ukrainian (Yuri Chornoivan)
Version 3.42.0
~~~~~~~~~~~~~~
Released: 2022-03-20
Bugfixes:
* Requires libhandy >= 1.5
version 3.41.90
---------------
This is a Beta release
Bugs fixed:
* Enable add button on select all (#129)
* Support GNOME 42 dark style preference (!58)
version 3.40.0
--------------
Bugs fixed:
* Error when creating an archive with no extension (#99)
* Fixed encrypted files emblem (#120)
* Open destination: fixed when using junk_paths (#112)
New or updated application translations:
* Romanian (Florentina Mușat)
* Ukrainian (Yuri Chornoivan)
version 3.39.1
--------------
New features and user visibile changes:
* Let nautilus handle properly rar files. (Simental Magana, Marcos)
(!1813)
* Remember If Showing Other Options. (programmer-ceds)
* Action Enter key in password field. (programmer-ceds)
* libarchive: multicore xz compression. (Julian Groß)
Bugs fixed:
* libarchive: Skip files with symlinks in parents. (Ondrej Holy) (#108)
* Fix use-after-free in error message reporting. (Badel2)
* Install D-Bus service file to correct location. (Jan Alexander Steffens)
New or updated application translations:
* Catalan (Gil Forcada)
* Chinese (Cheng-Chia Tseng)
* Danish (Ask Hjorth Larsen)
* Hebrew (Yosef Or Boczko)
* Norwegian bokmål (Åka Sikrom)
* Portuguese (Hugo Carvalho)
* Proxecto Trasno (Fran Dieguez)
* Punjabi (A S Alam)
* Vietnamese (Trần Ngọc Quân)
New or updated manual translations:
* Catalan (Manel Vidal)
* Danish (Ask Hjorth Larsen)
* French (Guillaume Bernard)
* Galician (Fran Dieguez)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Korea (Seong-ho Cho)
* Polish (Piotr Drąg)
* Swedish (Anders Jonsson)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
version 3.38.0
--------------
New or updated application translations:
* Basque (Asier Sarasua Garmendia)
* Brazilian Portuguese (Rafael Fontenelle)
* Croatian (gogo)
* Danish (scootergrisen)
* Deutsch (Mario Blättermann)
* Dutch (Nathan Follens)
* French (Thibault Martin)
* Galician (Fran Dieguez)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Italian (Milo Casagrande)
* Japanese (sicklylife)
* Korea (Seong-ho Cho)
* Latvian (Rūdolfs Mazurs)
* Lietuvių (Aurimas Černius)
* Persian (Danial Behzadi)
* Polish (Piotr Drąg)
* Portuguese (José Vieira)
* Slovenian (Matej Urbančič)
* slovenčina (Dušan Kazik)
* suomi (Jiri Grönroos)
* Turkish (Emin Tufan Çetin)
* Ukrainian (Yuri Chornoivan)
* čeština (Marek Černocký)
* Ελληνικά (Efstathios Iosifidis)
* српски (Марко М. Костић)
New or updated manual translations:
* Catalan (Manel Vidal)
* Czech (Marek Černocký)
* Deutsch (Christian Kirbach)
* Galician (Fran Dieguez)
* Polish (Piotr Drąg)
* Spanish - Spain (Daniel Mustieles)
version 3.37.90
---------------
New features and user visible changes:
* Added Keyboard Shortcuts dialog. (Sabri Ünal)
* Added Control-1 and Control-2 shortcuts to change file list mode.
* Added Shift+Ctrl+S to save with another name. (Sabri Ünal)
* Add website to about dialog. (David King)
* Add mnemonics to some strings. (Sabri Ünal)
* Help: give pages some order. (Sabri Ünal)
* Help: added F2 key shortcut to archive edit page. (Pranali Deshmukh)
Bugs fixed:
* Drag-and-Drop crash after cancelling file overwrite. (Guilherme Silva)
* 7z: fix progress display when using p7zip. (Peter Keresztes Schmidt)
* Java utils: avoid memory leak. (Pavel Shlyak)
* Fix minor typo: Shorcuts -> Shortcuts. (Yuri Chornoivan)
* Package installer: Removed X11 dependency. (Romeo Calota)
New or updated application translations:
* Catalan (Gil Forcada)
* Chinese (Cheng-Chia Tseng)
* Chinese (China) (Boyuan Yang)
* English - United Kingdom (Zander Brown)
* Friulian (Fabio Tomat)
* Kazakh (Baurzhan Muftakhidinov)
* Pashto (Zabeeh Khan)
* Romanian (Florentina Mușat)
* Spanish - Spain (Daniel Mustieles)
* Swedish (Anders Jonsson)
* Ukrainian (Yuri Chornoivan)
New or updated manual translations:
* Catalan (Manel Vidal)
* Swedish (Anders Jonsson)
* Turkish (Emin Tufan Çetin)
* Ukrainian (Yuri Chornoivan)
version 3.36.2
--------------v
Bugs fixed:
* libarchive: do not follow external links when extracting files.
* libarchive: overwrite symbolic links as well if requested by the user.
* Help: Update steps to create a new archive to 3.34 UI. (Andre Klapper)
New or updated application translations:
* Hebrew (Yosef Or Boczko)
* Kurdish (Sorani) (Jwtiyar Nariman)
* Turkish (Emin Tufan Çetin)
New or updated manual translations:
* French (Guillaume Bernard)
* Indonesian (Andika Triwidada)
* Polish (Piotr Drąg)
* Ukrainian (Yuri Chornoivan)
version 3.36.1
--------------
Bugs fixed:
* Fixed Properties command in menubar. (Sabri Ünal)
* Fixed compiling with GCC 10. (David Seifert)
New or updated application translations:
* Burmese (Vampire)
* Ukrainian (Yuri Chornoivan)
New or updated manual translations:
* Catalan (Manel Vidal)
* Czech (Marek Černocký)
* French (Charles Monzat)
* Indonesian (Andika Triwidada)
version 3.36.0
--------------
New or updated application translations:
* Japanese (sicklylife)
* Kurdish (Sorani) (Jwtiyar Nariman)
New or updated manual translations:
* Polish (Piotr Drąg)
* Swedish (Anders Jonsson)
version 3.35.92
---------------
New features and user visible changes:
* User's manual updates (Andre Klapper)
New or updated application translations:
* English - United Kingdom (Bruce Cowan)
New or updated manual translations:
* Brazilian Portuguese (Fábio Nogueira)
version 3.35.91
---------------
New features and user visible changes:
* Updated manual (Andre Klapper)
New or updated application translations:
* Japanese (sicklylife)
New or updated manual translations:
* es (Daniel Mustieles)
version 3.35.90
---------------
New or updated application translations:
* Galician (Fran Dieguez)
* Japanese (sicklylife)
* Pasukan Terjemahan Malaysia (abuyop)
* Turkish (Emin Tufan Çetin)
New or updated manual translations:
* Galician (Fran Diéguez)
version 3.35.1
--------------
New features and user visible changes:
* Support for Zstandard compressed files/archives. (Felix Riemann)
* Allow to directly open .tar.lzo files. (Felix Riemann)
* libarchive: implemented read support for 7z. (Peter Keresztes Schmidt)
* Provide a development variant of the app icon. (Jakub Steiner) (!12)
* Converted README to README.md (Roger)
* Remove file-roller from the recommended applications for ePub
files. (Bastien Nocera)
Bugs fixed:
* Removed deprecated functions. (Peter Keresztes Schmidt)
* Add application/x-xar as a supported mime-type. (Bastien Nocera) (!50)
New or updated application translations:
* Basque (Asier Sarasua Garmendia)
* Japanese (Ryuta Fujii)
version 3.32.2
--------------
Bugs fixed:
* Prevents CTRL+F to be activated twice for a single key press.
(Andrea Azzarone) (!37)
New or updated application translations:
* Basque (Asier Sarasua Garmendia)
* Catalan (Gil Forcada)
* Chinese (China) (Dingzhong Chen)
* Danish (Alan Mortensen)
* Icelandic (Sveinn í Felli)
* Persian (Danial Behzadi)
* Spanish - Spain (Daniel Mustieles)
New or updated manual translations:
* français (Charles Monzat)
version 3.32.1
--------------
New or updated application translations:
* Croatian (gogo)
* Danish (Alan Mortensen)
* slovenčina (Dušan Kazik)
version 3.32.0
--------------
New or updated application translations:
* Korea (Seong-ho Cho)
version 3.31.92
---------------
New or updated application translations:
* Deutsch (Bernd Homuth)
* Dutch (Nathan Follens)
* Italian (Milo Casagrande)
* Latvian (Rūdolfs Mazurs)
* Lietuvių (Aurimas Černius)
* Portuguese - Brazil (Rafael Fontenelle)
* Vietnamese (Trần Ngọc Quân)
* Русский (Stas Solovey)
* српски (Марко М. Костић)
version 3.31.91
---------------
New or updated application translations:
* Chinese (pan93412)
* Danish (Alan Mortensen)
* français (Guillaume Bernard)
* Kazakh (Baurzhan Muftakhidinov)
* Polish (Piotr Drąg)
* suomi (Jiri Grönroos)
* čeština (Marek Černocký)
version 3.31.90
---------------
New or updated application translations:
* Catalan (Gil Forcada)
* Esperanto (Carmen Bianca BAKKER)
* français (Guillaume Bernard)
* Galician (Fran Dieguez)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Japanese (sicklylife)
* Romanian (Daniel Șerbănescu)
New or updated manual translations:
* es (Daniel Mustieles)
version 3.31.2
--------------
New features and user visible changes:
* Improved app icon. (Jakub Steiner)
* Overwrite dialog: added button to skip all existing files when
extracting. (J08nY)
Source code changes:
* Use G_DECLARE_TYPE boilerplate. (Robert Ancell)
New or updated application translations:
* es (Daniel Mustieles)
* Esperanto (Kristjan SCHMIDT)
* Friulian (Fabio Tomat)
* Japanese (sicklylife)
* Slovenian (Matej Urbančič)
* Swedish (Anders Jonsson)
* Türkçe (sabri Ünal)
* čeština (Marek Černocký)
* Ελληνικά (Efstathios Iosifidis)
version 3.31.1
--------------
New features and user visible changes:
* Removed the application menu.
* Updated application icon. (Jakub Steiner)
version 3.30.1
--------------
New or updated application translations:
* Arabic (Khalid Abu Shawarib)
New or updated manual translations:
* Czech (Marek Černocký)
* Hungarian (Balázs Úr)
version 3.30.0
--------------
New or updated manual translations:
* Brazilian Portuguese (Rafael Fontenelle)
* Deutsch (Mario Blättermann)
* Polish (Piotr Drąg)
* Swedish (Sebastian Rasmussen)
version 3.29.91
---------------
Bugs fixed:
* Fixed loading of .epub and .crx files
* Path traversal vulnerability. Do not extract files with relative
paths. (#794337)
New or updated application translations:
* Arabic (Khalid Abu Shawarib)
version 3.29.90
---------------
New features and user visible changes:
* Restored app menu.
New or updated application translations:
* français (Charles Monzat)
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)