forked from GNOME/nautilus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
2492 lines (2009 loc) · 85.4 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 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
* Change launcher name to 'Files'
* Fix a couple of crashers and UI regressions
Major changes in 2.91.8 are:
* Propagate custom icons to bookmarks
* Don't quit the application if there are file operations running
* Better keynav in the places sidebar
* Use symbolic icons for the notification area
* Fix some drawing regressions while renaming
* Fix issues with the default sort order selection
* Completely remove GConf dependency
* Large refactor of NautilusWindow/NautilusView architecture
* Cleanup installed desktop files
* Fix a couple of crashers
* Build with GCC 4.6
Major changes in 2.91.7 are:
* Adapt to GTK+ 2.99.0 deprecations
* Fix a crasher in the pathbar
* Use a consistent name for the Home folder
* Use a consistent name for the 'Create New Folder/Document' menu items
* Build tweaks
Major changes in 2.91.6 are:
* Fix build with GTK+ 2.91.7
Major changes in 2.91.5 are:
* Tweak sidebar appearance with CSS
* Remove 'exit-with-last-window' preference
* Remove support for saving state with XSMP
* Fix some UI GtkStyleContext regressions
* Fix a11y for NautilusIconCanvasItem
* Properly support '~' in the location bar
Major changes in 2.91.4 are:
* Port to the new GtkAppChooser widget family
* Port to GtkStyleContext
* Add DBus interfaces for copying files and emptying trash
* Remove Beagle search support
* Remove History and Notes sidebar
* Use a new simpler debug infrastructure
* Make the preferences an app-wide singleton window
* Fix some drawing regressions
Major changes in 2.91.3 are:
* Remove autorun and automount machinery, it moved to gnome-settings-daemon
* Don't install the 'File Management Properties' binary; there's now
a capplet in gnome-control-center for the autorun system settings.
* Fix interaction with the session manager
* Don't use gtk_[h|v]_separator_new
* Identify OGG Vorbis files as music in the search UI
* Require new gnome-desktop
Major changes in 2.91.2 are:
* Use GSettings for desktop background
* Cleanups of the emblem-related code
* Fix some bad interactions with GApplication
* Fix an annoying crasher
Major changes in 2.91.1 are:
* Fix a number of GTK+ 3 regressions
* Port to the new GApplication API
* Add a settings key to make the background fade effect optional
* Add a settings key to register an external mass-renamer
* Drop support for old EXIF/XMP APIs
* Move the nautilus-sendto extension module in-tree
Major changes in 2.91.0.1 are:
* Fix a crash related to GtkSpinner
* Fix the filename cell renderer to use the new GtkSizeRequest functions
Major changes in 2.91.0 are:
* New UI for the 'Places' sidebar
* New UI for the 'Connect to server' dialogue
* Highlight the eject button upon hovering in the Places sidebar
* Make file conflict dialog strings I18N-friendly
* Port to GTK3 new drawing functions
* Cleanup background-related code
* Various crashers and glitches fixes
Major changes in 2.90.1 are:
* Port to GSettings
* Port to cairo drawing
* Remove the "Backgrounds and Emblems" feature
* Use GEmblemedIcon to draw icon emblems in list/tree views
* Cleanup of libeel's obsolete code
* Always show free space in the status string
* Disable icon scaling outside the desktop
* Various minor UI fixes
Major changes in 2.31.5 are:
* Expand and collapse folders with +/- in list view
* Ask for confirmation when opening a large number of files
* Rename .desktop files also change their name on disk
* Support overriding .gnome2 directory
* Save passwords for the session by default
* Remove deleted folders from the pathbar
* Require GTK+ 2.90.5
Major changes in 2.31.4 are:
* Depend on GTK+ 3.0
* Replace libunique with GApplication
* Don't show 'File Browser' anymore in the window title
Major changes in 2.31.3 are:
* Port to GDBus
* Change the default order for files in special directories
* Support relative paths in the location entry/dialog.
* Translation updates
Major changes in 2.31.2 are:
* Use folder icons as window icons in browser and spatial mode
* Add 'Trashed On' and 'Original Location' columns in the trash
* Implement transparent icons for cut files
* Change default thumbnail size
* Fix a number of bugs related to bookmarks
* Translation updates
Major changes in 2.31.1 are:
* New dialog to handle conflicts within file copy/move operations
* New button in the trashbar to restore selected items
* Use XDG_CONFIG dir to store configuration. The old configuration files
will be migrated there automatically.
* Use async I/O to save .gtk-bookmarks
* Fix a number of issues related to DnD in the places sidebar
* New icon for audio preview
* Don't show Unmount when showing Eject/Safe Removal
* Bump libnautilus-extension API version
* Fix a number of UI glitches
* Translation updates
Major changes in 2.30.1 are:
* Translation updates
* Support for tracker 0.8.0
* Fix crashes
* Fix emblem scaling in zoomed view
* Fix sensitivity of split-view related menu items
* Control-L closes the extra view first, not the window
Major changes in 2.30.0 are:
* By default, don't exit with last window even if desktop is
not visible. This way we still run to handle e.g. volume
monitoring. If you don't want this, change
/apps/nautilus/preferences/exit_with_last_window
to True in gconf
* Don't show weird border around desktop
* Correctly put focus on view for new windows
* Extra view does not get focus when created
* Add nicer thumbnail border
* Fix crash when hiding search bar
* Fix build on sun compiler
* Support AIFF for audio preview
* Translation updates
Major changes in 2.29.92.1 are:
* Fix compilation due to deprecated GTK_WIDGET_STATE symbol
* Fix libm linking
* Updated Portuguese translation
Major changes in 2.29.92 are:
* Make view default focus in new windows
* Put tabs at the top again
* Don't use deprecated gtk widgets
* Allow Alt-<num> to switch tabs
* Dynamically load tracker support
* Don't auto-close the window you initiated an unmount in
Major changes in 2.29.91 are:
* Make it possible to have backgrounds spanning multiple monitors.
* Better handling of closing windows when device is unmounted
* Use GtkSpinner instead of custom widget
* Translation updates
Major changes in 2.29.90 are:
* Fix copy-pasted tooltip string
* Translation updates
Major changes in 2.29.2 are:
* Align sidebar header and location bar
* Remove tabs menu
* Update translations
Major changes in 2.29.1 are:
* Make browser mode the default
* Add split view mode
* Browser UI reorganization
* Better background support on multi-monitor setups
* Support new "default location" on mounts (supported by ftp and sftp)
* Add extension api to lookup NautilusFileInfo objects
* Make the search toolbar button a toggle button
* Ctrl+shift does multiple range selection in list view
Major changes in 2.28.0 are:
* Translation updates
* Don't load non-images for thumbnailing when zoomed
* Made desktop window a native X window for nicer redrawing
* Fix leaks
Major changes in 2.27.92 are:
* Fix crash on logout
* Translation updates
* Always show app icon in open with popup menu
* fix duplicate id in ui file
* Fix warning in new power manager inhibiting
Major changes in 2.27.91 are:
* Migrate old-style nautilus metadata to gvfs metadata
* Fix viewing of very small image files
* Respect disable_command_line option
* Reverse mouse button used for back/forward to same as firefox
* Always show menu icons for menu items representing files
* Inhibit suspend during file operations
* Cancel audio preview when deleting the previewed file
Major changes in 2.27.4 are:
* Add support for starting and stopping drives
* Use the new GVfs metadata framework
* Support new style unmount operations; this will provide a nice dialog when
unmounting a busy drive mount
* Add application icons to the Open With context menu
* Reload xdg-user-dirs according to the user preferences
Major changes in 2.27.2 are:
* Support ctrl-drop in list view
* Allow user defined keyboard shortcuts for extension items
* Fix crash on click on toolbar
* Fix crash on entering empty location
* Added daemon-mode (don't exit with last window)
* Display info about the selected item in the information sidebar
* Sort applications in open with
Major changes in 2.27.1 are:
* Drop GTK+ deprecated symbols
* Display the application icon in the popup menu
* Fix autorun hints for Win32 software media
* Allow shift+return during typeahead find
* Update desktop icons according to DPI changes
* Use the correct folder icon fallbacks
* Autogenerate ChangeLog and use shave to display the build output
Major changes in 2.26.2 are:
* Fix issue with default dnd type when dragging to a parent directory
* Fix icon view RTL layout in compact view
* Make sure spatial geometry is always saved when closing windows
* Save and load custom accelerator maps
* Check for PackageKit before showing dialog using it
* Add "location" column
* Show both unmount and eject in menus for mounts that support both
Major changes in 2.26.1 are:
* Better handling of thumbnail scaling
* Support XDS in list view
* Make session loading work
* Start Nautilus on requested screen
* Fix crashes
* Fix possible infinite layout loop in compact mode
* Update fallback icon to not look like gnome 1.x
* Fix some cases of sync i/o
* Handle non-gvfs uris like e.g. mailto and http links with queries in links
Major changes in 2.26.0 are:
* Stable release
* Fix crash due to broken gdk-pixbuf tga loader
* make sure thumbnails are updated even when zoomed up
* fix crash in media settings preferences
Major changes in 2.25.93 are:
* Use ConsoleKit to make sure we only autorun on active sessions
* Never show unmount if we show an eject menu item
* Show the gvfs reported owner/group names
* Don't allow changing default app for folders
* Fix "can't unmount same location twice" bug
Major changes in 2.25.92 are:
* Set mmap limit to avoid desktop background memory not being returned to the os
* Warn when source overwrites destination in move
* Don't put "link to ..." in front of symlinks unless there are name conflicts
* Fix desktop flicker on theme change
* Require desktop file app launchers to be executable
* Support making symlinks on remote locations (if supported by backend)
Major changes in 2.25.91 are:
* Use G_DEFINE_TYPE_* instead of hand-written types
* fix: opening a new window restores minimised ones
* fix renaming of desktop files
* Handle new kinds of GIcons
* Don't display shadowed mounts
Major changes in 2.25.4 are:
* Don't show desktop files from other desktops than Gnome on the desktop
* Support crossfades of desktop backgrounds
* Don't snap desktop icons outside right margin
* Fix crashes and leaks
Major changes in 2.25.3 are:
* Remove CD/DVD creator from places menu and sidebar
* Allow deleting custom emblems
* Fix crashes
* Don't show read-only emblems in trash
* Trash performance fixes
* General performance fixes
* Update to new PackageKit API