summaryrefslogtreecommitdiff
path: root/NEWS
blob: f8fd1919c86d89b81901d74acbe4e137dd9b9aac (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1.6.12
======
- Fix deadlock in mutex causing Thunar to hang (Bug #13481)
- Add support for Exif:ImageDescription and Exif:UserComment
- Do not pass NULL to g_file_test
- Bump libxfce4panel version for TPA plugin to 4.9.0
- Switch from XfcePanelImage to GtkImage
- Fixed a compilation error with the newest dev panel API
- Translation updates: Catalan, Dutch (Flemish), Galician, Korean, Lithuanian,
  Spanish, Thai

1.6.11
======
- Fix a crash for on cut/pasting of multiple files (Bug #12260)
- Fix a crash when renaming files (Bug #12264)
- Fix missing return value for debug in thunar_file_reload (bug #12827)
- Fix thunar history being deleted after view change (bug #12708)
- Expand the name column by default in details view (#11357)
- Silently ignore G_IO_ERROR_FAILED_HANDLED (#8695)
- Fixing missing return value in standard view
- Fix crashes when reloading target file after move (bug #11983)
- Translation updates: Arabic, Asturian, Basque, Bulgarian, Catalan, Croatian,
  Danish, Dutch (Flemish), English (Australia), English (Great Britain), Finnish,
  French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Italian, Korean,
  Lithuanian, Norwegian Bokmal, Norwegian Nynorsk, Occitan, Portuguese,
  Portuguese (Brazilian), Slovak, Swedish

1.6.10
======
- Do not track thunar/thunar-marshal.{c,h} (Harald Judt)
- Remove Makefile and Makefile.in files when running distclean (Harald Judt)
- Remove subversion $Id$ tags (Harald Judt)
- Really fix trash state at startup (bug #9513 and #11913) (Harald Judt)
- Use proper return type for thunar_file_reload (bug #11913) (Harald Judt)
- Revert "Fix loading the trash bin status at startup (bug #9513)" (Harald Judt)

1.6.9
=====
- Fix ThunarBulkRename script not supporting spaces (bug #9713) (Harald Judt)
- Use "Name" column for drag & drop instead of first column (bug #11905) (Harald Judt)
- Update the path entry icon when current file changes (Harald Judt)
- Revert changes for restoring the trash in the session client (bug #9513) (Harald Judt)
- Fix loading the trash bin status at startup (bug #9513) (Harald Judt)
- Turn off building gtk-docs API reference (Harald Judt)
- Fix cppcheck warning about uninitialized variable (Harald Judt)
- Disable "Set as default application" by default in the chooser dialog (bug #10548) (Harald Judt)
- Remember chosen application in the chooser dialog as last used (Harald Judt)
- Remember the last used application when opening files (Harald Judt)
- Fix reload when file is replaced with directory of the same name (Harald Judt)
- Do listen for G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED (bug #11896) (Harald Judt)
- Fix comments for toggle-menubar (Harald Judt)
- Allow opening by middle-click in tree view only for mounted devices and resources (Harald Judt)
- Keep selection in original tree view when middle-clicking for new tab/window (Harald Judt)
- Keep path selected after unmounting a device via KEY_Left (Harald Judt)
- Unmount device if collapsing a collapsed device tree with KEY_Left in the tree view (Harald Judt)
- Fix wrong network icon shown in tree view (Harald Judt)
- Fix tree view opening mounted devices in new tab (Harald Judt)
- Use only open selection instead of open action with KEY_Up and KEY_Down (Harald Judt)
- Fix assertion when hitting KEY_Left on a top-level item in the tree view (Harald Judt)
- Revert workaround for desktop toplevel item in the tree view (Harald Judt)
- Always select the proper toplevel item in the thunar tree view (Harald Judt)
- Unescape URI in history error message (Harald Judt)
- Remove unmounted files from history when going back or forward (Harald Judt)
- Translation updates: Basque, French, Galician

1.6.8
=====
- Watch for CHANGES_DONE_HINT instead of CHANGED and ATTRIBUTE_CHANGED (bug #8377) (Harald Judt)
- Shortcut view: Fix "selection in selection" graphical bug when renaming shortcut (Harald Judt)
- Fix broken shortcut renaming (bug #11885) (Harald Judt)
- Unescape URIs in the shortcut view (bug #10831) (Harald Judt)
- Fix compiler warning because of missing curly braces (Harald Judt)
- Fix compilation error because of wrong variable name (Harald Judt)
- Fix unescaping of local paths in path entry (bug #8190) (Harald Judt)
- Fix escaping and unescaping URI in path entry (bug #8910) (Harald Judt)
- Let the tree view keep the focus when clicking on an item (bug #11863) (Harald Judt)
- Fix switching to the 10th tab via <alt>-<0> keyboard shortcut (Harald Judt)
- Fix removal of a directory wrongly affecting the current tab (bug #10981) (Harald Judt)
- Keep the scroll position when restoring the file selection (Harald Judt)
- Restore selection only when rows-reordered signal is received (bug #11855) (Harald Judt)
- For folders copied always append "copy #" to the end of their names (bug #11862) (Harald Judt)
- Update F5 binding for new ThunarWindow::reload signal (Evangelos Foutras)
- Do not perform the complete folder reload in idle (bug #11849) (Harald Judt)
- Coverity CID 60623: Unused value (Harald Judt)
- Coverity CID 60621: Missing return statement (Harald Judt)
- Coverity CID 60620: Explicit null dereferenced (Harald Judt)
- Coverity CID 60619: Explicit null dereferenced (Harald Judt)
- Coverity CID 60617: Unchecked return value (Harald Judt)
- Remove unused variable in thunar_standard_view_set_history (Harald Judt)
- Remove startup notification dependencies (bug #11837) (Harald Judt)
- Translation updates: Galician, German, Lithuanian

1.6.7
=====
- Improve drag & drop and selecting in the details view (bug #11605) (Harald Judt)
- Let row changes accumulate a bit before restoring selection (Harald Judt)
- Implement reloading file information on manual reload (Harald Judt)
- Extend reload functions to allow a full reload (Harald Judt)
- Check in thunar-marshal with new _thunar_marshal_BOOLEAN__BOOLEAN (Harald Judt)
- Reload files changed by jobs in an idle loop (bug #11008) (Harald Judt)
- Refactor code for moving thumbnail cache file on renames/moves (Harald Judt)
- Rework thunar_file_monitor to properly register moved files (Harald Judt)
- Add function to reload parent file of a file (Harald Judt)
- Fix updating file info for moved files (bug #11008) (Harald Judt)
- Revert "Refresh file info after getting it from cache (bug #11008)" (Harald Judt)
- Update the location bar after reload (bug #10518) (Harald Judt)
- Fix updating custom actions (bug #11749) (Harald Judt)
- Update rows on changes of case-sensitive and folders-first settings (Harald Judt)
- Fix typos and grammar mistakes in a few comments (Harald Judt)
- Make new windows inherit the history of the origin view (bug #5538) (Harald Judt)
- Make new tabs inherit the history of the origin view (bug #5538) (Harald Judt)
- Keep the history across view changes (bug #10171) (Harald Judt)
- Implement functions for copying the history of a view (Harald Judt)
- Rename tsv_restore_selection to tsv_select_after_row_deleted (Harald Judt)
- Redraw the details view on row changes (Harald Judt)
- Restore selection on row changes too (bug #9886) (Harald Judt)
- Improve mouse wheel zoom behaviour (Harald Judt)
- Remember and restore file selection on view changes (Harald Judt)
- Restore file selection when changing sort order (bug #9886) (Harald Judt)
- Update model with changed binary file size setting immediately (Harald Judt)
- Fix typo busy_pulse in thunar-shortcuts-model.c (Harald Judt)
- Fix typo in thunar-clipboard-manager (Harald Judt)
- Fix Gdk-CRITICAL error (Thaddaeus Tintenfisch)
- Clean up more files with make clean (Harald Judt)
- Rework usage of binary file size properties (bug #11450) (Harald Judt)
- Remove duplicate break statement in thunar-standard-view (Harald Judt)
- Fix compiler warning about shadowing 'basename' (bug #11633) (Matt Thirtytwo)
- thunar/thunar-dbus-service-infos.xml corrections (Thaddaeus Tintenfisch)
- Fix startup id handling for launch requests over D-Bus (bug #9646) (Thaddaeus Tintenfisch)
- Fallback to non-cached version of source file (bug #9142) (Thaddaeus Tintenfisch)
- Translation updates: Chinese (China), Croatian, English (Australia), French, German,
  Greek, Italian, Lithuanian, Polish, Swedish, Ukrainian

1.6.6
=====
- Removed GNU extension -i from sed (Peter de Ridder)
- Bump default size of file properties dialog a bit (Harald Judt)
- Respect the "View new folders using" preference (bug #11606) (Harald Judt)
- Improve check for shell scripts and add hidden option for bug #7596 (Harald Judt)
- Fix some GTK_STOCK icon usages resulting in missing icons (bug #11608) (Jani Välimaa)
- plugins/thunar-wallpaper: Fix icon (Jani Välimaa)
- Fix icon name for folders and a memory leak (bug #11608) (Harald Judt)
- Also query for network location icons (Nick Schermer)
- Don't use deprecated function (Nick Schermer)
- Secure threading in the idle thumbnail loading (Nick Schermer)
- Sidepane treeview: Do not switch folder when clicking a row expander (Harald Judt)
- Fix cppcheck possible errors/warnings (Harald Judt)
- Hide template file extensions in context menu (bug #11571) (Thaddaeus Tintenfisch)
- thunar-wallpaper: Fix translation in applications other than thunar (Harald Judt)
- thunar-wallpaper: Check if file is really an image (bug #11565) (Thaddaeus Tintenfisch)
- Update another copyright string (Harald Judt)
- Fix endless rename loop in case of error on the properties dialog (bug #11557) (Harald Judt)
- Translation updates: Asturian, Bulgarian, Finnish, French, German,
  Norwegian Bokmål, Romanian, Slovak, Spanish

1.6.5
=====
- Bump autotools versions
- Add .gitignore
- Do not execute but only open shell scripts by default (bug #7596) (Harald Judt)
- Fix typo in error message (Nick Schermer)
- Improve keyboard navigation for thunar-tree-view (bug #4519) (Harald Judt)
- Allow <ctrl> + middle click in shortcut and treeview panes (Harald Judt)
- Set correct dialog window hint for progress dialog (bug #11467) (Matt Thirtytwo)
- Refresh file info after getting it from cache (bug #11008) (Peter de Ridder)
- Remove unused enum for signal handlers (bug #11493) (Matt Thirtytwo)
- Simplify Makefile.am. Generated files are separated from typed source files (Matt Thirtytwo)
- thunar-tpa: Install desktop file to $(datadir)/xfce4/panel/plugins (Robby Workman)
- Fix anchor offset in xfce_dialog_show_help () function. (Olivier Duchateau)
- Properly handle m4 stuff (Harald Judt)
- TWP: Single-workspace-mode = TRUE is the default (Bug #11047) (Eric Koegel)
- thunar-wallpaper: Do not use escaped filenames for xfconf (Harald Judt)
- Use xfconf and handle xfdesktop's single workspace (Bug #11047) (Eric Koegel)
- Revert "Workaround for crashes on RHEL5" (Andrzej)
- Revert "Fallback to image surface, workaround for bug in Cairo/RENDER" (Andrzej)
- Renaming a file from another file manager, file disappears in Thunar window (bug #11430) (Andrzej)
- Make usage/free string more clear (bug #11345) (Harald Judt)
- Make single middle click open files and folders (bug #10587) (Harald Judt)
- Add a progressbar to the freespace indicator in the properties dialog (Harald Judt, Simon Steinbeiss)
- Change resize style in thunar-wallpaper plugin (Thaddaeus Tintenfisch)
- Add vim modeline. Remove obsolete '$Id$' line (Matt Thirtytwo)
- Right click context menu with wrong icon (bug #10652) (Andrzej)
- Translation updates

1.6.4
=====
- make distcheck fix (reference docs linking error) (Andrzej)
- Add support for binary file size units (bug #10864) (Andre Miranda)
- Strip trailing spaces/Github test (Nick)
- Fix case of Xfce in appdata description (Simon)
- Update intltool (Eric)
- Add pkexec policy (Bug #11122) (Eric)
- Remove trailing whitespace from Makefile to prevent warning (Simon)
- Add appdata file for Thunar (Bug 11172) (Eric)
- Check for thumbnails in the new location (Bug #11263) (Eric)
- Default application not respected with glib >= 2.41 (Bug #11212) (Guido)
- Add support for the GTK 3 bookmarks file (bug #10627) (Alistair)
- Update xfconf setting for thunar-wallpaper plugin (Eric)
- Update copyright. (Nick)
- thunar-tpa: fix libxfce4panel version checking macros (Andrzej)
- Fallback to image surface, workaround for bug in Cairo/RENDER (Andrzej)
- Fixed missing inode-directory/folder icons on old systems. (Andrzej)
- Change name of file copies (and links) (bug #7518). (Nick)
- Improve the extension selection to not match hidden names. (Nick)
- Safe accels 10 sec after changes (bug #10139). (Nick)
- Force icons on the toolbar (bug #10179). (Nick)
- Improve handling of renames (bug #10242). (Nick)
- Smarter file extension selecting (bug #10268). (Jeff Shipley)
- I18n: Remove broken / unsupported translations. (Nick)
- Force reference on files from the cache. (Nick)
- Drop README.thunarrc. (Nick)
- Translation updates.

1.6.3
=====
- Autotools updates.
- Allow keyboard shortcuts for user customizable actions (bug #1941).
- Prepend and later reverse for collecting selection.
- Some optimizations in renamer loop.
- Plug leak in file renamer (bug #9864).
- Escape name for sidepane tooltips (bug #10001).
- Revert "Remove image resolution from statusbar."
- Fix segfault when going back to removed directory (bug #9831).
- Translation updates: Arabic, Bulgarian, Catalan (Valencian), Czech, 
  Spanish (Castilian), French, Hebrew, Croatian, Hungarian, Indonesian, 
  Italian, Japanese, Kazakh, Korean, Dutch (Flemish), Norwegian 
  Nynorsk, Polish, Portuguese, Portuguese (Brazilian), Russian, 
  Slovenian, Serbian, Ukrainian, Chinese (China), Chinese (Taiwan).

1.6.2
=====
- Don't abort startup if dbus failed.
- Put * around string if * and ? are not used in the pattern.
- Revert "Remove right-click drag possibility (bug #3549)."
- Revert "Directly popup menus on selected items (bug #3550)."
- Update shortcuts headers when removing a shortcut (bug #9651).
- Implement tab middle click in location buttons (bug #9684).
- Add new tab option to right-click menu of location buttons.
- Small improvement in thumbnail frame.
- Key combos not working with location buttons (bug #9625).
- Open tree node if expanded and mounted (bug #9603).
- Use some more cairo renderering.
- Make Desktop in Go menu translatable (bug #9616).
- Send to menu not updated for directories (bug #9618).
- Fix freeze on /proc/kmsg.
- Show all volumes in the devices list.
- Removed translations: Dzongkha, Kazakh, Kurdish, Macedonian.
- Translation updates: Arabic, Czech, Italian, Japanese, 
  Georgian, Korean, Dutch (Flemish), Polish, Portuguese,
  Russian, Ukrainian.

1.6.1
=====
- Fix bulk renamer url to the wiki.
- Show NoDisplay=true applications (bug #9595).
- Fast read content type of unreadable files (bug #9553).
- Submenu the sidepane visibility menu.
- Hide shortcut pane header when there are no items.
- Keybindings to switch to tab with Alt+N (bug #9585).
- Make tabs scrollable.
- Session-save mount operation passwords.
- Check trash status 2s after startup from session.
- Clear mutex to avoid memleak with 2.32 api.
- Fix file menu displacement after a forced update (bug #9604).
- Put remote bookmarks in places and improve icon loading.
- Use ThunarBrowser to resolve locations in launcher.
- Translation updates: Amharic, Arabic, Asturian, Belarusian, 
  Bengali, Catalan (Valencian), Czech, Danish, German, Dzongkha, Greek, 
  English (United Kingdom), Esperanto, Spanish (Castilian), Estonian, 
  Basque, Finnish, French, Galician, Hebrew, Croatian, Hungarian, 
  Indonesian, Icelandic, Italian, Japanese, Georgian, Kazakh, Korean, 
  Kurdish, Lithuanian, Latvian, Macedonian, Norwegian Bokmal, Dutch 
  (Flemish), Norwegian Nynorsk, Panjabi (Punjabi), Polish, Portuguese, 
  Portuguese (Brazilian), Romanian, Russian, Sinhala, Slovak, Albanian, 
  Serbian, Swedish, Telugu, Turkish, Uyghur, Ukrainian, Urdu, Urdu 
  (Pakistan), Vietnamese, Chinese (China), Chinese (Taiwan).

1.6.0
=====
- Drop spacing betweek Kind and icon in file properties.
- Make sure trash is loaded during session restore (bug #9513).
- Don't open a useless tab (bug #9519).
- Remove session file if there are no windows (bug #9519).
- Add special tooltip for the trash in shortcuts.
- Revert "Improve pervious commit.. (bug #9552).
- Slightly increase the progress dialog (bug #9545).
- Set icon names in go menu (bug #9559).
- Hide spinner when there's no activity (bug #9563).
- Fix sorting by type (bug #9549).
- Remove the display names from the emblems (bug #9548).
- Test if the application generated a thumbnail if not supported.
- Translation updates: Czech, Danish, German, Hebrew, Croatian,
  Hungarian, Italian, Japanese, Dutch (Flemish), Polish, Portuguese,
  Portuguese (Brazilian), Romanian, Russian, Ukrainian, Chinese
  (Taiwan).

1.5.3
=====
- Re-add the has-handler check when inserting rows.
- Use g_object_notify_by_pspec in most places.
- Install GParamSpec properties at once in a couple of objects.
- Update the statusbar in a short timeout.
- Remove image resolution from statusbar.
- Fix supported applications for multiple files.
- Idle updating the launcher.
- Don't queue tumbler requests for non-regular files.
- Pass the correct emblem size to the icon factory.
- Store cairo surfaces on pixbufs.
- Right-click on not-selected row will show menu of current folder
  in details view (bug #3386).
- Load content types on-demand and preload in an idle.
- Use origional date in properties page for images.
- Add option to only show local thumbnails.
- Translation updates: Arabic, Czech, German, Italian, Kazakh, 
  Korean, Polish, Portuguese, Russian, Ukrainian, Chinese (China), 
  Chinese (Taiwan).

1.5.2
=====
- Do not unref g_file_icon_get_file() file (bug #9439).
- Don't add duplicates of devices (bug #9440).
- Fix typo of Trash in standard view (bug #9437).
- Don't use deprecated g_thread_init().
- Use GArray instead of GValueArray and new mutex API.
- Clear cached icon when trash changed (bug #9432).
- Also clear cache on reload of a file.
- Keep file permissions when renaming a desktop file.
- Write localized name of a desktop file (bug #8783).
- Fix back/forward gestures and 8/9 button events.
- Use seconds timers where possible.
- Idle selecting item in shortcuts pane.
- Do not set selection after removing files (bug #8780).
- Fix linking on Cygwin (bug #4561).
- Sort renamer list by clicking on name header (bug #2622).
- Always set the icons size of the toolbar.
- Make the entry the default location bar.
- Don't set weight in chooser model to light (bug #7688).
- Fallback to only default values if xfconf failed.
- Improve generating remote display names (bug #9442).
- Remove user directories and add bookmarks in go menu.
- Trigger callback function when opening unmounted locations (bug #9447).
- Don't add a bookmark to the same location twice.
- Also watch the bookmark files.
- Use stock home icons for ~.
- Do not freeze on new files outsize this directory (bug #9468).
- Some more optimizations in icon name loading.
- Don't include notify.h if not available (bug #9480).
- Add free space tooltip for devices.
- Use GSequence in the list model.
- Directly collect the full info namespace for ls dir.
- Drop unused check for icons of executables.
- Don't write empty session files.
- Add support for tabs in session saving.
- Translation updates: Amharic, Arabic, Asturian, Belarusian,
  Bengali, Catalan (Valencian), Czech, Danish, German, Dzongkha, Greek,
  English (United Kingdom), Esperanto, Spanish (Castilian), Estonian,
  Basque, Finnish, French, Galician, Hebrew, Croatian, Hungarian,
  Indonesian, Icelandic, Italian, Japanese, Georgian, Kazakh, Korean,
  Kurdish, Lithuanian, Latvian, Macedonian, Norwegian Bokmal, Dutch
  (Flemish), Norwegian Nynorsk, Panjabi (Punjabi), Polish, Portuguese,
  Portuguese (Brazilian), Romanian, Russian, Sinhala, Slovak, Albanian,
  Serbian, Swedish, Telugu, Turkish, Uyghur, Ukrainian, Urdu, Urdu
  (Pakistan), Vietnamese, Chinese (China), Chinese (Taiwan).

1.5.1
=====
- Show custom commands again in the menus (bug #9169).
- Drop usage of glib 2.32 functions.
- Allow resizing of chooser dialog.
- Don't abort on non-utf8 charaters in path entry.
- Don't show drive icon for remote mounts in history.
- Release all ThunarFiles when closing a view, this should resolve
  mounts that were empty after unmounting.
- Show tooltip uri/filename in history menu item.
- End with a / in the path entry.
- Add function to generate nice remote display names.
- Easy adding bookmarks for remote mounts.
- Do not call eject in thunar_device_volume_mount_finished.
- Reduce tumbler traffic on startup of Thunar.
- Use drive_stop in device handling.
- Put reload button in location entry.
- Create pull-down history buttons and remove arrows.
- Shortcut pane: Do not mount after eject (bug #9403).
- Use go-home icon name for menu and toolbar.
- Drop the separators in the toolbar.
- Extend history tooltips to describe functionality of the button.
- Avoid segfault with null mime-type (bug #8390).
- Implement tabs in Thunar (bug #6102).
- Do not try to mount a device twice in treeview (bug #9412).
- Keep delaying selecing files if not loaded yet (bug #7328).
- Slightly toned thumbnail frame.
- Make loading priority in shortcuts model higher.
- Collect properties at once in window_init.
- Use infobar for root warning in window.
- Option to set small toolbar icons (bug #3971).
- Avoid crash when toplevel window cannot be found (bug #9417).
- Revert "Remove XdndDirectSave0 protocol." (bug #9414).
- Rename filename of insecure desktop files (bug #8786).
- Cache pixmaps on the ThunarFile and drop ring buffer.
- Add lazy checks to thumbnailer.
- Add menu item for permanent delete.
- Only show "Move to Trash" if trash is supported.


1.5.0
=====
- Add support for multiple selections in file preferences dialog.
- Depend on Gtk 2.24 and Glib 2.30.
- Implement selection inversion.
- Improve refresh feedback when using dnd between 2 windows.
- Resize rename dialog based on filename length (bug #7684).
- Force bulk renamer when Shift is pressed (bug #7684).
- Add a sentence case rename mode to sbr.
- Regenerate thumbnails on file changes (bug #8473).
- Hide recommended applications that are not visible (bug #9169).
- Sort recommended applications (bug #8927).
- Use system-file-manager icon-name in desktop file (bug #9128).
- Check mime type in desktop files in the sendto menu (bug #7392).
- Improvement in the file progress dialog.
- Show full template filename in menu (bug #6140).
- Store metadata (emblems) in GVFS's daemon.
- Use Path from desktop file as CWD (bug #5760).
- Add working directory entry to apr (bug #5760).
- Add hidden option to show full path in window title (bug #6412).
- Unset DBUS variables once registered (bug #8800).
- Only collect image data if the mime-type is image/* (bug #2913).
- Don't copy templates but create them (bug #8312).
- Add menu item to hide the menu bar.
- Improve statusbar selection text (bug #8989).
- Don't allow starting multiple daemons (bug #3814).
- Make massing plugin warnings non-fatal (bug #2604).
- Show transfer rate in transfer dialog (bug #8250).
- Check free space before copying (bug #5658).
- Port settings to xfconf.
- Handle null content-types when sorting (bug #8465).
- Scroll to first file with pattern select.
- Add secure desktop file launching (bug #5012).
- Use g_utf8_collate_key_for_filename for sorting (bug #7110).
- Only deep-count on the same filesystem.
- Don't force scrolling to the window edge.
- Translation updates: Amharic, Arabic, Asturian, Belarusian,
  Bengali, Catalan (Valencian), Czech, Danish, German, Dzongkha, Greek,
  English (United Kingdom), Esperanto, Spanish (Castilian), Estonian,
  Basque, Finnish, French, Galician, Hebrew, Croatian, Hungarian,
  Indonesian, Icelandic, Italian, Japanese, Georgian, Kazakh, Korean,
  Kurdish, Lithuanian, Latvian, Macedonian, Norwegian Bokmal, Dutch
  (Flemish), Norwegian Nynorsk, Panjabi (Punjabi), Polish, Portuguese,
  Portuguese (Brazilian), Romanian, Russian, Sinhala, Slovak, Albanian,
  Serbian, Swedish, Telugu, Turkish, Uyghur, Ukrainian, Urdu, Urdu
  (Pakistan), Vietnamese, Chinese (China), Chinese (Taiwan).

1.4.0
=====
- Add a 64x64 and 128x128 icon for Thunar.
- Move away from the hard-coded size of window icons (bug #8626).
- Link against gmodule (bug #8467).
- Don't use deprecated g_format_size_for_display.
- Don't use g_atexit anymore.
- Use mount operations with eject and unmount.
- Unref mount operation from sendto menu.
- Fix invalid replacement from previous commit (bug #8779).
- Translation updates: German, English (United Kingdom), Croatian,
  Hungarian, Japanese, Kazakh, Korean, Dutch (Flemish), Polish,
  Portuguese (Brazilian), Romanian, Chinese (China).

1.3.2
=====
- Support small property for trash panel applet (bug #8391).
- Make uca.xml readable for humans.
- Enable startup-notify in the uca example.
- Hide thumb queue cleanup debug and plug memleak.
- Plug more leaks in thumbnailer.
- Reload ThunarView if job finishes.
- Use macro to get uri where possible.
- Free string in progress view.
- Fix file selection problems.
- Free module list in provider factory.
- Use a normal ExoBinding to avoid mem leak.
- Bump 4util and 4ui dependencies.
- Use macro to search for sed (bug #8686).
- Translation updates: Catalan (Valencian), Czech, Greek, Basque,
  Finnish, French, Galician, Croatian, Japanese, Korean, Dutch
  (Flemish), Norwegian Nynorsk, Portuguese, Portuguese (Brazilian),
  Turkish.

1.3.1
=====
- Fix crash when trying to thumbnail a file with unknown content type.
- Fix properties dialog crash with files with unknown content type.
- Fix crash when hovering a CD drive with a special icon (bug #7309).
  Reported and solved by Ambroz Bizjak.
- Use portable abicheck.sh from xfconf.
- Avoid segfaults due to interpreting display names as format strings.
- Improve the UI according to bugs #7496 and #7497.
- Treat backup files as hidden as with thunar-vfs (bug #7615).
- Fix crash when opening a mountable drive with no media (bug #7308)
  in a way that does not break SMB shares (#bug 7774).
  Patches by Ambroz Bizjak and Axel Sommerfeldt.
- Fix segfaults in case icons are missing or not found (bug #7880).
- Allow exec bit of MS-DOS executables and MSI to be changed
  (bug #3545).
- Prevent falling back to an unexpected locale (bug #4746).
  Patch by Martin Jürgens and Mark Trompell.
- Show translated names of desktop files (bug #7393).
  Fix by Lionel Le Folgoc<lionel@lefolgoc.net>.
- Fix sorting of filenames with large numbers (bug #5356).
  Patch by Eric Koegel.
- Respect ThunarIconFactory::show-thumbnails. Fixes a regression.
- Fix crash when removing an ancestor of the current folder (bug #8168).
- Fix handling %U when launching multiple files with an app (bug #7456).
- Improve sorting of file names that include numbers (bug #5359,
  bug #8022, #4269, #5286).
- Add a "Skip All" button to the file overwrite dialog (bug #4263).
- Compress icons and images.
- Remove the manual.
- Use 32 instead of 36 pixels for small icons.
- Show Thunar settings in category.
- Don't update UI more then fourth per second in deep count job.
- Fix sorting of applications in chooser dialog.
- Depend on Gtk 2.20 and Glib 2.24 and drop some workarounds.
- Fix removing custom application launchers again.
- Prevent looping in some renamers.
- Fix segfault when plugin returns a NULL suffix.
- Remove spec file, rpm build and update libtool.
- Lowercase the thunar executable and install a Thunar symlink.
- Make the clipboard persistence (bug #7060).
- Use glib functions for get/set cwd (bug #7522).
- Don't interpret file display names as format strings
- Translation updates (ar, ca, cs, da, de, el, es, eu, fi, fr, gl, he,
  hr, hu, id, is, it, kk, ko, lt, nl, nn, pl, pt, pt_BR, ro, ru, sk,
  sv, te, tr, uk, zh_CN, zh_TW).

1.3.0
=====
- Paste files in correct order (bug #6504).
- Fix truncated strings when loading and storing emblems (bug #7171).
- Only erase top-level items from trash (bug #7147).
- Don't interpret file display names as format strings (bug #7128).
- Ship stock_folder-copy.png and stock_folder-move.png icons with
  Thunar itself (bug #6851).
- Fix segfault when calling strcasecmp with NULL parameters (bug #7206).
- Only change the Name field when renaming desktop files (bug #7155).
- Force desktop file reload after changing the Name field.
- Fix memory leak caused by not destroying the rename job.
- Allow installation of helper scripts in a custom location using the
  --with-helper-path-prefix=PATH configure option.
- Improve thumbnailing by avoid sending thumbnail requests while the
  user is scrolling in a directory.
- Cancel thumbnail requests when leaving a directory.
- Avoid regenerating thumbnails when files are copied, moved, linked
  or trashed.
- Update the thumbnail cache when files are deleted permanently.
- Translation updates: Galician, Polish, Portuguese, Romanian, Serbian.

1.2.0
=====
- Properly try alternative names when creating links (bug #6867).
- Only show the "Eject Volume" context menu action when the volume is
  present.
- Translation updates: Arabic, French, Galician, Greek, Romanian,
  Turkish.

1.1.6
=====
- Fix unused variable warning when building with GLib < 2.20.
- Fix file operation status icon not disappearing by hiding the icon
  prior to destroying it (bug #6891). Patch by Xavier D.
- Fix Gtk 2.16 function.
- Fix twp plugin for images with a quote in file name (bug #5056).
- Bump copyrights to 2011.
- Translation updates (zh_TW, de, cs, fi, uk, pt, ru, nb, ja,
  de, en_GB, sv, id, hr, ar).

1.1.5
=====
- Make .desktop entries installed by Thunar validate against
  desktop-file-utils 0.16 (bug #6655). Patch by Samuli Suominen.
- Fix missing instruction to load the sendto model (bug #6762).
- Fix the sample D-Bus client for the org.xfce.FileManager interface.
- Fix home folder being displayed as "Desktop" if $HOME is set to
  /home/username/Desktop.
- Fix outdated Thunar D-Bus API usage in the trash panel applet.
- Create user dirs instead of showing an error if they don't exist.
- Allow scrolling in the 'Open With' combo box of the file properties
  dialog (bug #3055).
- Expand filenames starting with './' based on the current working
  directory instead of home (bug #3451).
- Print an error if thunar-settings fails to contact the file manager
  service (bug #6547).
- Permanently delete files if at least one of them cannot be trashed
  (bug #6748).
- Fix a typo in configure.in.in (bug #6724).
- Include panel macro header (bug #6680).
- Use GTK_STOCK_FILE as the fallback icon for files (bug #6662).
- Fix compiler warnings about shadowed variables.
- Use Name field as display name of desktop entries (bug #6860).
- Fix a memory leak in thunar_transfer_job_execute().
- Fix a segmentation fault when reloading files.
- Avoid GIO 2.20 function calls.
- Properly avoid launching the file manager recursively by checking
  the GAppInfo id/name.
- Translation updates: Hungarian, German, Slovak,
  Portuguese (Brazilian), Chinese (China), Greek, Catalan (Valencian),
  Italian, Basque, Spanish (Castilian), Kazakh, Portuguese, Hebrew,
  Galician, Indonesian, Chinese (Taiwan), Japanese.

1.1.4
=====
- Add startup parameter to the D-Bus call in thunar-settings (bug
  #6768). This will make thunar-settings start again.
- Properly hide partitions that are not mountable by the user.
- Translation updates: Japanese, Finnish.

1.1.3
=====
- Add new D-Bus methods:
  - Execute()
  - CreateFileFromTemplate()
  - CreateFile()
  - RenameFile()
- Properly remember the default handler for a file / content type (bug
  #6167).
- Replace - with _ in parameter names of the D-Bus API.
- Do not display shadowed mounts.
- Provide an eject button for removable and present volumes in the
  side pane (bug #3658).
- Auto-select previously selected subdirectories when walking through
  the history (bug #5538).
- Delay applying the file selection until folders have finished
  loading.
- Fix broken compilation with -Wl,-z,defs and -Wl,--as-needed.
- Translation updates: Basque, Chinese (Taiwan), Ukrainian, Galician,
  Portuguese, Catalan (Valencian), Finnish, Italian, Danish, Kazakh,
  Swedish, Greek, Japanese, Russian, German, Uyghur.

1.1.2
=====
- Move helpers from $libexecdir to $libdir/Thunar.
- Fix replacing @docdir@ in ThunarHelp.
- Move panel plugin to $(libdir)/xfce4/panel/plugins.
- Move manual translations to docs/manual/po.
- Abort dist when validating the xml file fails.
- Wait for a reply in thunar-settings.
- Add CopyTo, CopyInto, MoveInto, LinkInto, UnlinkFiles
  D-Bus methods.
- Add startup-id to more D-Bus methods.
- Move LaunchFiles to org.xfce.FM.
- Remove README.volumes and ThumbnailersCacheFormat as
  those are specific to thunar-vfs.
- Display content type in the file properties dialog
  tooltip (bug #2369).
- Translation updates (kk, pt, ca, fr, da, fi, it, uk, he, de,
  zh_TW, gl)

1.1.1
=====
- Port the code related to thunar-volman to udev. This is an optional
  part of Thunar. The consequences are that instead of calling
  thunar-volman with HAL UDIs, we'll now call thunar-volman with
  sysfs paths. For this to work, a more recent version of thunar-volman
  is required: 0.5.0.
- Re-implement mount/eject notifications based on libnotify.
  Notifications were gone after the port to GIO because we no longer
  used exo-mount to mount or eject devices.
- Fix segfaults when loading image icons.
- Force a folder reload when the new_file closure is finished (bug
  #6409).
- Update the trash panel plugin to the new panel framework.
- Create status icon only when we're actually going to display it.
- Change CWD before spawning applications in ThunarLauncher.
- Fix browsing shortcuts and mountables in ThunarLauncher.
- Synchronize ThunarListModel sorting with detailed list view
  captions.
- Fix sorting by type in ThunarListModel (bug #6143).
- Refilter the tree model when a hidden dir is entered/left (bug
  #6142).
- Properly update the cursor when a row is deleted (bug #5361).
- Use stock icons and standard icon names where appropriate (bug
  #6133).
- Updated translations: Kazakh, Hebrew, Greek, Italian, Chinese
  (Taiwan), Indonesian, Croatian, Bengali, German, Slovak, French,
  Uyghur, Turkish, Galician, Spanish (Castilian), Russian, Sinhala,
  Ukrainian, Portuguese (Brazilian), Danish, Basque, Finnish, Czech.

1.1.0
=====
- Replace ThunarVFS with GIO. There will be a separate maintenance
  release of ThunarVFS soon after this release. All functionality
  previously based on ThunarVFS is now implemented on top of GIO
  and GVfs. This means that remote filesystems can be accessed via
  SFTP, FTP, SMB etc. For this as well as the trash feature GVfs
  is required. Thunar does not depend on it because GVfs is a set
  of GIO extensions and there is no guarantee for those to be
  available at runtime if they are installed at buildtime. This is left
  for distributions to set up properly.
- Thumbnails are now generated using the thumbnail management D-Bus
  specification. One implementation of this specification is Tumbler
  which is released independently.
- Bump the API version of Thunarx to 2 because symbols related to
  ThunarVFS were removed and replaced by new symbols dealing with GIO.
  This requires all existing plugins to be updated and linked against
  thunarx-2 instead of thunarx-1.
- Show "Network" item in the side pane and the "Go" menu if the
  network:// URI scheme is supported by GIO (via an extension). Make
  the "Trash" item optional too.
- Use a single shared progress dialog for file operations instead of
  individual dialogs for each operation. The visual information in this
  shared dialog still has to be improved (work on this has been started
  in an experimental branch).
- Use g_utf8_strlen to calculate the side pane width (bugs #3965, #5390)
- Add startup ID parameter to the BulkRename and LaunchFiles D-Bus methods
  in order to support startup notification over D-Bus.
- Avoid requesting drag data if the drag target is GDK_NONE (bug #5771).
- Add startup notification support to the custom actions plugin.
- Use install-exec-hook for installing the thunar symlink (bug #5835).
- Use silent build rules if available.
- Use libxfce4ui instead of libxfcegui4.
- Depend on xfce4-dev-tools >= 4.7.2 to get rid of custom configure code.
- Depend on exo-1 >= 0.5.1.
- Updated translations: German, French, Chinese, Portuguese, Czech, Slovak,
  Latvian, Basque, Danish, Asturian, Japanese, Galician, Spanish, Greek,
  Turkish, Russian, Swedish, Catalan, Albanian, Kazakh.

1.0.1
========
- Put quotes around filenames in thunar-wallpaper-plugin (bug #5056)
- Apply umask properly when creating files/directories.
  Patch by Giovanni Bechis (bug #3532).

1.0.0
========
- Fix crash when entering the same hidden directory twice in the
  location entry (bug #4847).
- Pass the current event time to startup notification, so focus
  stealing works properly.

0.9.99.1
========
- Optional nano version added to configure.in.in.
- Update Danish, Norwegian Bokmal, Simplified Chinese and Turkish
  translations.

0.9.93
======
- Fix crash in the tree side pane when hidden files are toggled (bug #2502).
- Always show an error dialog if one of the files passed via the command
  line cannot be opened.
- Only show eject option for devices when requires_eject is TRUE (bug #3978).
- Fix crash when cd drive is ejected (bug #4257).
- Use posix_fadvise() for copying large files.
- Use -V for version information.
- Restore the selection after deleting a file (bug #3884).
- Fix completion in the path bar when ~/ is used (bug #2973).
- Change the tooltip of the trash plugin from "Trash is full" to
  "Trash contains files" (bug #3266).
- Popup the location selector when the dead tilde is pressed. This allows
  people with dead keys to use the location selector.
- Unload folders in the tree side pane when they are collapsed (bug #4051).
- Don't monitor /proc and /dev on Linux systems.
- Implement window groups so modal dialogs don't block other Thunar
  windows (bug #3586).
- Open a question dialog before removing a custom action (bug #3838).
- Make the first alpha numeric character upper-case in the case renamer
  (bug #3559).
- Update links to the Glib reference manual in the docs (bug #4555).
- Only respond to the predefined key bindings for deleting files when
  the user has not set a custom accelerator (bug #4173).
- Implement menu providers in the side pane popup menus (bug #2740).
- Unmounted volumes are 50% translucent so give some visual feedback.
- Add rename option to the tree side pane popup menu.
- Don't go back in the history anymore if the new directory is the first
  one in the backward history (bug #4660).
- Implement reorder, positioned drag and drop and rubberbanding in the
  renamer dialog (bug #3325).
- Change Name value of the desktop entry to "Thunar File Manager".
- Go back and forward using the 8th and 9th button on the mouse (bug #4687).
- Various compilers warnings were fixed, some performace improvements
  and less memory allocations.
- Update Albanian, Basque, Belarusian, Brazilian Portuguese, Catalan, Czech,
  Danish, Finnish, French, Galician, German, Hungarian, Indonesian, Japanese,
  Norwegian Bokmal, Polish, Simplified Chinese, Spanish, Swedish, Turkish and
  Ukrainian translations.

0.9.92
======
- Fix build on MacOS X (bug #4433).
- Don't create Thunar -> thunar symlink on case-insensitive
  filesystems (bug #4430).
- Add thunar-wallpaper-plugin for setting the wallpaper on
  xfdesktop >= 4.5.90.

0.9.91
======
- Update Basque, French and Spanish translations

0.9.80
======
- Fix .desktop file to launch thunar-settings dialog with
  xfce4-settings-manager
- Update Indonesian, Korean, Polisn, Arabic, Ukranian, Galician, Turkish,
  English Brittish, Lithuanian, Latvian, Chinese (traditional), Portuguese,
  Brazilian Portuguese, Catalan, Greek, French, Spanish, Russian, Czech and
  Hungarian translations.
- Add Kurdish translation


0.9.0
=====
- Do not display volumes without mountable file systems (Bug #3555).
- Properly recognize OGG files as audio files for custom actions (Bug #3604).
- Add new date renamer (Bug #3656).
- Pass the correct $DISPLAY value to processes spawned by Thunar and
  xfdesktop in multi screen environments (Bug #3667).
- Preselect the whole filename when renaming folders (Bug #3057).
- Prevent infinite recursion on JPEG files with broken EXIF data (Bug #3452).
- Fix crash on amd64 (Bug #3303).
- Add support to retry job based operations.
- Display more details in the override dialog (Bug #3268).
- Add support for different date/time formats (Bug #3265).
- Fix crash on sparc64 (Bug #2815).
- Properly binaries selected for custom actions (Bug #3105).
- Fix invalid invocation of thunar-volman for volumes that should be
  ignored (Bug #2789).
- Reduce binary size by stripping XML comments and whitespace (Bug #3094).
- Use the correct HAL property to determine whether a given volume or
  device requires eject (Bug #3119).
- Automatically disable thumbnailing if storing a thumbnail fails because
  of a fatal error (Bug #3020).
- Fix crash because of unaligned memory access (Bug #2880).
- Fix compilation with the Sun Studio 11 compiler (Bug #2899, #2900).
- Updated translations: Alexander Nyakhaychyk (be), Pau Rul-lan Ferragut (ca),
                        Benedikt Meurer (de), Piarres Beobide (eu), Jari
                        Rahkonen (fi) Daichi Kawahata (ja), ByungHyun Choi (ko),
                        Stephan Arts, Peter Maassen and Vincent Tunru (nl),
                        Szymon Kałasz (pl), Fábio Nogueira (pt_BR), Mişu
                        Moldovan (ro), Eren Turkay (tr), Dmitry Nikitin (uk)
- New translations: Mohamed Magdy (ar), Jeff Bailes (en_GB), Rihards Prieditis
                    (lv), Terje Uriansrud (nb_NO), Amanpreet SIngh Alam (pa),
                    Nuno Miguel (pt_PT), Besnik Bleta (sq), ﻢﺤﻣﺩ ﻊﻠﻳ ﺎﻠﻤﻜﻳ (ur)


0.8.0
=====
- Add documentation for the bulk renamer (Bug #1594).
- Improve the user manual (Bug #1365).
- Connect the various "Help" buttons (Bug #1230).
- Automatically add removable devices as targets to the "Send To" menu
  (Bug #2683).
- Allow to use "Eject" button on CD-ROM drives to unmount and eject the media
  (Bug #2759).
- Use Exif embedded thumbnails if available, which reduces the amount of data
  that must be retrieved from a camera to around 50k instead of the whole JPEG
  image, which can be up to several mega bytes.
- Treat hotplugged drives as removable drives, so they will be displayed in
  the side pane.
- Improve startup notification support.
- Add support for trashes other than the home trash (Bug #2132).
- Fix crash on platforms where sizeof(GType) != sizeof(gint) (Bug #2726).
- Add support for thunar-volman, which gets invoked by Thunar whenever a
  new device is added to the HAL device tree.
- Add support for memory cards and generic removable disk drives (Bug #2652).
- Handle blank discs and pure audio discs as well (Bug #2599).
- Use exo-mount to mount, eject and unmount volumes of relying on external
  utilities, like pmount or gnome-mount, that do not always behave properly
  (Bug #2715).
- Add ability to mount floppy drives using exo-mount (Bug #2075).
- Make sure GThread gets initialized first to avoid possible crashes in
  the GSlice allocator later.
- Add ability to load custom thumbnailers from .desktop files.
- Stop unused threads after ten seconds of idle time to return some more
  free memory to the kernel.
- Improve performance when loading really large folders using a parallel
  lock-free algorithm.
- Ellipsize long shortcut names, but make sure "File System" still fits into
  the side pane.
- Properly initialize the translation domain for thunar-vfs (Bug #2543).
- Do not gather detailed statistics from non-regular files to avoid blocking
  Thunar forever reading from a named pipe (Bug #2655).
- Add keyboard shortcuts to switch between the different views (Bug #2600).
- Do not display "Desktop (Create Link)" action in "Send To" menu for
  trashed files, because symlinks cannot be created for files in the
  trash (Bug #2539).
- Fix crash when transfering a lot of files via drag'n'drop or clipboard
  (Bug #2356).
- Fix modal about dialog blocking other windows (Bug #2545).
- Fix build with dbus-binding-tool 0.72 and above (Bug #2528).
- Fix installation on case insensitive file systems (Bug #2521).
- Set word-wrap width depending on current zoom-level (Bug #2505).
- Improve the performance of the automatic path completion (Bug #1681).
- Properly redraw the shortcuts pane after after drag'n'drop (Bug #2498).
- Updated translations: Pau Rul-lan Ferragut (ca), Michal Várady (cs),
                        Benedikt Meurer and Fabian Nowak (de), Stavros
			Giannouris (el), Piarres Beobide (eu), Jari Rahkonen
			(fi), Maximilian Schleiss, Mike Massonnet and Niki
			Kovacs (fr), Szervác Attila (hu), Roberto Pariset
			(it), Piotr Maliński and Szymon Kałasz (pl), Andrey
			Fedoseev (ru), Alexander Toresson (sv), Kang
			Kang (zh_CN).
- New translations: Alexander Nyakhaychyk (be), ByungHyun Choi (ko), Jovan
                    Naumovski and Viktor Stojanovski (mk), Stephan Arts and
		    Vincent Tunru (nl), Amanpreet Singh Alam (pa).


0.5.0rc1
========
- Add a "Trash" menu entry to the "Go" menu (#2486).
- Add a drop-down menu to the toolbar-style location bar to enable quick
  access to the shortcuts even if the classic file manager look'n'feel is
  being used (#2024).
- Add support for HAL on FreeBSD. Make HAL the preferred volume manager on
  FreeBSD.
- Adjust the preferences dialog to match the look of the other Xfce preferences
  dialogs (#2379).
- Allow to change the icon of .desktop files (#2150).
- Allow Thunar extensions to add menu items to the Drag'n'Drop context menu.
  This is for example used by the thunar-archive-plugin to add an "Extract
  Here" action, which extracts a dragged archive file at the drop location.
- Display the real mime type as tooltip for the "Kind" label in the properties
  dialog (#2369).
- Keep the modification time when copying files (#2244).
- Make sure emblems don't get too large with SVG icon themes (#2466).
- Make sure Thunar is restarted prior to xfdesktop, so the trash support in
  xfdesktop works as expected even if D-Bus autoactivation is not setup
  properly.
- Place automake options into configure.in.in instead of Makefile.am and add
  the tar-ustar option to fix building distributions on system where tar
  defaults to the deprecated V7 format (#2304).
- Place cursor on the first selected file after a new file or folder was
  created (#2368).
- Place focus on the main view after changing the current directory (#2367).
- Properly clean up the path bar when a folder that is currently displayed
  on the path bar is deleted.
- Properly validate the Name of .desktop files (#2227).
- Update the icon mime icon lookup to try icon names from Icon Naming Spec
  first, and fallback to legacy GNOME icon names.
- Use default dbus connection timeout (#2243).
- Use exo-open for the default "Open Terminal Here" action (#2256).
- Use the thumbnail database to load SVG icons from the icon theme, because
  loading SVG is quite slow and takes a lot more memory than loading and
  scaling PNG icons from the thumbnail database.
- Fix usage of deprecated HAL policy functions (#2475).
- Fix crash with newer GtkTreeView's if the "row-has-child-toggled" signal is
  emitted even if the child state of a node did not change (#2372).
- Fix several race conditions that were introduced over time and prevented the
  "new-files" job handling from working properly with Gamin and automatic
  folder reload (#2199).
- Fix invalid calculation of free space on OpenBSD/amd64 (#2383).
- Fix crash due to invalid handling of file names with printf(3)-style format
  arguments (#2468).
- Fix crash on systems with small per-thread stacks (#2269).
- Fix installation on Win32 platforms (#2432).
- Fix build with GLib 2.6.x (#2317).
- Fix build with latest dbus-glib (#2263).
- Updated translations: Pau Rul-lan Ferragut (ca), Michal Várady (cs), Benedikt
			Meurer (de), Stavros Giannouris (el), Jarbas Araujo,
			Antono Vasiljev and Sylvain Vedrenne (eo), Piarres
			Beobide (eu), Jari Rhkonen (fi), Maximilian Schleiss
			(fr), Piotr Maliński (pl), Adriano Winter Bess (pt_BR),
			Andrey Fedoseev (ru), Hydonsingore Cia (zh_TW)
- New translations: Sonam Pelden (dz)


0.4.0rc1
========
- An implementation of the XDG Trash Specification was imported and is now
  used by both Thunar and xfdesktop to display and manage trashed files.
  The implementation is currently limited to the home trash, but that will
  be extended to support foreign trash cans soon.
- Add a trash panel applet for the Xfce panel, that displays the current
  state of the trash, allows to open and empty the trash, and supports
  drops of files to the trash.
- Add "No to all" response to the transfer progress dialog, which allows to
  skip all further overwrite dialogs (Bug #1666).
- Add ISO Speed Ratings to the Image page of the properties dialog.
- Add rubberband selection support to the detailed list view when build with
  GTK+ 2.9.0 and above (Bug #1996).
- Add menus to the "Back" and "Forward" buttons in the toolbar (Bug #1782).
- Update the path bar with the latest changes to GtkFileChooser (Bug #2060).
- The dependency of the thunar-vfs library on GConf is gone. Instead the
  available thumbnailers are now determined by an external tool and added to
  a cache file, which will be mapped by all processes using the thunar-vfs
  library (Bug #2131).
- Add a new thumbnailer for TrueType fonts using the FreeType 2.x library.
- Add a warning text to the window when running as super user (Bug #2218).
- Add desktop shortcut to the shortcuts pane and use a special icon for the
  desktop folder (Bug #2235).
- Use the new icon chooser dialog, available with exo 0.3.1.10rc1, to pick
  icons for custom actions.
- Fix invalid display of the file's group in the properties dialog (Bug #1838).
- Fix the location entry completion crashing with certain GTK+ versions (Bug
  #1891).
- Fix list model related crashes with GTK+ 2.10 (Gnome Bug #349128).
- Use CRLF for text/uri-list as specified by RFC 2483 (Bug #2166).
- Fix invalid substitution of %d in custom commands (Bug #2214).
- Fix not working Ctrl+A in the location entry (Bug #2036).
- Fix the progress bar text being truncated (Bug #2003).
- Fix missing mkdtemp on Solaris (Bug #2070).
- Fix compilation with compilers other than gcc (Bug #1852).
- Fix compilation on NetBSD 2.99 and above.
- Fix compilation on OpenBSD.
- Add manual page for Thunar (Bug #1650).
- Unmount volumes prior to ejecting them (Bug #2236).
- Do not use different icons to represent the home folder.
- Use "<folder> - File Manager" for the title of Thunar windows to make it
  easier to identify file manager windows in the taskbar.
- The thunar-vfs reference manual was updated to reflect the latest changes.
- Case sensitive sorting is now disabled by default (Bug #2064).
- Use a localized human readable format for the file dates (Bug #2057).
- Use the new GSlice allocator where possible to reduce memory overhead.
- Avoid the usage of GMemChunk, because in GLib 2.10 and above that is not
  only inefficient, but also continously leaks memory.
- Updated translations: Pau Rul-lan Ferragut (ca), Michal Várady (cs),
                        Benedikt Meurer and Fabian Nowak (de), Stavros
			Giannouris (el), Sylvain Vedrenne (eo), Piarres
			Beobide (eu), Jari Rahkonen (fi), Maximilian
			Schleiss (fr), Szervác Attila (hu), Roberto
			Pariset (it), Piotr Maliński and Szymon Kałasz (pl),
			Hydonsingore Cia (zh_TW)
- New translations: Iván Seoane Pardo (gl), Dimitri Gogelia (ka)


0.3.2beta2
==========
- The default operation when dropping files into a folder is now to move the
  files if both the source files and the target folder is on the same file
  system and the source files are owned by the user.
- The custom actions are now run using the shell.
- Added the "Send To" menu, which allows users to easily send files to other
  applications from within the file manager. Default targets are "Desktop
  (Create Link)", "Mail Recipient" and "Side Pane (Create Shortcut)". Additio-
  nal targets can be dynamically added via .desktop files.
- Support for session management was added.
- The "Open With" dialog now allows users to remove launchers that were
  previously added via the custom command box.
- The number of relocations for the libraries was reduced to improve the
  application startup time.