-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathNEWS
3639 lines (3067 loc) · 146 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
Major changes in 47.0
=====================
* Enhancements
- Show new folder button in Open Folder(s) modes (Corey Berla)
- Persist window size for file chooser (Corey Berla)
* Bugfixes:
- Fix grammar error (Khalid Abu Shawarib)
- Fix build error (Jami Kettunen)
- Escape toast button mnemonics (Khalid Abu Shawarib)
* File chooser fixes:
- Don't show undo button when suggested name doesn't exist (Corey Berla)
- Show filter name more consistently (Corey Berla)
- Stop crashing when using "Open Item Location" (Corey Berla)
- Fix issue where new folder button disappears (Corey Berla)
- Fix flat dropdown styles (Alice Mikhaylenko)
* Translation updates (GNOME Translation Project contributors)
Major changes in 47.rc
=====================
* Enhancements
- Polish the file chooser (António Fernandes)
- Implement file chooser "choices" menu (Corey Berla)
- Allow extracting bzip2 tar files (Khalid Abu Shawarib)
- Allow dropping items into the file chooser (Corey Berla)
- Add the background menu to the file chooser (Corey Berla)
- Allow vertical scrolling in the pathbar (Liam Rust)
- Activate the accept button by default in file chooser (Dylan McCall)
* Bugfixes:
- Fix various file chooser crashes (Corey Berla)
- Don't hide file chooser filters with long filenames or in narrow mode (Corey Berla)
- Make sure the pathbar always shows the current folder (Corey Berla)
- Fix overlapping filename widget in file chooser (Corey Berla)
- Make nautilus previewer work between the main window and file chooser (António Fernandes)
- Various fixes for file chooser paths and save locations (Corey Berla)
- Set focus correctly in file chooser (Corey Berla)
- Allow unselecting an item in file chooser (Corey Berla)
- Add a tooltip to the network address bar button (Automeris naranja)
- Disallow conventional DnD into the pathbar in file chooser mode (Corey Berla)
- Don't overflow window in file chooser (Corey Berla)
* Translation updates (GNOME Translation Project contributors)
Major changes in 47.beta
=====================
* Enhancements
- Implement file chooser portal and introduce file chooser ui (António Fernandes)
- Redesign and modernize the compression dialog (Automeris naranja)
- Modernize the new folder dialog (Automeris naranja, António Fernandes)
- Replace Search Banner with Search Info Popover (Anuraag Reddy Patllollu)
- Redesign "Other Types" search (Khalid Abu Shawarib)
- Port to new adwaita widgets (Automeris naranja, Khalid Abu Shawarib, Peter Eisenmann)
- Update emblems with symbolics (Sam Hewitt, Khalid Abu Shawarib, Peter Eisenmann)
* Bugfixes:
- Use correct path for email (Peter Eisenmann)
- File chooser bug fixes (Corey Berla)
- Disable bookmarking the network view (Corey Berla)
- Change files view accent to grey (Alice Mikhaylenko)
- Fix dragging on touch devices (Lukas Swierzy, Gary Li)
- Misc bugfixes (Khalid Abu Shawarib, Peter Eisenmann, António Fernandes, Corey Berla)
* Translation updates (GNOME Translation Project contributors)
Major changes in 47.alpha
=====================
* Enhancements
- Add the Network view (António Fernandes, Allan Day)
- Show xdg dirs in sidebar as regular (removable) bookmarks (António Fernandes)
- Show sidebar bookmarks before mounts (António Fernandes)
- Remove "Other Locations" and show mounts directly on the sidebar (António Fernandes)
- Improve view performance (Khalid Abu Shawarib)
- Use new adw views (Automeris naranja)
- Improve internal NautilusFile performance (Peter Eisenmann)
- Improve ui for progress indicator (Peter Eisenmann)
- Improve ui to floating bar (Sam Hewitt, piegames)
- Allow staring from the context menu (José Guilherme)
- Redesign trash dialog (Anuraag Reddy Patllollu, Allan Day)
- Allow Scripts in flatpak (Anuraag Reddy Patllollu)
- Open mounts in original tab instead of focused tab (Gary Li)
- Allow simultaneous mounting (Khalid Abu Shawarib)
* Bugfixes:
- Create archive with Enter on Compress dialog (Lukáš Tyrychtr)
- Accessibility fixes (Automeris naranja, Sabri Ünal)
- Move focus correctly when item is removed (Khalid Abu Shawarib)
- Don't reset permissions when copying from a non-isofs readonly filesystem (Fina Wilke)
- Open correct panel in GNOME Settings for trash settings (Khalid Abu Shawarib)
- Disable paste in Trash, Recent, and Starred (Jonathan Lin)
- Fix error when passing invalid location to portals (Khalid Abu Shawarib)
- Fix memory leaks (Khalid Abu Shawarib, António Fernandes)
- Call shutdown() on modules (Corey Berla)
- Don't show banners in global search (Khalid Abu Shawarib)
- Prevent a crash (Khalid Abu Shawarib, Gary Li)
- Keep correct file list order in a DnD (Khalid Abu Shawarib)
- Don't display future dates as "Today" or "Yesterday" (Grey Nicholson)
- Prevent freeze (Peter Eisenmann)
- Fix broken sort order when switching views (Gary Li)
- Don't irreversibly hide sidebar with touch gesture (Khalid Abu Shawarib)
- Don't unnecessarily re-set selection in search (Gary Li)
- Don't scale up images in properties preview (Khalid Abu Shawarib)
- Actually drop wayland export handles (António Fernandes)
- Fix potentially incorrect file operation (Khalid Abu Shawarib)
- Batch rename fix tags, and allow illegal characters (Anuraag Reddy Patllollu)
- Allow xdp to fail (Balló György)
- Fix typo (Alexandre Franke)
* Cleanups
- Use property styling for adw rows (Automeris naranja, Anton Snigirev)
- Code cleanup (Khalid Abu Shawarib, Peter Eisenmann, Corey Berla, António Fernandes)
- Significant refactoring and cleanup to prepare to Nautilus as a file chooser (António Fernandes)
* Translation updates (GNOME Translation Project contributors)
Major changes in 46.0
=====================
* Bugfixes:
- Remove char limit on size label in properties dialog (Khalid Abu Shawarib)
* Translation updates (GNOME Translation Project contributors)
Major changes in 46.rc
========================
* Enhancements
- Adjust empty status page and progress tooltip strings (Allan Day, Khalid Abu Shawarib)
- Add input hints and purpose properties to entries (Khalid Abu Shawarib)
- Refine operations hover background (Sam Hewitt, António Fernandes)
* Bugfixes:
- Position loop mounts correctly in the sidebar (António Fernandes)
- Fix internationalization issues (Khalid Abu Shawarib, Peter Eisenmann)
- Revert crashes-causing multi-file properties performance optimization (Peter Eisenmann)
- Reestablish location signals if location change failed (Corey Berla)
- Fix regression which disallowed dropping files on empty folders (Corey Berla, António Fernandes)
* Cleanups
- Remove architecture-sensitive duplicate filename unit test (Peter Eisenmann, Jeremy Bicha)
- Refine Appstream metainfo (Sophie Herold, Alexandre Franke)
* Translation updates (GNOME Translation Project contributors)
Major changes in 46.beta
========================
* Postponed
- The network view from 46.alpha.1 was deemed to require more work
* Enhancements
- Added a global search mode (António Fernandes)
- Use 'text entry' cursor on pathbar hover (Corey Berla)
- Add drop shadow to file property dialog icons (kramo)
- Improve progress info icons and tooltips (Bharat Tyagi, Sam Hewitt)
* Bugfixes:
- Avoid crashes with column chooser (Peter Eisenmann)
- Avoid crash when navigating back to same folder (António Fernandes)
- Avoid infinite loop on file creation naming conflict (Corey Berla)
- Fix displaying parent folder of multi-files (Anton Snigirev)
- Clear location entry on editing of internal locations (Peter Eisenmann)
- Ensure search's clear button is hidden when empty (António Fernandes)
- Hide search popover after opening a dialog (Khalid Abu Shawarib)
- Correctly open empty folders from search (António Fernandes)
- Don't reload view only to change selection (António Fernandes)
- Use smaller icons in progress indicator (António Fernandes, Sam Hewitt)
- Fix various leaks (Khalid Abu Shawarib, António Fernandes)
- Added extra tentacles to confuse AI-generated blogs (Via Matrix)
* Cleanups
- Made various string HIG compatible (Bart Gravendeel, Automeris naranja)
- Modernize column chooser widgetry (Automeris naranja)
- Detect potfile errors via CI (Corey Berla)
- Replace deprecated GTK point computing functions (N.Pranav Krishna)
Major changes in 46.alpha.1
=======================
* Enhancements
- Views can be switched without a folder reload (António Fernandes)
- Operations are listed in the bottom of the sidebar (Corey Berla, António Fernandes, Allan Day)
- Network view replaces Other Locations (António Fernandes, Allan Day)
- Mounted drives are shown in the sidebar (António Fernandes)
- Selected files are recorded in back and forward history (António Fernandes)
- Subfolder loading indication (António Fernandes)
- Various view performance improvements (António Fernandes)
- Improved performance of multi-file properties dialog (Khalid Abu Shawarib)
* Bugfixes:
- Correctly prioritize thumbnails for non-alphabetical sort order (Corey Berla)
- Notify view item name changes for accessibility (Corey Berla, António Fernandes)
- Open real folder for documents in Recent from Properties (Anton Snigirev)
- Pattern match (Ctrl+S) all expanded list view directories (António Fernandes)
- Display sampling frequency in kHz with thousand separators (Hariharan D)
- Treat markdown files as text documents in search (Hariharan D)
- Improve UI text capitalization and mnemonics (Automeris naranja)
- Fix tab tooltip texts for markup and search (Corey Berla)
- Fix extension linkage with C++ (Khalid Abu Shawarib)
- Add a tooltip to the star button (Lukáš Tyrychtr)
- Show correct shortcut for Redo on the menu (Divyansh Jain)
- Prevent use-after-free with mount and stop (António Fernandes)
- Improve virtual files handling (António Fernandes)
- Fix various view-related bugs, leaks and warnings (António Fernandes)
* Cleanups:
- Significant restructuring of view architecture (António Fernandes)
- Remove dead code in views and css styles (António Fernandes)
- Update man page, remove documentation for removed self-check functionality (Corey Berla)
* Translation updates (GNOME Translation Project contributors)
Major changes in 46.alpha.0
=======================
* Enhancements
- Confirm password when creating protected ZIP archives (Eric Daigle)
- Make custom folder icon feature discoverable (Khalid Abu Shawarib)
- Make URI entry discoverable (Alynx Zhou, Barnabás Pőcze)
- Allow changing owner/group and any permissions under admin:/// (António Fernandes)
- Add detailed date and time format option (Ondrej Holy, Peter Eisenmann)
- Detect copy/move over 4GiB file limit on FAT (Corey Berla)
- Give feedback on completion of quick operations (António Fernandes)
- New-style banners, unstar animation, and other visual refinements (Peter Eisenmann, Automeris naranja)
- Allow Alt+Down to revert more than one Alt+Up (vmkul)
- Close overlaid sidebar on location change (Khalid Abu Shawarib)
* Bugfixes:
- Don't skip files in deep count/size (António Fernandes)
- Don't move files around as thumbnails load (Corey Berla)
- Reveal highlighted file without delay (Corey Berla)
- Stop crashing in various situations (Sebastian Keller, António Fernandes, Corey Berla, Khalid Abu Shawarib)
- Resolve UI text inconsistencies (Automeris naranja, getsnoopy, kramo, Khalid Abu Shawarib, Ondrej Holy, Matthijs Velsink)
- Fix memory leaks, template disposal, and warnings (Khalid Abu Shawarib)
- Fix interface problems in Properties (Peter Eisenmann, António Fernandes, Khalid Abu Shawarib)
- Don't keep viewing unmounted locations (Ondrej Holy, António Fernandes, Khalid Abu Shawarib)
- Refined appdata (Sabri Ünal, António Fernandes)
- Resolve wrong scroll positioning bugs (Gary Li, António Fernandes)
- Fix automatic file duplicate naming (Peter Eisenmann)
- Properly reorder bookmarks by drag and drop (Khalid Abu Shawarib)
- Set current modification time on file created from templates (Khalid Abu Shawarib)
- Fix missing/wrong mime type icons (António Fernandes)
- Don't reload on autofs timeout (António Fernandes)
* Cleanups
- Remove obsolete profiling, custom debug logging, and self-checking (Peter Eisenmann, Khalid Abu Shawarib)
- Streamline and expand tests (Khalid Abu Shawarib, Peter Eisenmann)
- Reduce usage of GtkDialog and other deprecated API (Khalid Abu Shawarib, Peter Eisenmann)
- Replace custom switch row with AdwSwitchRow (Óscar Fernández Díaz)
- Drop obsolete code (Peter Eisenmann, António Fernandes, Corey Berla)
- Reduce unnecessary string copies (Peter Eisenmann)
- Unify numbered filename apendix handling (Peter Eisenmann, Khalid Abu Shawarib)
* Translation updates (GNOME Translation Project contributors)
Major changes in 45.rc
=====================
* Avoid slowness when many files are selected (Corey Berla, António Fernandes)
* Make tooltip and menu for Preferences back button not empty (Domenico Iezzi)
* Revert patch which could cause loss of data (Corey Berla, Ondrej Holy)
* Fix sizing and styling of Visible Columns (António Fernandes)
* Change sidebar title (António Fernandes)
* Translation updates (GNOME Translation Project contributors)
Major changes in 45.beta2
=====================
* Feature enhancements:
- New "Search Everywhere" buttons to expand search scope (Allan Day, António Fernandes)
- Modern full-height sidebar layout (Marco Melorio, António Fernandes)
- Refined sidebar sizing and folding treshold (Tobias Bernard, Corey Berla, António Fernandes)
* Performance enhancements:
- Flickerless transition into and from search (António Fernandes)
- Accelerated generation of multiple thumbnail (Khalid Abu Shawarib, Corey Berla)
- Avoid DBus-activating other apps when starting (Corey Berla)
* Bugfixes:
- Delete partially copied file on cancelled copy (Corey Berla)
- Don't restrict shell search results do %HOME (António Fernandes)
- Don't open trash on drag hover (Jakob Landbo)
- Fix multiple search bugs (Khalid Abu Shawarib, Peter Eisenmann, António Fernandes)
- Avoid crashes on search (Khalid Abu Shawarib, Corey Berla)
- Fix "sort after rename" regression (António Fernandes)
- Fix various styling issues (Alice Mikhaylenko)
- Don't allow to resize Properties too small (Automeris naranja)
* Maintenance:
- Disable deprecation warnings, fix other warnings (Peter Eisenmann, Luciano Santos)
* Translation updates (GNOME Translation Project contributors)
Major changes in 45.beta
=====================
* Enhancements:
- Use new navigation view and flat headerbar for Properties (Peter Eisenmann, António Fernandes)
- Don't switch view mode when searching (António Fernandes)
- Don't add search to history stack (António Fernandes)
- Optimize view performance when selecting or removing many items (Corey Berla)
* Bugfixes:
- Prefent mixed-language date and time labels (António Fernandes)
- Multiple starred files view bugfixes (Corey Berla, António Fernandes)
- Context menu capitalization (Alessandro Bono)
* Maintenance:
- Replace some eel API with direct GLib API (Peter Eisenmann)
- Cleanup URI scheme checking (Peter Eisenmann, António Fernandes)
- Use newer async API for creating thumbnails (Khalid Abu Shawarib)
* Translation updates (GNOME Translation Project contributors)
Major changes in 45.alpha
=====================
* Enhancements:
- Boost search performance (Carlos Garnacho, António Fernandes)
- Redesign Visible Columns options, allow changing default columns (Corey Berla, Peter Eisenmann)
- Support dropping images from web pages (Corey Berla)
- Show bytes size as tooltip for folder properties too (Raihan)
- Indicate starred files in grid view (Gary Li)
- Support skipping errors while creating compressed archives (Gary Li)
- Make date and time format more consistent (Allan Day, Venkata Kesav Venna, Ondrej Holy)
- Make Ctrl+F refocus search bar, not cancel search (Khalid Abu Shawarib)
- Adapt sidebar width to window width, and use a breakpoint for adaptiveness (Christopher Davis)
- Allow moving keyboard focus within list rows (Corey Berla)
- Replace GtkComboBox with GtkDropDown (Corey Berla)
- Simplify Keyboard Shortcuts window definition (Sabri Ünal)
- Improve file opening experience while sandboxed (António Fernandes)
* Bugfixes:
- Fix results ordering, and other search bugs (Eric Daigle, António Fernandes, Carlos Garnacho, Khalid Abu Shawarib)
- Fix tooltips, a11y labels, and i18n issues (sunflowerskater, Khalid Abu Shawarib, Automeris naranja, Sabri Ünal)
- Fix sushi integration bugs (Corey Berla)
- Don't hide incompletely deleted folders (Corey Berla)
- Show file renamed to hidden again on undo (Corey Berla)
- Don't state file was "deleted" if it was moved to trash (Sayan Bhattacharjee)
- Fix rubberband range behavior on list view (António Fernandes)
- Respect modifiers when dropping on tabs; disable broken tab drop target on X11 (Corey Berla)
- Fix bugs when reloading on autofs timeouts (Ondrej Holy)
- Don't offer to format volumes which cannot be formatted, e.g. MTP (Ondrej Holy)
- Fix multiple crashes (Corey Berla, António Fernandes)
- Fix multiple leaks (Khalid Abu Shawarib, António Fernandes)
* Maintenance:
- Rename default branch to 'main' (Peter Eisenmann)
- Make libcloudproviders dependency optional again (Ondrej Holy)
- Improve reproducibility (Khem Raj)
* Translation updates (GNOME Translation Project contributors)
Major changes in 44.1
=====================
* Resolve some crashes (Peter Eisenmann, Gary Li, António Fernandes)
* Visual bugfixes:
- Tweak style colors in view items (António Fernandes, Sam Hewitt, Peter Eisenmann)
- Show custom emblems from extensions again (António Fernandes)
- Relayout SELinux property row (Peter Eisenmann)
- Flip switches correctly (Peter Eisenmann)
* Other bugfixes:
- Disable some actions when not useful (Sayan Bhattacharjee, Khalid Abu Shawarib)
- Fix dead characters handling in batch rename dialog (Gary Li)
- Fix crashes when rapidly opening and closing windows (Gary Li)
- Prevent location change when autofs timeouts (Ondrej Holy)
- Fix issues with translations in libadwaita widgets (Peter Eisenmann)
- Drop workarounds for fixed GTK bugs (Corey Berla)
- Fix other issues (Carlos Garnacho, Sebastian Keller, António Fernandes, Corey Berla, Peter Eisenmann, Ondrej Holy)
* Enhancements:
- Dismiss toast on undo (Corey Berla)
- Select right items after some operations (Corey Berla)
- Paste into expanded folders (Corey Berla)
- Allow extraction of .tar.zst and .zstd archives (Ondrej Holy)
- Performance optimization (Sebastian Keller)
* Translation updates (GNOME Translation Project contributors)
Major changes in 44.0
=====================
* Bugfixes:
- Prevent rubberband selection instead of drag and drop (Ondrej Holy)
- Fix critical errors with recent GLib versions (Ondrej Holy)
* Translation updates (GNOME Translation Project contributors)
Major changes in 44.rc
======================
* Bugfixes:
- Fix crashes caused by extra free call (Corey Berla)
- Fix file order after renaming (Corey Berla)
- Fix libadwaita include path (Barnabás Pőcze)
- Fix handling of missing dates from Tracker (Pablo Correa Gomez)
- Cache clock format setting (Corey Berla)
- Try to own dbus name at the correct time (Ondrej Holy)
- Exchange mismatched error messages (Ondrej Holy)
* Translation updates (GNOME Translation Project contributors)
Major changes in 44.beta
========================
* Enhacements:
- Make various appdata and desktop file improvements (Christopher Davis)
- Make rubberband to have rounded corners (sunflowerskater)
- Make several documentation improvements (Corey Berla)
* Bugfixes:
- Fix crashes caused by inverted g_assert condition (Ondrej Holy)
- Fix various drag and drop issues (Corey Berla, Peter Eisenmann)
- Fix several memory leaks (Corey Berla)
- Fix various three expander issues (António Fernandes, Corey Berla)
- Export FileManager1 iface from dbus_register vfunc (Ondrej Holy)
- Fix other issues (Corey Berla, Ondrej Holy, Jeremy Bicha, Athul Iddya)
* Translation updates (GNOME Translation Project contributors)
Major changes in 44.alpha
=========================
* Enhancements:
- Allow expanding subfolders in the list (António Fernandes, Corey Berla)
- Enrich tab context menus (Corey Berla)
- Allow pasting image data into new PNG file (Corey Berla)
- Use pregenerated thumbnails when available, e.g. MTP (Ondrej Holy)
- Add shortcut for Preferences (Sabri Ünal)
- Show full filename in grid, using tooltips (António Fernandes)
- Reintroduce 64px icon size for grid view (António Fernandes)
- Remove upper limit on thumbnailing file size range (Peter Eisenmann)
- Reword "application" to "app" (sunflowerskater)
- Other papercuts (António Fernandes, Hari Rana, sunflowerskater)
* Other bugfixes:
- Avoid many crashes (Corey Berla, Gary li, António Fernandes, Aleksandar Dezelin)
- Fix and improve autorun support (Will Thompson, António Fernandes)
- Fix some drag-and-drop issues (Corey Berla, Liu Yuyang)
- Fix some view focus and selection issues (Corey Berla, António Fernandes)
- Fix properties extensions bugs (António Fernandes)
- Fix memory leaks (Ignacy Kuchciński, António Fernandes)
- Fix building on certain cases (Leonardo Hernández)
- Fix bugs with file operations (Corey Berla, Gary Li, Bastien Nocera)
- Resolve some performance issues (Corey Berla, Jeff Fortin Tam)
- Resolve stuttering scrolling (Corey Berla)
- Save and restore sort column (Corey Berla)
- Launch search from shell correctly (Corey Berla)
- Reimplement view navigation from the previewer (António Fernandes)
- Stop showing � in the type on Properties (Aleksandar Dezelin)
- Stop blocking on the tracker connection (Corey Berla)
- Add missing trailing ellipsis and mnemonics in menus (Gotam Gorabh, Peter Eisenmann)
- Allow opening current view in new tab from sidebar (Colin Kinloch)
- Share settings with GTK4 filechooser (Colin Sane)
- Don't allow hiding name column (Corey Berla)
* Code cleanups
- Drop workarounds for resolved GTK4 issues (Corey Berla)
- Use fewer deprecated GTK 4 API (Corey Berla, Peter Eisenmann)
- Don't use deprecated GLib API (Corey Berla)
- Remove unused obsolete code (Peter Eisenmann, Benjamin Otte, Corey Berla, Antóino Fernandes, Sabri Ünal)
* Translation updates (GNOME Translation Project contributors)
Major changes in 43.0
=========================
* Bugfixes
- Open first search result with Enter, as before (Corey Berla)
- Don't freeze when opening media storage (Corey Berla)
* Translation updates (GNOME Translation Project contributors)
Major changes in 43.rc
=========================
* Resolving regressions from the GTK 3 to 4 switch:
- Restore accessible labels for view items (Corey Berla)
- HiDPI icons and thumbnails (António Fernandes)
- Restore transient location entry behavior (António Fernandes)
- Restore spacebar shortcut to trigger sushi file previewer (António Fernandes)
- Restore ability to create new file from dropped text (Corey Berla)
- Restore ability to duplicate via DND + Ctrl (Corey Berla)
* Drag-and-drop enhancements:
- Allow dropping files into Starred to star them (Corey Berla)
- Prevent "open on hover" while moving pointer (Corey Berla, António Fernandes)
* Menu enhancements:
- Add menu item to remove files from Starred list (Corey Berla)
- Don't activate menu button when clicking folder name (António Fernandes)
- Don't offer "Properties" and "Add to Bookmarks" actions when they don't make sense (Eric Daigle, Corey Berla, António Fernandes)
* Properties enhancements
- Wrap long filename words in Properties (anarchistcat)
- Refine properties for root directory (Corey Berla)
- Show error state for extensions properties (António Fernandes)
* General enhancements
- Redesign trash infobar (Ignacy Kuchciński, Sam Hewitt)
- Add tooltips to every headerbar control (Ronen Margolin)
- Update and modernize libnautilus-extension documentation (Jan Tojnar)
- Update appdata screenshots (Christopher Davis)
* Bugfixes
- Fix various app chooser issues (Corey Berla)
- Fix various batch rename dialog issues (Corey Berla)
- Fix Highcontrast styles (Ignacy Kuchciński, António Fernandes)
- Fix focus misbehaviours in the new views (Corey Berla)
- Don't show URI escape codes in tooltips (Antonio Teixeira)
- Show sharing infobar in gnome-user-share's fallback location (Corey Berla)
- Fix icon size in file conflict dialog (António Fernandes)
- Fix operations indicator animation (António Fernandes)
- Mark missing translatable strings (Sabri Ünal)
- Fix various memory leaks (Ignacy Kuchciński, Corey Berla)
- Fix compilation errors (Jeremy Bicha, Ondrey Holy, Timo)
* Translation updates (GNOME Translation Project contributors)
Major changes in 43.beta.1
==========================
* Restore view options tooltip (António Fernandes)
* Mark new files for translation (Piotr Drąg)
* Look for extensions in their new installation directory (Jeremy Bicha)
Major changes in 43.beta
=========================
* Adapting main window elements to smaller sizes (Christopher Davis);
- Make sidebar foldable.
- Split toolbar contorls into top and bottom toolbars at small sizes.
* Restoring Disks integration (Corey Berla):
- Open storage unit in Disks from Properties.
- Format with Disks from the sidebar context menu.
* Absorbing features from core plug-ins (Corey Brela):
- Provide infobar for Public folder, instead of gnome-user-share
- Provide context menu action to open folders in Console.
- Replace nautilus-send-to extension with Email portal.
* Remodeling plug-ins
- List installed extensions plug-ins in About. (Corey Berla)
- Implement new Properties API and port Image and Audio/Video (António Fernades)
- Remove GTK-dependent API from libnautilus-extension (António Fernandes)
- Bump libnautilus-extension versions.
* Improving search UI design
- Use modern design patterns for type filter chooser (António Fernandes)
- Elaborate FTS snippets and place them in a container (António Fernandes, Alan Day)
* Modernizing Properties window
- Implement new "pages and rows" design (Peter Eisenmann, António Fernandes)
- Move ability to set default app into Open With dialog (António Fernandes, Corey Berla)
* Reorganizing context menus (Allan Day, António Fernandes).
* Refining view visual styles
- Saturate selection colors (Allan Day, Alexander Mikhay)
- Add icon shadows (Jakub Steiner)
- Refine layout of column editor dialog. (Allan Day, António Fernandes)
* Using more modern widgetry
- Use AdwTabBar for detatchable tabs (Alexander Mikhaylenko, António Fernandes, Christopher Davis)
- Use AdwEmptyState for empty folder views (Christopher Davis, António Fernandes).
- Use AdwMessageDialog instead of GtkMessage. (Christopher Davis, Ondrej Holy)
* Resolving regressions from the GTK 3 to 4 switch:
- Restore Accessibility relations (Corey Berla).
- Restore location entry suggestions (Corey Berla).
- Restore libcloudproviders integration (Ondrej Holy)
* Opening new tab with middle click on next and forward buttons (Corey Berla)
* Miscellaneous bugfixes (multiple contributos)
* Translation updates (GNOME Translation Project contributors)
Leftover known regressions in 43.beta
- Lacks HiDPI icons
- Lacks attention-grabbing animation on operations button
Major changes in 43.alpha
=========================
* Resolving regressions from the GTK 3 to 4 switch:
- Reintroduce clipboard with GTK 4 (António Fernandes)
- Reintroduce Drag’n’Drop with GTK 4 (Corey Berla, António Fernandes)
- Reintroduce emblems independently of file icon (António Fernandes)
- Reintroduce filter search tags with GTK 4 (António Fernandes)
- Port audio-video-properties extension to GTK 4 (Corey Berla)
- Restore sidebar features from GTK 3 (Corey Berla)
- Fix other regressions from the GTK 3 to 4 switch (António Fernandes, Noëlle,Óscar Fernández Díaz, Ondrej Holy, Corey Berla, Ákos Horváth, Corey Berla)
* Modernizing view widgets
- Port files grid view mode to GtkGridView (António Fernandes)
- Reimplement files list view mode with GtkColumnView (António Fernandes)
- Add checkerboard background for thumbnails with transparency (Utkarsh Gandhi, António Fernandes)
* Enhancing menus:
- New menu item to open current folder in another application (António Fernandes)
- Add menu item to copy current path to clipboard (Utkarsh Gandhi)
- Redesign zoom controls as icon size controls (António Fernandes)
- Context menu bugfixes (Owen D'Aprile, Ignacy Kuchciński)
- Add context menu item to show Properties in Other Locations (Corey Berla)
- Improve support for context menus on touchscreens
- Show extensions in templates names (Roshan R)
- Show sort menu options in list virw mode (António Fernandes)
- Allow sorting in recent and search (António Fernandes)
* Other enhancements:
- Use better in-app notifications with AdwToast (Christopher Davis)
- Modernize "About" with AdwAboutWindow (Christopher Davis)
- Refine pathbar appearance (Utkarsh Gandhi, António Fernandes)
- Label '/' with the OS name (StarShot)
- Keyboard shortcuts overlay updates (Tero Gusto)
* Miscellaneous bugfixes:
- Search engine bugfixes (Ondrej Holy)
- Floating satus bar bugfixes (Ignacy Kuchciński)
- Fix popover crashes (Corey Berla)
- Allow copying to a ramfs (Alister Sanders)
- Stop computing remote folders item count when didabled (Corey Berla)
- Fix batch rename for files with the same name in search results (Corey Berla)
- Don't trigger keyboard shortcuts ouside their intended scope (Vanadiae)
* Maintenance work
- Adapt to thumbnails API changes (Michael Catanzaro)
- Depend on libportal and drop wallpaper fallback setting (Jeremy Bicha, António Fernandes)
- Modernize build with new meson features (Maximiliano)
- Bump extensions library version (António Fernandes)
* Translation updates (GNOME Translation Project contributors)
Leftover known regressions in 43.alpha
- Lacks HiDPI icons
- Lacks attention-grabbing animation on operations button
Major changes in 42.alpha
=========================
* Improve design of the file renaming UI (Peter Eisenmann, Allan Day)
* Improve visuals of the file conflict UI (Joshua Lee)
* Use GtkBuilder UI definitions for more components (António Fernandes, Apoorv Sachan)
* Fix "Move to"/"Copy to" from Starred (DillyPickly)
* Improve disposition of shell search provider (Marco Trevisan)
* Sort by subtype within type (rajat jain)
* Allow searching by creation time (Nishit Patel)
* Replace deprecated gexiv2 functions (Nishal Kulkarni)
* Fix extension API introspection annotations (Aaron Jacobs)
* Expand on extension API documentation (Aaron Jacobs)
* Add compressed archives to Recent files (Manny)
* Preparations for GTK 4 switch (Ernestas Kulik, António Fernandes, Matt Jakeman, Álvaro Costa, Suhaas Joshi)
* Complete the GtkFlowBox-based grid view (António Fernandes)
* Remove EelCanvas-based grid view (António Fernandes)
* Improve design of the path bar (António Fernandes)
* Fix geographical coordinates displayed format (Michael von Gunten)
* Port to GTK 4 (António Fernandes)
* Fix some GTK 4 switch regressions/warnings (António Fernandes, Ondrej Holy)
* Translation updates (GNOME Translation Project contributors)
Known major regressions in 42.alpha
- Lacks Drag-and-Drop interatcion
- Lacks clipboard interaction
- Lacks HiDPI icons
- Lacks MIME-type icons in list view
- Has poor performance for large directories in grid view
- Lacks attention-grabbing animation on operations button.
- Doesn't display emblems
- Doesn't display file filters as tags
- Lacks "Format" context menu item in sidebar
- Lacks Audio/Video properties page
Major changes in 41.1
=====================
* Cache Scripts and New Document menus to avoid lags (António Fernandes)
* Ellipsize subtitle label in trash bar to reduce minimum width (António Fernandes)
* Fix build with meson 0.60.0 (Albert Vaca Cintora)
* Don't change action when unchecking in File Conflict dialog (António Fernandes)
* Fix progress reporting when skipping during extraction (Ondrej Holy)
* Offer skipping in case of extraction failure only when there are more files (Ondrej Holy)
* Remove leftover files after extraction failure (Ondrej Holy)
* Set keyboard focus on the row with the selected archive format (Clyde Laforge)
* Translation updates
Major changes in 41.0
=====================
* Translation updates
Major changes in 41.rc
=========================
* Disable background "Properties" while searching (Felipe Borges)
* Don't duplicate set wallpaper when not using portal (Barnabás Pőcze)
* Translation updates (GNOME Translation Project contributors)
Major changes in 41.beta
=========================
* Fix comma placement in the floating status bar (Nick Montalbano)
* Use standard::edit-name attribute where appropriate (Anubhav Tyagi)
* Bring "Open with..." options together in context menu (Luis Bosque)
* Fix "Compress..." acting on file that was not the selected one (Anubhav Tyagi)
* Redesign "Compress..." dialog (Ondrej Holy, Allan Day)
* Provide creation of password-protected ZIP archives (Ondrej Holy)
* Fix search by date not working with Tracker engine (Nishit Patel)
* Add link to Privacy Settings from Trash (Eric Daigle)
* Indicate whether trash automatic emptying is enabled (Eric Daigle)
* Translation updates (GNOME Translation Project contributors)
Major changes in 41.alpha
=========================
* Replace deprecated gexiv2 symbols (Ondrej Holy)
* Make NautilusWindowSlot non-derivable (António Fernandes, Ernestas Kulik)
* Prevent closing popover when "Show Hidden Files" is toggled (Rodrigo Pedro)
* Hand preview updating over to FilesView (António Fernandes)
* Provide source .svg icon (Jakub Steiner)
* Fix missing "Open Scripts Folder" menu item (Ondrej Holy)
* Prevent reopening of previewer on window focus (Felipe Borges)
* Keep working directory when executing scripts (António Fernandes)
* Translation updates
Major changes in 40.1
=====================
* Fix File conflict dialog crashes on extensionless filenames (António Fernandes)
* Fix crashes when extracting encrypted archives (Ondrej Holy)
* Fix duplicated context menu entries for RAR archives (Marcos Simental)
* Translation updates
Major changes in 40.0
=====================
* Translation updates
Major changes in 40.rc
======================
* Group files depending on the opening app (Bastien Nocera, António Fernandes)
* Fix crashes when closing the last tab (António Fernandes)
* Revert text-based clipboard workaround and use the dedicated type again (António Fernandes)
* Use GNOME 40 empty view styling (Christopher Davis, António Fernandes)
* Translation updates
Major changes in 40.beta
========================
* Improve tab completion in the location entry (James Westman, António Fernandes)
* Make manual rename more convenient in File conflict dialog (António Fernandes)
* Add support for extracting password-protected archives (Felipe Borges, Ondrej Holy)
* Implement new single-page design of Preferences dialog (Adrien Plazas, António Fernandes)
* Use libhandy for window and headerbar (Christopher Davis, Adrien Plazas)
* Fix detection and handling of remote files (António Fernandes)
* Fix progress reporting in various cases (Ondrej Holy, Sachin Daluja)
* Fix Batch rename dialog crashes (Sachin Daluja)
* Preserve mtime of non-empty directories on move (Maxim Mikityanskiy)
* Translation updates
Major changes in 40.alpha
=========================
* Add support for creation date (António Fernandes)
* Fix several memory leaks (António Fernandes)
* Do not use default location instead of root in path bar (Ondrej Holy)
* Don't save window state when tiled (Elias Projahn)
* Search for tracker3 in PATH (Antoine Jacoutot)
* Use xdg-desktop-portal for setting wallpapers (Felipe Borges)
* Handle rotated images in Preferences dialog (James Westman)
* Fix Batch rename dialog crashes (Ondrej Holy)
* Fix double-click row check (António Fernandes)
* Translation updates
Major changes in 3.38.1
* Update starred URIs on move & rename (António Fernandes)
* Prevent recursion to speed up emptying trash (Ondrej Holy)
* Prevent stale items to be shown in starred view (António Fernandes)
* Revert icon emblem fixes in order to prevent performance issues (António Fernandes)
Major changes in 3.38.0:
* Fix missing Extract/Compress menu items (António Fernandes)
* Translation updates
Major changes in 3.37.92:
* Port to Tracker 3 (Sam Thursfield)
* Translation updates
Major changes in 3.37.91:
* Fix batch renaming using metadata (Max)
* Translation updates
Major changes in 3.37.90:
* Port Properties dialog to GtkBuilder including various enhancements (Apoorv Sachan, António Fernandes)
* Prevent crashes when file operation is cancelled (Ondrej Holy)
* Auto-escape filenames on NTFS and exFAT mounts (ignapk)
* Preserve navigation history after opening Other Locations (Sachin Daluja)
* Use g_clear_signal_handler instead of custom codes (Joshua Lee)
* Translation updates
Major changes in 3.37.3:
* Allow changing file owner under admin:/// scheme (Apoorv Sachan)
* Update outdated appdata info (Ondrej Holy)
* Translation updates
Major changes in 3.37.2:
* Fix broken tracker search engine under some locales (Cristiano Nunes, António Fernandes)
* Use tabular numbers for progress info (Diego Escalante Urrelo)
* Disable select-all while directory is loading (Ujjwal Kumar)
* Add newly created files to Recent (Sachin Daluja)
* Port to new PackageKit DBus API (Romeo Calota)
* Translation updates
Major changes in 3.37.1.1:
* Prevent jump to the old scrolling position after changing location (António Fernandes)
* Add org.gnome.Nautilus.FileOperations2 interface (Alberts Muktupāvels)
* Fix content type detection when opening files from remote locations (Ondrej Holy)
* Show notification on completion of file transfers if the window isn't focused (Sachin Daluja)
* Add support for zoom media keys (Sabri Ünal)
* Add dynamic tooltip for the toggle views button (Ujjwal Kumar)
Major changes in 3.37.1:
* Always show pathbar background to fix styling glitches (António Fernandes)
* Fix check to not clear clipboard after each move/copy operation (Artem Serostanov)
* Ignore hidden directories in the templates folder (Ondrej Holy)
* Add several missing shortcuts to the Keyboard Shortcuts dialog (Sabri Ünal)
* Unify pathbar and background context menus (Sachin Daluja)
* Refactor menu handling to fix repeated popover animations (António Fernandes)
* Mark Empty Trash and Delete All buttons as destructive actions (Alexey Chernyshov)
* Show infobar to allow installation of OSTree software (Philip Withnall)
* Honor umask when creating new files from templates (Ondrej Holy)
* Fix endless content size calculations in properties dialog (Ondrej Holy)
Major changes in 3.36.0:
* Translation updates
Major changes in 3.35.92:
* Fix crashes often happening when searching (Ondrej Holy)
* Say "Trash is Empty" only in the root of trash folder (Abdul Rauf)
Major changes in 3.35.91.1:
* Add support for hidden template files (Ondrej Holy)
* Fix conflict dialog for google-drive (Ondrej Holy)
Major changes in 3.35.90:
* Fix crashes after conflict dialog response (Ondrej Holy)
* Add support for numeric keypad for zooming (Sabri Ünal)
* Fix missing filename results when searching (Ondrej Holy)
* Fix compilation on Wayland-only systems (Javier Jardón)
Major changes in 3.35.2:
* Don't use hyphens when breaking filenames in multiple lines (António Fernandes)
* Fix drag and drop on scaled displays (Robert Mader)
* Add and use new icon for the development profile (Jakub Steiner, António Fernandes)
* Fix criticals and crashes when closing properties dialog (Ondrej Holy)
* Fix opening file previews in Sushi (Jan Alexander Steffens)
* Fix criticals after trashing file (Ondrej Holy)
Major changes in 3.34.0:
* Fix emblems not appearing on files in some cases (Colin Atkinson)
* Respect recursivity setting in shell search provider (Jiří Černý)
* Make recursive permission changes apply only to children (Carlo Lobrano)
Major changes in 3.33.90:
* Add tooltip to view menu button
* Show warning in read-only directories when pasting files (George Mocanu)
Major changes in 3.32.0:
* Much smoother search, no more hang ups (Xiang Fan)
Major changes in 3.31.90:
* New path bar design that improves discoverability of buttons (Carlos Soriano)
* Improve high contrast layout for accesibility (Jordan Petridis)
* New Nautilus icon (Jakub Steiner)
* Add coverage report (Carlos Soriano)
* Fix crashes (Antonio Fernandes, Ernestas Kulik, Marco Trevinho)
* Remove app menu (Peter)
* Add issue triaging automation (Carlos Soriano)
* Make CI centralized (Jordan Petridis)
* Make starred files feature available on Tracker tracked directories (Carlos Soriano)
Major changes in 3.30.0:
* Nothing new, enjoy 🍹
Major changes in 3.29.92:
* Revert showing search filter popover on ctrl-f (António Fernandes)
* Add more tests (Alexandru Fazakas) (woo!)
* Replace ambiguous slash with trash icon in path bar (Yi-Soo An)
* Fix path bar buttons not working with keyboard (António Fernandes, Carlo Lobrano)
* t (Carlos Soriano)
* Fix crash when opening broken bookmarks from other locations (Ernestas Kulik)
* Add warning about exceeded file name limit when renaming, etc. (António Fernandes)
* Add plumbing for desktop extension (clipboard, undo/redo, etc.) (Carlos Soriano)
* Tweak path bar styling (António Fernandes, Alexander Mikhaylenko, Jakub Steiner)
Major changes in 3.29.90.1:
* Flatpak improvements. Improved user facing experience and developer experience (Ernestas Kulik, Carlos Soriano)
* CI & CD set up. Increases stability, buildability and feedback cycle (Jordan Petridis, Ernestas Kulik, Carlos Soriano)
* Distribute icons horizontally in the icon view (Nikita Churaev)
* Implement new pathbar/search design (Allan Day, Antonio Ferndandes, Piotr Drag, Carlos Soriano)
* Implement new toolbar menus design (Carlos Soriano)
* Add background actions to the path bar (Carlos Soriano)
* Get background work ready for gtk4 port (Ernestas Kulik)
* Add recent search engine (Marco Trevisan)
* Implement tests for Nautilus most critical operations (Alexandru Fazakas)
* Show Recency column in recent view (Rahul Verma)
* Avoid recursivity in symbolic links (Ernestas Kulik)
* Add a button in properties dialog to open GNOME Disks (Rahul Verma)
* Add touch support for menus in views (Jan-Michael Brummer)
* Fix error when accesing a file with x-nautilus-search (Rahul Verma)
* Allow right clickin expanders (Alexandru Fazakas)
* Allow trashing/deleting Desktop dir (Antonion Fernandes)
* Improve about dialog visuals (Juraj Fiala)
* Fix path bar changing size when navigating (Nikita Churaev)
* Fix MB/MiB confusion in preferences dialog (Christophe Fergeau)
* Fix openning files failing from other applications in some cases due to DBus race (Ernestas Kulik)
* Implement devel style to differentiate development builds (Carlos Soriano)
* Improve handling for impaired (Joanmarie Diggs, Peter Vagner)
* Fix wrong labels and file count in operations progress (Antonio Fernandes)
* Remove special treatment for desktop files (Carlos Soriano)
* Remove special treatment for computer:/// (Carlos Soriano)
* Fix triggering maximum file name when renaming (Ernestas Kulik)
* Open search filters with popover open when using <ctrl>f (Stratila Andrei)
* Expose active windows for Ubuntu dash support (Philip Langdale)
* Show "Open With" for files in trash (George Mocanu)
* Provide more information in prperties dialog for files in trash (George Mocanu)
* Implement showing properties of current view from path bar (Wong Heung Sang)
* Avoid fuzzy icons in small sizes (Sam Hewitt)
* Warn if the renamed file will be hidden once renamed (Yash Jain)
* Improve and fix visuals in the new views (Carlos Soriano)
* Add show sidebar setting to the preferences dialog (Carlos Soriano)
* Remove experimental views UI setting in preferences dialog (Carlos Soriano)
Major changes in 3.28.0:
* Fix build failure (Ernestas Kulik)
* Translation updates
Major changes in 3.27.92.1:
* Fix build failures (António Fernandes, Ernestas Kulik)
* Break the build (Ernestas Kulik)
Major changes in 3.27.92:
* Don’t open files when double-clicking star icon (Alexandru Fazakas)
* Fix crashes caused by extremely long error messages (Ernestas Kulik)
* Don’t strip extensions from folder names in “Compress…” dialog (Rahul Verma)
* Set keyboard focus when programmatically selecting in list view (António Fernandes)
* Remove new folder name suggestion when there is an active selection (Alexandru Fazakas)
* Hide thumbnails when using small icons (Alexandru Fazakas)
* Reduce help overlay size (Carlos Soriano)
Major changes in 3.27.90:
* Enable closing tabs by middle-clicking (Carlos Soriano)
* Rename “favorite” files to “starred” (Carlos Soriano)
* Fix starring files with special characters (Carlos Soriano)
* Ellipsize tab labels less aggressively for large numbers of tabs (António Fernandes)
* Fix infinite loop when extracting encrypted archives (Ernestas Kulik)
* Remove support for external bulk rename tools (Carlos Soriano)
* Only show option to star files in indexed locations (Carlos Soriano)
* Fix batch renaming for files with special characters in metadata (Ernestas Kulik)
* Refactor extension library (Ernestas Kulik)
* Show notification when unstarring files and allow undo (Carlos Soriano)
* Fix AppStream metadata being installed in a deprecated location (Jeremy Bicha)
Major changes in 3.27.4:
* Better touch support (Jan-Michael Brummer, Antonio Fernandes)
* Remove desktop icons (Ernestas Kulik, Antonio Fernandes, Carlos Soriano)
* Add a close button for the path bar (Karuna Grewal)
* Improve Flatpak support, now access to devices too (Carlos Soriano)
* Improve trash performance (Ondrej Holy)
* Improve window default position (Ernestas Kulik)
* Improve starring files reliability (Alex Pandelea)
* Add Microsoft Office types for search (Carlos Soriano)
* Fix crash when detaching tabs (Nelson Benitez)
* Add XF86Back and XF86Forward as key shortcuts (Antonio Fernandes)
* Add keyboard navigability to the new views (Ernestas Kulik)
* Make wallpaper folder translatable (Carlos Soriano)
* Forbid more characters for FAT systems when renaming files (Ernestas Kulik)
* Add DjVu as pdf type (Carlos Soriano)
* Fix crash when expanding folders (Antonie Fernandes)
Major changes in 3.27.2:
* Add starring files (Alexandru Pandelea)
* Fix timestamps for files in the future (Pete Bantock)
* Never soft folders before files in search (Antonio Fernandes)
* Remove fts setting from preferences (Alexandru Pandelea)
* Reveal item when opened from the recent view (Nelson Benitez)
* Fix crash when expanding folders in list view (Antonio Fernandes)
Major changes in 3.26.0:
* Translations
Major changes in 3.25.92:
* Fix desktop file parsing errors (Jeremy Bicha)
* Bump GTK+ dependency version to 3.22.6 (António Fernandes)
* Add mnemonic to replace button in file conflict dialog (Martin Bříza)
* Show prefix matches first when searching (Alexandru Pandelea)
* Enable keyboard navigation in search type list (Ernestas Kulik)
* Fix list view column picker not being centered in certain locales (Robert Mibus)
* Make the path bar a drop target for files again (António Fernandes)
* Make sidebar visibility setting persistent (Jason Crain)
* Use spin button for thumbnailable file size limit setting (Vyas Giridhar)
* Only allow directories to be dragged onto sidebar for bookmarking (Nelson Benítez León)
* Make path bar clicks add new history entries (António Fernandes)
* Allow hiding unfocused search bar by pressing Escape (Ernestas Kulik)
* Hide location entry after losing keyboard focus (Ernestas Kulik)
* Allow deleting files with numpad delete key (António Fernandes)
* Forbid overwriting directories with files (Ernestas Kulik)
Major changes in 3.25.90:
* Fix use of return key for conflict dialog (Evgeny Shulgin)
* Fix use of return key when searching not activating the selected file (Alexandru Pandelea)
* Add stable Flatpak builds (Carlos Soriano)
* Fix wrapping file names after a dot (Jeremy Bicha)
* Use header bar for all dialogs (Carlos Soriano)
* Use portals for launching files in a sandbox with Flatpak (Ernestas Kulik)
* Show error on empty name on batch rename dialog (Diana Grecu)
* Change keyboard shortcuts for navigation of tabs similar to Firefox/Chrome etc. (Ernestas Kulik)
* Add a restore tab funcionality, similar to web browsers (Alexandru Pandelea)
* Fix rubberband with Wacom tablets (Jason Gerecke)
* Add Full Text Search (fts) to Nautilus so we search inside files content too (Alexandru Pandelea)
* Disable create link when clipboard is empty (Tiberiu Lepadatu)
* Disable zoom button if percentage is 100% (Diana Grecu)
* Bump Tracker dependency to version 2.0 (Carlos Garnacho)
* Make Tracker a hard dependency (Bastian Nocera)
* Assume Nautilus project is GPL3+ (Carlos Soriano)
* Allow decompressing archives on remote locations (Bastian Nocera)
* Add license to Nautilus extensions (Ernestas Kulik)
* Only use location in description for GNOME Shell search (Florian Mullner)
* Add tablet pad controllers for common actions (Carlos Garnacho)
* Fix <ctrl>+z when renaming a file not undoing the text (Ernestas Kulik)
* Use upstream and newer fallback icons (Ernestas Kulik)
* Provide mime type support for compressed archives, so Nautilus can be used for handling compressed archives outside of Nautilus too (Carlos Soriano)
Major changes in 3.25.1:
* Ported to Meson build system (Ernestas Kulik)
* Fix replacing directory with symlink (echo-devim)
* Focus when a new folder is created (Kevin Lopez)
* Do not consider directory names with dots as extensions (Evgeny Shulgin)
* Fix move to/copy to when searching (Alex Pandelea)
* Various fixes to the new experimental views (Carlos Soriano)
* Fix scripts order in submenu (Carlos Soriano)
* Fix open in new tab/window in Other Places (Carlos Soriano)
* Show new networks available while in Other Places view (Georges Basile Stavracas Neto)
* Avoid extraction of files if not enough space (Vyas)
* Fix not being able to drag the window from the path bar (Carlos Soriano)
* Add user preference for using the new views (Carlos Soriano)
* Fix DnD when using Google Drive (Ondrej Holy)
Major changes in 3.24.0:
* Translations
Major changes in 3.23.92:
* Fix count progress in operations when skipping files (Ernestas Kulik)
* Improve meson build (Ernestas Kulik)
* Selection and menus fixed for the experimental icon view (Carlos Soriano)
* Make Nautilus work with Flatpak and Builder (Carlos Soriano)
Major changes in 3.23.91:
* Fix long-time, hard to reproduce, and common crash on desktop with "auto layout" icons (Alex Pandelea)
* Port building system to meson (Ernestas Kulik)
* Make F2 toggle between selection modes, full file name or only file name withouth extension (Ernestas Kulik)
* Recent files are now always files that only the user used, rather than any program/daemon like Dropbox updating the access time (Carlos Soriano)
* Fix Nautilus tests with extexnsions points (Jan Tojnar)
* Fix crash on desktop when refreshing (Alex Pandelea)
Major changes in 3.23.90:
* Add <ctrl> Return as shortcut to open selected folder in new window (Felipe Borges)
* <ctrl> N now opens the window in the same location as the current view (Felibe Borges)
* Fixes on managing menus with keyboard (djb)
* Remove unused <ctrl> B shortcut (Jeremy Bicha)
* Use a better empty state for trash (Mohammed Sadiq)
* Fix floating bar hide on hover when using tabs (Ernestas Kulik)
* Syncronize gtk+ and Nautilus setting for sorting the folder first (Felipe Borges)
* Select entire names for folder when renaming (Razvan Chitu)
* Support to open folders withouth permission using polkit and the admin backend (Carlos Soriano)
* Fix trash operations progress report (Carlos Soriano)
* Improve performance setting metadata only when necesary (Carlos Soriano)
* Fix progress reporting when copying (rpm-build)
* Prevent toolbar menu dissapearing when "Hidden files" menu item is toggled (Neil Herald)
* Update app icon (Jakub Steiner, Lapo Calamandrei)
* Fix icon scale computation when changing DPI (Lionel Landwerlin)
* Add <ctrl> M as alternate shortcut for renaming for those laptops withouth "f" keys (Cristian Nancu)
* Fix crash when pressing enter on search (Alexandru Pandelea)
* Fix failed build with tracker disabled (Ernestas Kulik)
* Ask the user for using desktop files from unknown sources (Carlos Soriano)
* Improve the operations button animation in order to not need to show the operations popover (Carlos Soriano)
* Add an experimental icon view based on flow box with extra niceties under a gsetting preference (Carlos Soriano)