-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
2009 lines (1570 loc) · 63.7 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
Tue 8 Jan, 2013:
* Athena development restarted
Major changes in 3.4.2 are:
* Fix a crasher when using network devices
* Fix a crasher when entering "http" addresses manually in the location bar
* Fix button packing for media content cluebar
* Fix rename field selection color in backdrop state
* Don't show context menus on sidebar headings
* Don't remove selection when clicking on a row out of name boundaries
* Fix a wrapping issue with numeric strings in some circumstances
* Plug some memory leaks
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
AthenaFileInfos
* 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 AthenaWindowPane and AthenaWindowSlot code
* libathena-extension GIR coverage has been improved
Major changes in 3.3.3 are:
* Implement the org.freedesktop.AthenaFileManager1 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 AthenaWindow 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 /com/solusos/athena
* 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 AthenaWindow/AthenaView 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 AthenaIconCanvasItem
* 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 athena-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 libathena-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/athena/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 AthenaFileInfo 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 athena 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 Athena 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
Major changes in 2.25.2 are:
* Merged eel into athena
* Use single glib/gtk includes
* Support PackageKit application search
* Fix new windows not appearing after successful mount
* Remove support for old KDE trash dirs
Major changes in 2.25.1 are:
* Remove depencency on libgnome & gnome-vfs
* Fix crashes
* Chop trailing space characters when moving to FAT file system
* When DnD'ing, COPY instead of MOVE, when the source is not deletable
* Don't set default when opening with other app, just add to open with list.
* Don't make copies of files from readonly source (e.g. CDROM) readonly
* Don't show cancel dialog when showing the "run or display" dialog
Major changes in 2.24.0 are:
* Icon/compact view:
* Follow run-time changes to set of icon text attributes to be displayed
* Invalidate icon label when changing zoom level or “text besides icon”
* List view:
* Properly offer textual drag target
* Request centered autorun dialog
* Always sort folders before files, even if sort criterion is reversed
* Always assume that trash directories are local
* Fix Small leaks and thinkos
Major changes in 2.23.92 are:
* Icon/compact view:
* Allow to select range in addition to current selection, when pressing ctrl
and shift at once [not yet doable in list view]
* Fix layout timestamp storage when moving items around on desktop
* List view:
Default to reverse sort order for date columns (i.e. recent to old)
* Improve “Clear History” confirmation dialog
* Use GdkAppLaunchContext instead of EelAppLaunchContext
* Fix small leaks
Major changes in 2.23.91 are:
* Make autorun work for blank media
* No more pixelated SVGs displayed for desktop items with absolute icon SVG paths
* Use consistent labels, mnemonics and icons for trash and delete actions
* Icon container (i.e. icon view and compact view)
* RTL support for vertical layout
* Always reveal entire rows or columns of icons
* Nicer icon container bounds
* (Again) vastly improved keyboard navigation, especially in RTL mode
* No more overlapping desktop icons, when files are added or volumes mounted
while Athena is not running. This is implemented with metadata timestamps when
the desktop icons are laid out.
* Rewrite large chunks of icon canvas text size handling
* Clear underlying items if hovered or selected item overlaps them
* List View
* Make scripts work when items in nested list view subdirectories are selected
* Usual minor fix & polish galore
Major changes in 2.23.90 are:
* Truncate long item labels in the icon view and on the desktop
+ icon_view/text_ellipsis_limit and desktop/text_ellipsis_limit GConf
preferences added (defaults to three lines)
+ expand when hovering, or when selecting a file
* Support restoring of multiple items from trash at once
* Handle scroll events on the path bar
* Fix “same file system” (i.e. copy vs. move) DND check for desktop
* Fix search for content type in simple search backend
* Fix running of scripts on the desktop
* Use more archive file types for file-roller integration for remote locations
* Consolidate zoom handling internals
* Show file name instead of URI in the bookmark editor window for local files
* Polish “Visible Columns“ list view dialog
Major changes in 2.23.6.1 are:
* Fix display name of computer:// icons
Major changes in 2.23.6 are:
* Support transferring files with reserved FAT characters to a FAT file system
Replace them with an underscore if neccessary
* Use x-content/* MIME type to associate applications with hotpluggable media
* Path bar
* enable control-left click and middle-click interaction for path bar buttons
* dynamically handle hierarchy changes in the path bar
* Icon view keyboard navigation
* Use linear selection instead of rectangle selection in when pressing shift
* Still offer rectangular selection when pressing ctrl and shift
* Only wrap around horizontally in horizontal layout mode,
* Only wrap around vertically in vertical layout mode
* Never wrap around when in rectangle selection
* Icon view now remembers last position when reloading in vertical layout
* List view: Do not request mass redraw when dragging
* Clear display name when changing file name
* Only show "... All" actions ("Skip All", ...) in file operation dialogs if more
than one file is transferred
* Identify to GNOME session as file manager, not as generic desktop application
Major changes in 2.23.5.1 are:
* Fix crasher in spatial mode when closing window with ctrl-w
* Work around GTK+ tree view bug for sidebar eject button click area
* Some popup menu fixes
* Do not use C_() due to intltool bug
Major changes in 2.23.5 are:
* Add tab support to browser mode
* Add "restore from trash" functionality (only per item)
* Path bar and notebooks can be used as fully functional URI drop targets
* Places sidebar
* Add eject buttons to volumes
* Fix bookmark reordering
* Make DND indication consistent with GTK+ file chooser
* Async I/O
* Use AthenaFile instead of GFile for path bar display name
* Use AthenaFile for DND "same FS" check
* Fix navigation where window was inconsistently "stuck" between two
directories, i.e. the view was not completely changed.
* Fix huge leak - status bar messages were never popped from the stack
* Always grab focus on location change, even if view is reused
* Icon view fixes
* If no icon is selected, but an icon has the keyboard focus, select it when
pressing space.
* Move keyboard focus after a file has been removed
* Fix double-clicking of half-shown items
* Thumbnailing changes
* Never scale up any thumbnails
* Compose and scale thumbnails on the fly
* Speed up loading of large image files used as their own thumbnails
* Display emblems for small icon sizes
* Offer clipboard contents as text/uri-list
* Use UTF-8 dash for properties window instead of "--"
* Misc
* Allow to build without XMP
* Require beagle 0.2.4
* Require intltool 0.36.3.
Major changes in 2.23.4 are:
* Fix background extension submenus for background context menus
* Fix thumbnailing
* Always re-thumbnail if a file without any thumbnail changes
* Always re-thumbnail if a failed thumbnail is not up to date
* Make zoom level specifications consistent (33% vs. 25%), round to 66% rather than 67%.
* Never hide hidden or backup files in trash
* Always copy file entire metadata when copying. Fixes timestamp preservation.
* Remove desktop emblem from desktop directory, since the folder now uses a desktop icon
Major changes in 2.23.3 are:
* Use bilinear interpolation instead of hyperbolic. Massively speeds up thumbnailing.
* Fix thumbnail frame size calculation
* Rework properties dialog
* Remove "Launcher" tab, and move all the launcher properties to "Basic"
* Hide useless file info widgets from "Basic" tab for special locations like "computer:///".
* Support adding files to archives via file-roller
* Add location popup context menu to all path bar buttons
* Fix location popup context menu separators
* Add "Paste Into" item to location popup context menu
* Do not count the same inode twice when calculating directory sizes
* Never copy to "trash:///", never move to "burn:///"
* Never maximize windows opened from shell if a custom geometry has been specified
* Properly close windows displaying the media root location when ejecting a medium
* Empty the clipboard when copying/moving with DND to a container
* Remove libbackground
* Require eel 2.23.2 due to directory background API changes.
Major changes in 2.23.2 are:
* Increase default thumbnailing size limit
* Various fixes to keyboard handling in icon and list view
* Use description from gio as window title
* Fix double click behaviour in list view
* Remember windows size when closed while maximized
* Always use single click policy in the places sidebar
* Fix selection handling after canceling delete operation
* Improve autorun behaviour
* Improve internal error handling
* Fix adding emblems
* Fix gconf preferences description
* Improve list column page indentation
* Prevent recursive move/copy into itself
* Show mount dialog for already mounted shares too
* Prevent autogenerated file names from overflowing the max filename length
* Use ellipsis as per HIG
* Fix leaks
* Fix crashes
* Build fixes
* Translation updates
Major changes in 2.23.1 are:
* Support new gnome-session autostart semantics.
* Unify session save/restore routines with "--restart" and "--load-session"
* Allow to invert selection
* Do not automount mount points inside hidden hierarchies
* Add AthenaFileInfo APIs: can_write(), get_mount(), get_parent_info()
* Add initial Gtk-doc support.
* Remove some dead code.
Major changes in 2.22.1 are:
* Fix crashes and leaks
* Fix emblem display in property page
* Fix mime choosing to not always create application/x-ext-<extension> type
* Actually mount location in external connect to server dialog
* Fix thumbnail size limit checks
* Fix "show hidden" to also show backup files
(was broken in some situations)
* Verify that tracker is running before using it
* Fix desktop file icon handling with absolute filenames
* Use GDesktopAppInfos to launch desktop files
* Don't follow symlinks for deep file count
* Fix audio preview with later gstreamer
* Make "move file over directory" overwrite case work
* Sometimes we failed to ask for overwrite when move
operations falled back to copy + delete
* Make sure we correctly transcode filenames when merging
directories if the directory is on another filesystem.
* Some moves were reported as copies, not moves in the ui
which could cause not up-to-date directory displays
* Don't center file progress dialog if its already displayed
Major changes in 2.22.0 are:
* Fix typo in strings
* Fix crashes
* Use a better icon for the progress dialog
* Have a mount menu for mountable files, not an unmount one
* Handle broken bookmark files bette
* Sniff x-content type asynchronously
* Don't look for autorun stuff on non-local files
* Allow setting permissions on remote shares
* Fix "delete all" button in delete dialog
* Show custom icons at right size
* Fix some performance issues on nonlocal mounts
Major changes in 2.21.92 are:
* Build fixes
* Fix crashes and leaks
* Fix handling of desktop file launchers
* Better handling of desktop file icons
* Semitransparent DnD icon support (when composited)
* Avoid showing progress info when dialogs are shown
* Allow minimize of progress window
* Handle beagle >= 0.3.0
* Close properties dialog on escape
* Make custom icons work again
* Fix fuzzy icons
* Duplicate file if copies to the source directory
* Support open with dialog for multiple selected files
* Ressurect connect to server dialog
* Allow theming of free diskspace chart colors
Major changes in 2.21.91 are:
* String cleanups
* Inhibit autorun for things we mount ourselves
* Fix crashes and leaks
* Only show selinux context if selinux detected
* Default to move, not copy when dragging from trash
* Don't autorun/automount non-local mounts
* Fix case where we could run out of file descriptors
* Handle drop of files on the desktop
* Fix sensitiveness of delete from trash menu item
* Fix open with context menu in always-use-browser mode
Major changes in 2.21.90 are:
* Use thousand separators in all numbers (if used by locale)
* Fix leaks
* Performance improvements
* Update to latest glib APIs
* Fix bug that lost metadata from older versions
* Fix crashes
* Enable paste into folder for desktop icons
* Better finding of autorun files on case sensitive media
Major changes in 2.21.6 are:
* Regenerate thumbnails when files change
* Fix crashes
* New autorun and automount support
* Allow unmount of current location if its a mountpoint
Major changes in 2.21.5 are:
* Add autorun/automount feature
* Better handling of sensitivity of delete menu items
* Better handling of mount/unmount/eject in many places
* Fix for extensions with submenus
* Fix crashes
* Updated some icons to the Tango look
* Fix some portability issues
Major changes in 2.21.2 are:
* Update pkg-config files with new extensions dir
* Add some gio features to extension API
* Handle dnd of desktop icons
* Update to latest gvfs/gio API
* Implement some missing unmount/eject operations
Major changes in 2.21.1 are:
* Totally replaced gnome-vfs use with gio
* New implementation of file operations like copy/move with
a shared progress dialog
* Lots of cleanup
Major changes in 2.20.0 are:
* Load thumbnails asynchronously
* Support direct save DnD (XDS)
* Fix up octal permission display
* Store window keep-above and stickines state across sessions
Major changes in 2.19.91 are:
* Be more robust against broken extensions
* Set current working directory right on desktop when running scripts
* Fix crash on file:///#
* Update to cope with the new size of emblem icons
Major changes in 2.19.90 are:
* Auto-size list view filename column again
* New message for service unavailable error
* UI terminology consistency fix
* Build fix
Major changes in 2.19.6 are:
* Fixes to UI manager usage
* Better string ellipsation
* Consistent focus behaviour for toolbar buttons
* Support for XMP image metadata
* Improved keyboard handling in connect to server dialog
* I18n fixes and string clarifications
* Add more tooltips and use new gtk+ tootips API
* Better handling of unreadable directories during search
* Fix various crashes
* Translation updates
Major changes in 2.19.5 are:
* Build fixes
* Fix leaks
* Fix crash
* Improved JPEG metadata handling
* Fix information sidebar layout
* Translation updates
Major changes in 2.19.4 are:
* Allow activating the zoom context menu by keyboard
* Allow renaming of the network servers icons
* Use new desktop capplet
* Better handling of unicode search terms
* Fix program name in about dialog
* Fix keyboard shortcuts in preferences dialog
* Fix leak in zoom context menu
* Fix typos in error and warning messages
* Fix crash in properties dialog
Major changes in 2.19.3 are:
* Added support for xdg-user-dirs
* A11y fix in the file properties dialog
* Build fix
* Don't show folder handler in menu editor
* Added alpha support for icon frames
* Updated thumbnail frame
Major changes in 2.19.2 are:
* Fix crashes and leaks
* Add open in place sidebar context menu
* Make default icon sizes match xdg icon sizes better
* Fix hang with recursive symlinks
* Make name column wider
* Add trash to places sidebar
* Support for thumbnail icon size preference
* Disk free pie chart in properties dialog
Major changes in 2.18.0.1 are:
* Reverted accidental commit
Major changes in 2.18.0 are:
* Fix up desktop file categories
* Some sparse code cleanups
* Don't make filename column expand
Major changes in 2.17.92 are:
* Don't display homedir as "desktop" in pathbar when in home-as-desktop mode
* Use GtkLabel ellipsizing
* Ellipsize filename column in list view
* Don't show unsupported methods in connect-to-server dialog
* Fix crashes
Major changes in 2.17.91 are:
* Change file management capplet category
* Avoid showing "empty" in the tree while loading directory
* Prompt for empty trash on unmount
* Capitalize lin" in "Link to ..." names
* Fix crashes and memory leaks
Major changes in 2.17.90 are:
* Add athena_file_info_get_activation_uri for extensions
* Zero-pad seconds in progress display
* Fix permissions of files created from templates
* Support multimedia keys
* Fix leaks
* Fix crashes
Major changes in 2.17.1 are:
* Empty trash button in trash
* New menu icons for new document/folder/window
* Ring buffer for debugging
* Fix spinner size
* Open location dialog on desktop defaults to home
* Remove metadata on external delete events
* Draw text selection rectangle using cairo
* Jump to selection on sort order change
* Fix gsequence crash
* Freeze icon view while renaming
* New theming features for icon view
* New icon in about dialog
* Handle scroll button while rubberbanding
* Ellipsize menu button at 16 chars
Major changes in 2.16.3 are:
* Revert a patch that caused icons to move around
* Fix crash introduced in 2.16.2
Major changes in 2.16.2 are:
* Fix a lot of crashes
* Handle throbbers with different sizes
* Don't add a newline when pasting filenames
* Better a11y relationships betweeen widgets
* Make athena --quit not be restarted by session
* Fix occasional stuck grabs when rubberband selecting
* Don't timeout typeahead when scrolling with mouse wheel
* Add X-GNOME-Bugzilla-Version to desktop files
* Fix desktop icon overlap problem
Major changes in 2.16.1 are:
* Default to search in current directory for non-indexed search
* Fix clash with symbol names in gtk+
Major changes in 2.16.0 are:
* Handle enter activation when using typeahead search
* Avoid using gnome_vfs_is_local in wrong places
* Translations
Major changes in 2.15.92.1 are:
* Fix crash on startup
Major changes in 2.15.92 are:
* Fix crash on changing owner/group of file
* Fix double free
* Make sure all strings are displayed translated
Major changes in 2.15.91 are:
* Use gtk recent files code
* Fix file change notification regression
* Don't display raw form of selinux contexts
* Import lates EggSequence with bugfixes
* DnD fixes
* Read .hidden symlinks
* Fix down navigation in last column, next to last row
Major changes in 2.15.90 are:
* Submenu support for extensions
* Improved beagle daemon detection
* Enable D'n'D reordering in the places sidebar
* New icons for trash operations
* Add a button/text toggle button to the location bar
* Fix leak
Major changes in 2.15.4 are:
* New permission dialog with recursion and selinx support
* Improve extension interface
* Add complete session management
* Handle removal of the displayed location more elegantly
* Use proper athena-cd-burner icon
* Support dropping uris, urls and text to subfolders
* Fix leaks and warnings
Major changes in 2.15.2 are:
* Don't allow formating of mounted floppies
* Perfomance fixes
* Don't use deprecated eel features
* Use less memory when thumbnailing
Major changes in 2.15.1 are:
* Improve startup performance
* Use GOption
* Fix selection box width calculation
* Improve file permission handling
* Add volume operations to the file menu, tree and places sidebar
* New po/LINGUAS handling
* Smarter date handling for images
* HIG fixes
* Fix various typos
* Fix about dialog to work with current gtk+
* Fix crashes
* Show network volumes in the places sidebar