-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEWS
More file actions
2795 lines (2284 loc) · 102 KB
/
Copy pathNEWS
File metadata and controls
2795 lines (2284 loc) · 102 KB
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 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)
Major changes in 3.22.1:
* Multiple batch renaming fixes (Alex Pandelea, Carlos Soriano)
* Multiple compression integration fixes (Razvan Chitu, Carlos Soriano)
* Fix not showing "eject" and other options for devices in the context menu in the desktop (victoryang)
* Rework clipboard handling, fixing desktop<->Nautilus interaction (Carlos Soriano)
* Fix overlaping icons on desktop in some cases, noticeabily in Ubuntu (Ian Lane)
* Fix wrong progress information in operations when skipping files (Razvan Chitu)
* Fix gnome-shell search only searching for whole words (Jiri Cerny)
* Show location as default for list view on Recent (Carlos Soriano)
* Fix context menu position in Wayland or other non-global coordinates systems (Carlos Soriano)
* Update man page of nautilus (Ernestas Kulik)
* Add revealer for warnings in batch rename dialog (Lavinia Stefania)
* Add tooltips to batch rename dialog file names (Alex Pandelea)
* Port nautilus classes to G_DECLARE (Lavinia Stefania)
* Extend Nautilus File API for regular files (Neha Yadav)
* Don't crash for simple leaks on the views (Carlos Soriano)
Major changes in 3.22.0:
* Increase gtk+ depencency version (Michael Biebl)
Major changes in 3.21.92:
* Fix libgd warning (Bastien Nocera)
* Numerous batch renaming improvements and fixes (Alex Pandelea, Carlos Soriano)
* Detect .bz and .xz as extensions for renaming (Alex Pandelea)
* Fix operations popover too small (Ernestas Kulik)
* Add dummy --no-desktop option so Dropbox plugin works again (Carlos Soriano)
* Fix build when using the --disable-tracker compile time option (Carlos Soriano)
Major changes in 3.21.91:
* Implement batch renaming tool (Alex Pandelea)
* Implement compressed files support (Razvan Chitu)
* Rework the view menus (Neil Herald)
* Separate desktop handling from Nautilus (Carlos Soriano)
* Add missing cut shortcut (Pedro Beja)
* Add <ctrl>= as "zoom in" shortcut (Ernestas Kulik)
Major changes in 3.20.3:
* Support HDPI in desktop margins (Andrea Azzarone)
* Fix opaque desktop background after changing themes (Ernestas Kulik)
* Fix gnome-shell search not providing results or making the CPU at 100% even if closed (Carlos Soriano)
Major changes in 3.20.2:
* Fix white desktop background after changing themes (Sebastien Keller)
* Improve double click detection (Johannes Oertel)
* Fix path bar menu on wayland appearing on random places (Olivier Fourdan)
* Only save zoom level if the level has changed (Mike Gorse)
* Fix date difference calculation for attributes like Modified Date (Ernestas Kulik)
* Hide floating bar on hover (Carlos Soriano)
* Fix detection of remote systems for not thumbnailing (Ernestas Kulik)
* Fix sorting on Japanese locale (Ernestas Kulik)
* Fix gnome shell search provider not being recursive (Carlos Soriano)
* Fix copy operation lags (Razvan Chitu)
* Avoid unresponsiveness when file chooser is opened (Ernestas Kulik)
* Fix renaming duplicated logic on search and recent (Ernestas Kulik)
* Fix trash handling to delete files if disk is full (Mario Sanchez Prada)
Major changes in 3.20.1:
* Fix crash if using scripts (Carlos Soriano)
* Fix shortcuts to change views mode (Razvan Chitu)
* Do not switch focus to created tabs (Razvan Chitu)
* Fix margins on sidebar context popover (Sebastian Bacher)
* Fix the empty states icons blocking clicks for activating context menus (Georges Basile Stavracas)
* Show same name in the path bar as in other locations when using mounts (Razvan Chitu)
* Make more dialogs modal (Ernestas Kulik)
* Allow "move to" action in network locations (Carlos Soriano)
* Fix crash when searching and closing with multiple windows (Carlos Soriano)
* Fix path bar not updating to the new location when finalizing search (Carlos Soriano)
* Show an error dialog on falied connection to servers in the other locations view (Ernestas Kulik)
* Fix odd empty operations popover (Neil Herald)
* Fix hamburguer menu action not being available when closing a tab (Carlos Soriano)
* Select first item in the views only when searching (Carlos Soriano)
* Fix crash when creating a new window of nautilus from the shell when the application was not running (Carlos Soriano)
* Allow more applications to be set as default in network locations (Carlos Soriano)
* Make renamed or created files scroll the view to the position of the files (Carlos Soriano)
Major changes in 3.20.0:
* Improve path bar sliders sizing, making them less prominent (Carlos Soriano, Lapo Calamandrei)
Major changes in 3.19.93:
* Use better arrows for the path bar (Carlos Soriano)
sMajor changes in 3.19.2:
* Show free space in Other Places (Georges Stravacas)
* Add shortcuts window (Felipe Borges)
* Fix new window Gnome Shell dash item (Carlos Soriano)
* Add kudos data for Gnome Software (Cosimo Cechi)
* Check availability of PackageKit for installing extra apps (Cosimo Cechi)
* Fix overflow in 32 bits systems (Sebastian Bacher)
* Fix renaming popover misplaced in the desktop (Iain Lane)
* Fix blank square in the view after changing view modes or locations (Carlos Soriano)
* Fix crash when clicking preferences (Carlos Soriano)
* Widespread work on removing leaks, that usually causes crashes (Carlos Soriano)
* Operations start visibility improved, showing the popover (Carlos Soriano)
* Fix wrong date calculation (Carlos Soriano)
* Fix another issue with nautilus opening location in the wrong window (Carlos Soriano)
* Fix "move to" action (Carlos Soriano)
* Show SD cards and external hard drives in the sidebar, not in the Other Places view (Carlos Soriano)
* Fix nautilus not opening a new window when used from command line (Carlos Soriano)
* Fix crash using samba (Iain Lane)
* Allow 3rd party themes to tweak operations button color (Elias Aebi)
* Fix recurrent crash when closing Nautilus (Debarshi Ray)
* Avoid empty operations popover (Carlos Soriano)
* Fix nautilus opening locations in a different window than the one the user is using (Carlos Soriano)
* Fix Other Places lock ups (Benjamin Otte & Emmanuelle Bassi)
* Adapt rename entry to the width of the file and increase the minimum (Carlos Soriano)
* Increase max width of operations popover to fix ellipsize translations (Carlos Soriano)
* Fix recurrent crashers (Carlos Soriano)
Major changes in 3.18.1:
* Multiple crash fixes (Carlos Soriano)
* Use GtkPlacesSidebar hints to improve drag and drop experience (Carlos Soriano)
* Fix remote filesystem check for google drive (Carlos Soriano)
* Fix properties not being available on some file systems (Carlos Soriano)
* Fix not being able to trash on some file systems (Carlos Soriano)
* Fix calculation of operations button that was not showing soon enough in big operations (Carlos Soriano)
* Get filesystem type asynchronously, so the view is never frozen (Carlos Soriano)
* Make the delete shortcut also work for delete permanently on filesystem that does not support trash (Carlos Soriano)
Major changes in 3.18.0:
* Fixed various sidebar crashes (Carlos Soriano)
* Use a correct file number for copy/move operations (Carlos Soriano)
* Fix various operations crashes (Carlos Soriano)
* Google Drive support (Debarshi Ray)
* Fix desktop icons not appearing for the first time (Carlos Soriano)
* Fix searching on recursive mode but not working properly (Carlos Soriano)
* Fix remote warning label not showing sometimes (Carlos Soriano)
* Use better file renaming positioning when using keyboard shortcut (Andreas Reis)
* Fix a crash on Other Locations (Mathias Clasen)
Major changes in 3.17.91:
* Ground work for code isolation and clean up of views (Carlos Soriano)
* Don't add more items on the filechooser sidebar (Carlos Soriano)
* Adjust animation for progress button (Jakub Steiner)
* Track and fix all translation issues (Piotr Drag, Alexander Franke, Carlos Soriano)
* Improvements and fixes in the new "Other Locations" view (Carlos Soriano)
* Disable sorting on Recent and Search and ensure criterion correcteness (Carlos Soriano)
* Add a preference and disable by default automatic opening of folders while hovering on drag an drop operations (Carlos Soriano)
* Don't search recursively on remote locations, and provide feedback when that happens (Carlos Soriano)
* Fix major crashers and races (Carlos Soriano)
Major changes in 3.17.90:
* Don't show sort menu on search (Carlos Soriano)
* Use watch cursor with pointer (Carlos Soriano)
* Use popover for renaming (Carlos Soriano)
* Improve operations button feedback (Carlos Soriano)
* Code isolation of the model and view of nautilus (Georges Basile Stavracas Neto)
* Add a new "other places" view for networks and internal partitions (Georges Basile Stavracas Neto)
Major changes in 3.17.3:
* Ignore no desktop if not firt launch (Chow Loong Jin)
* Make the toolbar menu settings the only and permanent settings (Carlos Soriano)
* Use Modified Time for all locations except Recent (Carlos Soriano)
* Implement new design for operations feedback (Carlos Soriano)
* Hide sort menu on Recent (Carlos Soriano)
* Switch to list view if searching (Carlos Soriano)
* Provide smarter location displayed names (Carlos Soriano)
* Show feedback when there is no search results (Carlos Soriano)
* Fix floating bar loading feedback (Carlos Soriano)
* Add feedback when the current shown folder is empty (Carlos Soriano)
Major changes in 3.17.2:
* Fix window focus issues when starting nautilus (Carlos Soriano)
* Fix handling of command line options in diferent cases (Carlos Soriano)
* Decrease the padding on list view (Carlos Soriano)
* Use a dialog for creating folders (Georges Basile Stavracas Neto)
* Use a dialog for renaming files (Carlos Soriano)
* Allow F5 and ctrl+r as shortcuts for refresh the view (Carlos Soriano)
* Make the zoom slider the preference itself (Carlos Soriano)
* Allow opening with a different app than default for multiple files (Carlos Soriano)
* Fix view scrolling when selecting with ctrl + mouse (Georges Basile Stavracas Neto)
* Don't always make the sidebar visible on start (Antonio Fernandes)
* Allow opening folders with another app (Carlos Soriano)
* Show Delete Permanently on systems that does not support Trash (Carlos Soriano)
* Add Alt<down> shorcut for opening
* Fix some icons sizes inconsistency (Cosimo Cechi)
* Add public API documentation for Nautilus extensions (Cosimo Cechi)
* Add a gsetting to toggle recursive search (Felipe Borges)
Major changes in 3.16.0:
* Support multiple desktop names in XDG_CURRENT_DESKTOP (Dmitry Shachnev)
* Workaround distcheck (Carlos Soriano)
Major changes in 3.15.92:
* Fix double-clicking on password-protected webdav share, not showing the password dialog (Ross Lagerwall)
* Don't create desktop on protocols diferents than X11 (Carlos Soriano)
Major changes in 3.15.91:
* Dimmed labels for list columns (Cosimo Cechi)
* Fix new folder shortcut (Georges Basile Stavracas Neto)
* Fix delete shortcut in the trash (Carlos Soriano)
* Don't use libgd notifications and implement them with Gtk+ (Carlos soriano)
* Don't show notifications in desktop (Carlos Soriano)
* Esc shortcut for exiting search mode (Georges Basile Stavracas Neto)
* Fix translation problems with notifications (Carlos Soriano)
* Fix cluttered desktop icons due to the icon size changes (Carlos Soriano)
* Make toolbar buttons accesible for A11y (Carlos Soriano)
* Fix open with another app for multiple selection (Isaac Ge)
Major changes in 3.15.90:
* Bug fixes and clean ups for the GAction port (Cosimo Cechi)
* Add path as description of the Gnome shell provider (Carlos Soriano)
* Add in app notification when deleting items (Carlos Soriano)
* Set move to trash shortcut to just the Delete key (Carlos Soriano)
* Avoid hiding the search on small windows (Cosimo Cechi, Carlos Soriano)
* Improve file operations dialogs UI (Carlos Soriano)
* Show a warning dialog when the user uses the old move to trash shortcut (Carlos Soriano)
* Improve list view columns (Carlos Soriano)
* Add a new modified column with the time (Carlos Soriano)
Major changes in 3.15.4:
* Port to GAction
* Rework menus and zoom levels
* Use monospace font for permissions column (Matthias Clasen)
* Port to GNotification (Florian Müllner)
* Stop loading custom accel maps file
* Use inline toolbar for column chooser dialog (Robert Roth)
* Fix new window activation with desktop icons enabled
* Fix regression with --new-window option (Lubomir Rintel)
* Use mount name if available for file operations progress report
* Set max-width for value labels in properties (Lars Uebernickel)
* Increase default window width (Michael Catanzaro)
Changes in 3.14.0:
* Translation updates
Major changes in 3.13.92:
* Improve toolbar and pathbar styling with GTK 3.14
* Expand properties dialog notebook in its parent container
* Fix crash when using the rename field context menu in list view
* Fix crash when using a screen reader in canvas view
* Fix crash when changing icon captions setting (Volker Sobek)
Major changes in 3.13.91:
* Performance improvements for canvas and list views
* Remove duplicate actions in gear menu when app menu is not in use
* Fix CSS style for new GTK (Lapo Calamandrei, Alex Diavatis, António Fernandes)
* Fix handling of sort-directories-first setting (Matthias Clasen)
Major changes in 3.13.90:
* Fix problems with fast group/owner changes
* Fix user list for owner changes
* Use margin-start/end instead of deprecated margin-left/right
* Fix floating bar CSS style after Adwaita GTK move
* Fix build glitch with enums file (Volker Sobek)
* Translation updates
Major changes in 3.13.2:
* Fix a missing unref (Robert Ancell)
* Fix a crash in selection handling (Iain Lane)
* Use header bar for properties dialog (Matthias Clasen)
* Use new gear menu icon (Matthias)
* Include application-specific theming for Adwaita (Matthias)
* Share pathbar styling with GTK+ (Matthias)
* Translation updates
Major changes in 3.13.1:
* Port to be a DBusActivatable application
* Fix a crash when switching back from the trash folder
* Do not use legacy emblem names (David King)
* Sync the GTK+ setting for sort-directories-first (Matthias Clasen)
* Fix crash when enumerating windows (Robert Ancell)
* Use spaces between em dashes in file operations (Ross Lagerwall)
* Use headerbar in bookmarks window (Yosef Or Boczko)
* Fix arrow in connect server dialog for RTL languages (Yosef Or Boczko)
Major changes in 3.12.0:
* Translation updates
Major changes in 3.11.92:
* Only show one button for mixed Video CD/Video DVD media
* Add a force-desktop action to NautilusApplication (Ray Strode)
Major changes in 3.11.90:
* Port to GtkHeaderBar (Yosef Or Boczko, Matthias Clasen)
* Fix tab label not being update on removals or renames
* Fix minimum size requisition of Nautilus windows
* Fix remote mounts not being detected as removed (Daniel Schürmann)
* Fix high CPU usage when searching with criteria (Daniel Wyatt)
* Fix unwanted search entries on the desktop (Marc Deslauriers)
* Fix initial value of start-with-sidebar
* Fix some critical assertions
* Fix a crash when selecting an unsupported custom image (Nelson Benítez León)
* Remove Set as Background action on interactive DND
* Use unity-control-center when under Unity (Robert Ancell)
* Add film strip in nautilus rather than in totem (Bastien Nocera)
Major changes in 3.11.3:
* Don't perform deep counts on regular files (Ross Lagerwall)
* Fix overlapping filenames on hover in canvas view (Manuel Bachmann)
* Fix crasher when changing the symlinks cache (Michael Catanzaro)
* Standardize Help/About/Quit for the app menu (Michael Catanzaro)
* Remove Enter Location from the app menu (Michael Catanzaro)
* Use search bar style for the query editor (William Jon McCann)
* Support building against Tracker 0.18 (Dominique Leuenberger)
Major changes in 3.11.2:
- Bring back eject button in sidebar (Matthias Clasen)
- Fix rename entry rendering (Alex Larsson)
- Fix rename entry positioning (Alex Larsson)
- Avoid a crash if inhibit fails (Ross Lagerwall)
- Center tab labels (William Jon McCann)
- Fix DND move (Nelson Benitez Leon)
- Translation updates
Major changes in 3.10.0:
- Make search provider return results again (David King)
- Translation updates
Major changes in 3.9.92:
* Use new gtk_drag_begin_full API (Jasper St. Pierre)
* Increase default window width to fit four icons (Michael Catanzaro)
* Don't filter out NoDisplay applications from "Open With..."
* Fix desktop file categories (Elad Alfassa)
Major changes in 3.9.91:
* Use a GtkRevealer for the search bar
* Don't present redundant options for operations on single
files (William Kunkel)
* Fix desktop window for newer GTK+ client side decorations
(Christian Hergert, Matthias Clasen)
* Fix double menu when right clicking on the pathbar (Stefano Facchini)
* Fix headerbar appearance with latest GTK+ (Yosef or Boczko)
* Fix copy/cut/paste accels not working correctly
Major changes in 3.9.90:
* Fix support for HiDpi displays
* Replace control characters when fixing filenames for FAT
* Fix crash while dragging an expander in list view
* Don't use deprecated GtkStock and GtkImageMenuItem
* Fix "Reset to Defaults" not resetting columns in List
view (Garret Regier)
* Use more friendly strings in the Location column in
List view (Garret Regier)
* Add Access Date column in Recent (Garret Regier)
* Add Location column by default in search views (Garret Reiger)
* Fix search not remembering per-view settings (Garret Reiger)
* Use new GTK titlebar look (Yosef Or Boczko)
* Fix hidden files setting not correctly refreshing on
change (Srinivasa Ragavan)
* Fix incorrect click target in canvas view under certain
circumstances (Srinivasa Ragavan)
* Fix DnD glitches on pathbar buttons (Nelson Benitez Leon)
* Show invalid filename dialog when copying, if required (Nelson Benitez Leon)
Major changes in 3.9.3:
* Shade rubberbands on the desktop using the wallpaper color (Ted Gould)
* Port to GtkPlacesSidebar (Federico Mena Quintero)
* Check for available mail clients before enabling sendto
extension (Plamena Manolova)
* Enter location bar upon entering "~" (Garrett Regier)
* Add a menu item to open parent folder of search/recent
items (Garrett Regier)
* Use Shift+Ctrl+Z, not Ctrl+Y, for Redo (Adam Dingle)
* Remove multicontext menu items from editable entries
Major changes in 3.8.2:
* Don't grab focus to search entry needlessly (Rui Matos)
* Increase default size to fit 4 columns of icons (Michael Catanzaro)
* Remove no-longer-existing keys from GConf conversion
* Change 'x-nautilus-search:' To 'Search' in tooltips (Ting-Wei Lan)
* Translation updates
Major changes in 3.8.1 are:
* Use a consistent name for applications in the Open With context menu
* Don't follow symbolic links when searching recursively
* Increase default sidebar width
* Fix resetting view to default preferences not working (Michael Wood)
* Fix behavior of search entry with external Input Methods (Rui Matos)
* Fix partial ranking order of search results
* Fix move of special icons on the Desktop triggering file operations
* Fix copy action not working in Recent
Major changes in 3.8.0 are:
* Fix inconsistency in handling of NoDisplay=true applications
* Translation updates
Major changes in 3.7.92 are:
* Ensure target directories exist when restoring trash contents
* Export non-VFS URIs to DnD selections
* Hide Change Background desktop action g-c-c is not installed
* Fix double tap not working on certain touchscreen devices
* Fix for removal of org.gnome.desktop.background draw-background setting
* Fix inability to move desktop icons to non-primary displays in certain
configurations
Major changes in 3.7.91 are:
* Export an OpenLocations property over DBus (Marco Trevisan)
* Add a way to reuse and raise existing windows already opened to a
given location (Marco Trevisan)
* Use an ARGB window for the desktop (Matthias Clasen)
* Stop drawing the desktop background
* Register our GtkApplication with gnome-session
* Fix Tracker search not working correctly
* Fix activation of search provider results
* Fix nautilus --quit from terminal not working
Major changes in 3.7.90 are:
* Add back a Treeview option for list view. This is off by default, and
is backed by a checkbox in the Preferences dialog
* Add a "Connect to Server" item in the Network section of the sidebar
* Add a "Format..." item in volume context menus in the sidebar
* Fix accelerators not showing up in gear and view menus
* Use G_APP_INFO_CREATE_NEEDS_TERMINAL instead of handrolled
code (William Jon McCann)
Major changes in 3.7.5 are:
* Switch to hovered locations on DnD (William Jon McCann)
* Support a --force-desktop commandline option for classic mode
* Add a separate desktop file for classic mode integration
* Use a better position for navigation button popup menus
* Fix many memory leaks (Pavel Vasin)
* Fix a crasher when a file in trash has reserved characters in the filename
* Fix a crasher when closing the sidebar immediately after construction
* Fix a crasher closing the properties dialog while calculating folder size
* Fix backup files showing up in search provider results
* Fix floating bar buttons being added twice
Major changes in 3.7.4 are:
* Support a --select commandline option to force selection of the passed-in URI
* Add source hints to notifications (Matthias Clasen)
* Modernize build infrastructure (Javier Jardon)
* Use public GTK-a11y support instead of our own hacks
* Fix a crasher in the Shell search provider
Major changes in 3.7.3 are:
* Update search provider to org.gnome.Shell.SearchProvider2 interface
* Rely on GIO to parse ".hidden" files
* Consistently use unicode ellipsis instead of three periods (Jeremy Bicha)
* Use a different label for removing a file from "Recent" (Paolo Borelli)
* Restore the previous behavior wrt. framing for custom icons
* Share the "show hidden" GSetting option with the GTK+
file chooser (Timothy Arceri)
* Fix missing unmount sync notification under some circumstances
* Fix infinite loop while deep counting the size of "/" (Phillip Susi)
* Fix wrong filename when restoring file from trash (Timothy Arceri)
Major changes in 3.7.2 are:
* Request to render larger thumbnails by default
* Don't quote the current location name in search bar
* Use "Run" in menus when launchine executables
* Fix stray Empty Document item in New Document menu
Major changes in 3.6.3 are:
* Fix symbolic links on remote volumes not activating default action
* Fix duplicated query editor filter rows when changing search location
* Fix search toolbar disappearing with very long folder names
* Fix missing Trash action after "Recent" was visited
* Fix missing frame around thumbnails for some zoom factors
* Fix crash when unmounting remote volumes
Major changes in 3.6.2 are:
* Open default location for remote shares when mounting
* Fix missing search results from Tracker for names that contain hyphens
* Fix missing item selection in the sidebar when starting up
* Fix search string being eaten by a hidden entry under certain circumstances
* Fix missing tooltips on stock toolbar buttons
Major changes in 3.7.1 are:
* Turn on again recursive search for the simple engine
* Enable incremental loading for search directories
* Add extra information to image properties page
* Show free space pie chart for the local root filesystem
* Resolve symbolic links before launching a file
* Avoid sync I/O when reading bookmark locations
* Don't add non-existent XDG folders to the sidebar
* Don't offer to remove built-in XDG folder bookmarks
* Fix black input field when renaming a file in icon view with XIM enabled
* Fix wrong return location when unmounting a remote mount
* Fix notebook tabs not properly switching after timeout when hovered
* Fix search toggle button state inconsistent when switching between tabs
* Fix crasher when using the Tracker engine from the Shell search provider
* Fix crasher in Shell search provider
* Fix crasher when unmounting a volume under certain circumstances
Major changes in 3.6.1 are:
* Fix floating bar not disappearing on search finish
* Fix fullcolor icons appearing in the pathbar for mount roots
* Fix drag and drop of multiple rows in list view
* Fix search relevance not being applied correctly when searching
* Fix sidebar visibility switch applying to all windows
* Fix search location when moving to a search directory in Back/Forward
history
* Fix missing search results with non-ASCII characters
* Fix Home/Trash not showing up in shell provider results
* Fix startup notification not working when opening multiple windows
* Fix search results not focusing when activated from the Shell
* Fix error dialog not showing up when entering a non-existant location
in Connect to Server
* Fix inability to open files after cancelling a rename in list view under
some circumstances
* Fix desktop icons not following the primary monitor workarea when multihead
is used with the desktop enabled
* Fix crasher when search string changes too fast
* Fix crasher when enabling search while loading a directory
* Fix crasher when trying to open a saved search file
* Fix crasher when Tracker is installed but not running
* Fix crasher in the shell search provider for bookmarks/mounts with an
empty name
Major changes in 3.6.0 are:
* Fix toggling of hidden files visibility in searches
* Fix base directory appearing in search results
* Fix missing search results under some locales
* Fix unmounted mounts showing in shell search provider results
* Fix a crasher when a window is closed while the view is loading
Major changes in 3.5.92 are:
* Add a Shell search results provider
* Add a NautilusDirectory-based search engine implementation for network
directories
* Improve performance and stability of the search engine
* Change the Type column to only show basic type information
* Preserve view selection when exiting search
* Use a symbolic icon for the location entry
* Fix wrong order of files when searching in canvas view
* Fix inability to drop on current directory in list view
* Fix crash when trying to undo failed directory creations
* Fix positioning of detached tabs
* Fix symlink creation for remote shares
* Fix duplicate entries in the sidebar
* Fix inability to clear entry in Connect to Server dialog
* Fix view selector flashing while switching views
* Plug a number of memory leaks
* Tweak the color scheme for the pie chart in mount properties
* Remove the SELinux context column for list view
Major changes in 3.5.91 are:
* New design for the Connect to Server dialog
* Add the possibility to detach tabs using drag and drop
* Add paste and location properties actions to the gear menu
* Use symbolic icons in the sidebar for drives and mounts
* Follow 12h/24h GSettings preference for view date display
* Cleanup icon view caption strings
* Fix wrong zoom level restored at startup
* Fix unparented mount/eject error dialogs
* Fix drag and drop for unwritable locations
* Fix stray templates bar when no templates directory is defined
* Fix Open With menu showing for apps that don't support URIs and files
* Fix item count not updating in realtime for directories in Properties
* Fix missing keybindings for Back/Forward/Up/Go Home
* Fix missing history context menu on navigation buttons
* Fix missing Create Link context action
* Fix missing frame around custom icons
* Fix broken behavior with multiline filenames
* Plug a number of memory leaks
* Remove context menu on blank list view space
Major changes in 3.5.90 are:
* Reorganize application and gear menu, and add a menu for view actions
* Add a View options selector to the toolbar
* Add cluebars for Templates and Scripts special directories
* Add ability to reorder bookmarks
* Improve strings in the Autorun prompt
* Improve error message strings
* Improve the image Properties page
* Improve the Permissions page in the Properties window
* Improve the layout of the Bookmarks dialog
* Use the dropped text paragraph as name when creating new files
using DnD of text snippets
* Use double quotes instead of ASCII quotes for filenames
* Change default action for executable text files to Display
* Change the view mode and zoom level to be per-window instead of per-folder
* Remove support for Manual layouting in icon views outside of Desktop
* Remove the Octal permissions list view column
* Fix segfault when no search results are found
Major changes in 3.5.5 are:
* Combine results from both search providers
* Use a ranking algorithm for search results
* Preselect first search result
* Add a keybinding for the gear menu
* Improve styling for the search query editor
* Fix Ctrl+V not working correctly
* Fix previewers not being activated correctly
* Fix search not to trigger on the desktop window
* Fix pathbar scroll button styling bugs
Major changes in 3.5.4 are:
* Add Copy To and Move To actions
* Add a notification while ejecting volumes
* List view:
- New date format display
- Use a list model instead of a tree model for list view
- Use a better default column order
- Change some list column names
- Use 32px icons by default
- Tweak padding
* Search:
- "Just type" search
- Combine the search bar and the query editor
- Tracker engine performance improvements and fixes
* Sidebar:
- Add a recent files place
- Use symbolic icons
- Improve order of the items
* Toolbar:
- Change toolbar layout to the GNOME 3 style
- Don't show titlebar when maximized
- Use a linked style for the pathbar
* Menus:
- Migrate the menubar to a gear menu
- Remove "Go" menu
- Remove "Bookmarks" menu
* Remove "Text beside icons" option for icon view
* Fix loading string not disappearing in image properties on load
Major changes in 3.5.3 are:
* Fix accessibility implementation of rename entries and icon view
* Fix DnD not working on sidebar bookmarks
* Fix thumbnails failing to display in icon view
* Fix crasher after ejecting a volume from the sidebar
* Fix crasher on gtk-shell-shows-app-menu GtkSetting change
* Fix possible crasher when cancelling a rename operation
* Use GtkSearchEntry
Major changes in 3.5.2 are:
* Add a way to create a new directory for selection
* Don't pack multiple x-content bars in the view
* Show icons x-content bar application launchers
* Hide New Document menu when no templates are installed
* Remove statusbar
* Remove "Go->Computer"
* Remove compact view
* Remove extra panes and tree sidebar
* Fix pathbar buttons disappearing for too long titles
* Fix sidebar typeahead find being triggered
* Fix image properties label not wrapping for long width
* Don't trigger context menu for sidebar headings
* Don't show old 'note' emblems
* Reintroduce GTK accel map loading/saving and migrate it to XDG dirs
* Remove markup from GtkBuilder strings
Major changes in 3.5.1 are:
* Add an application menu
* Don't show sliders up to the file system root in the pathbar
* Add support for AFP shares in the Connect to Server dialog
* Don't remove selection when clicking on a row out of name boundaries
* Fix a wrapping issue with numeric strings in some circumstances
* Fix rename field selection color for backdrop state
* Don't select all icons on Ctrl+A when the search entry is focused
* Remove desktop-is-home-dir GSetting
* Remove custom accel map loading/saving
* Use new XDG location for GTK bookmarks file
Major changes in 3.4.1 are:
* Don't display comment field for desktop files
* Fix off-by-one error in file operation counts
* Fix mouse hardware back/forward buttons not working correctly
* Fix "Undo Trash" for files with non-ASCII characters
* Fix name corruption for untitled files under some circumstances
Major changes in 3.4.0 are:
* Fix a regression where "Open With" was hidden for folders
* Translation updates
Major changes in 3.3.92 are:
* Fix scrolling in compact view to work with latest GTK
* Fix Ctrl+Scroll zooming to work with latest GTK
* Don't hide Open With applications for subtypes of application/x-desktop
* Add support for the "network" GVolume class identifier
* Fix a crash at exit with certain extensions that keep refs of the
NautilusFileInfos
* Fix initial focus row when moving the focus into the Places sidebar
* Fix Shift+Click selection when going back/forward in browsing history
* Fix packing of desktop file box in properties view
* Fix pathbar button sizing when a file watched by the pathbar changes name
* Fix properties window not being able to shrink size
* Remove unused --enable-profiler configure option
Major changes in 3.3.91 are:
* Ensure pathbar scrolling works with latest GTK
* Fix a crash when unmounting volumes with non-empty trash
* Fix a race condition leading to a crash when closing window slots
under certain circumstances
Major changes in 3.3.90 are:
* Don't make the inactive pane UI elements insensitive
* Fix a crash when searching in list and compact view
* Fix a crash when creating a file from a template
* Use ngettext plural forms for undo strings
Major changes in 3.3.5 are:
* Introduce Undo support for common file operations
* Fix a crash when middle clicking icons on the desktop
* Fix split view actions not updating properly
* Fix wrong places sidebar selection under some locales
* Fix a crash when enabling desktop icons handling
* Support build against Tracker 0.13/0.14
* Make the rubberband animation obey the global GtkSetting
Major changes in 3.3.4 are:
* Show both the current file counter and the total files in file operations UI
* Lazily initialize the notification daemon
* Move the UI files and icons into GResources
* Refactor of NautilusWindowPane and NautilusWindowSlot code
* libnautilus-extension GIR coverage has been improved
Major changes in 3.3.3 are:
* Implement the org.freedesktop.FileManager1 DBus interface
* Show context menu for current folder when clicking empty space
in list view
* Sort XDG dirs in the places sidebar according to the current locale
* Fix handling of Ctrl+T on the desktop window
* Fix icon view wrap-around key navigation
* Fix rubberband scrolling in maximized windows
* Fix a crasher when closing a window
* Don't use deprecated GLib and GTK functions
Major changes in 3.3.1 are:
* Show a Properties item in the sidebar for mounts
* Use GtkStyleContext to draw editable label elements
* Port to use GtkGrid
* Don't use deprecated GThread API
* Fix pie chart background rendering in Properties view
* Fix a crasher when activating a sidebar item
* Cleanup old libeel boilerplate code
Major changes in 3.2.1 are:
* Consolidate typeahead find entry for icon view
* Fix a crasher when middle-clicking empty space in the places sidebar
* Fix a crasher when trying to delete files from the tree sidebar
* Fix a crasher when ejecting a removable device under some circumstances
* Fix a crasher when trying to activate the previewer in a list view
with no selection
* Fix a crasher when symbolic icon theme is not available
* Plug some memory leaks
* Fix the build when Tracker FTS is enabled
Major changes in 3.2.0 are:
* Fix a couple of drawing regressions introduced in 3.1.92
* Lots of translation updates
Major changes in 3.1.92 are:
* Hopefully fix once and for all NautilusWindow keybindings
* Don't hide the floating bar on hover if it's interactive
* Fix canvas accessibility implementation for GTK 3.2
* Don't warn when opening multiple files with one application
* Correctly remember remote passwords when asked so
* Add a new topic-based help menu
* Fix default list view sorting order
* Don't warn when a mount operation fails with ALREADY_MOUNTED
* Select the item on right click in the Tree sidebar
* Scroll to the selected file when opening an URI from the cmdline
* Read the emblem icon names from the metadata
* Use libtracker-sparql directly as an optional dependency
* Streamline icon container rendering code to use gtk_render_*
* Correctly remember "Keep Aligned" and other desktop metadata
* Invalidate the text size when changing the DPI xsetting
* Strip the hardcoded theme bits
* Add Unity desktop file compatibility
* Use XDG_CURRENT_DESKTOP when possible
Major changes in 3.1.90 are:
* Remove the built-in audio previewer
Major changes in 3.1.4 are:
* Remove the 'Create Launcher' options from the desktop
* Improve the 'File System' entry in the places sidebar
* Remove 'Clear History' from the 'Go' menu
* Fix location bar not expanding full width in the toolbar
* Use new g_format_size() instead of g_format_size_for_display()
Major changes in 3.1.3 are:
* Add an 'Add Bookmark' item in sidepane context menu
* Fix --no-default-window not working when an URI is specified
* Use g_cclosure_marshal_generic()
Major changes in 3.1.2 are:
* Use GtkOverlay for the floating bar
* Move the floating bar away from the cursor on hover
* Add an autostart desktop file
* Add metadata::custom-icon-name key for custom icons
* Fix opening the wrong directory when launching an instance
from the command line
* Misc crashers
Major changes in 3.1.1 are:
* Add a DBus previewer interface to support e.g. the Sushi previewer
* Rework handling of _NETSCAPE_URL dnd links
* Optimizations in the sorting/layouting code for Icon View
* Misc bugfixes
Major changes in 3.0.1.1 are:
* Fix some crashers
* Don't show file transfer progress twice
Major changes in 3.0.1 are:
* Fix white background bug when drawing desktop icons
* Fix crash while ejecting volumes from the places sidebar
* Fix enter not working in the places sidebar
* Fix conflict dialog labels and entry sizing
* Fix drawing artifacts in the search bar
* Fix single click preferences mismatch
* Fix additional details label colors when using a11y themes
* Fix some minor/sporadic crashers
* Fix libnotify and libexif version checks
Major changes in 3.0 are:
* Use Ctrl+Delete as keyboard shortcut to trash files
* Make sure we always open new windows from the desktop
* Fix a crasher
Major changes in 2.91.4 are:
* Fix eject button hover in places sidebar
* Use new gnome-help pages for help buttons
* Fix a crasher when toggling desktop_is_home_dir
* Fix a memory leak
Major changes in 2.91.93 are:
* Fix some memory leaks
Major changes in 2.91.92 are:
* Use a raised button for Search
* Tweak the floating bar background
* Only show the "Loading..." floating bar after half a second of loading
* Style cluebars according to mockups
* Fix some split view regressions
* Misc bugfixes
Major changes in 2.91.91 are:
* Allow the dbus manager to run as a service
* Create folders in subdirectories in list view, when possible
* Make sure we don't focus headers in the places sidebar
* Don't activate 'Rename' in the sidebar for non-bookmarks
* Fix the list view not updating anymore after creating an empty file
* Fix regressions in rename widget focus
* Fix some UI regressions from the latest changes
Major changes in 2.91.90.1 are:
* Make modules of extensions pulling in ORBit resident, to avoid
ORBit's atexit()'s handler to call into unloaded code
* Cleanup some unused code
Major changes in 2.91.90 are:
* Huge changes in the user interface, to match GNOME3 mockups
* Remove the spatial mode
* Updated tracker search engine to use libtracker-sparql
* Consistently use "Home" instead of the username
* Rename the GSettings schema path to /org/gnome/nautilus
* Remove the ability for extensions to create toolbar items
Major changes in 2.91.9 are:
* Remove GConf dependency completely
* Fade-out eyecandy for selection rubberband
* Use notifications instead of a status icon for transfer progress