-
Notifications
You must be signed in to change notification settings - Fork 61
/
NEWS
2539 lines (2443 loc) · 127 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
4.19.4 (2024-11-01)
======
- Add missing return statements (#1480)
- Verify copied destination file using direct I/O (#1471)
- Drop optional POLKIT dependency (#1403)
- Fix GCancellable leaks in trash applet
- Add emblem and type description to mount points (#1388)
- Show "Properties" menu entry for unmounted devices
- Support second shortcut for tab switch (#1472)
- Verify by compare instead of checksum (#1471)
- Fix path entry DnD code (#1470)
- Apply .clang-format to all *.c and *.h files
- Use G_VALUE_INIT over custom initializer
- adding .clang-format file
- Fix accel map loading (#1047)
- build: Bump requirements for Xfce 4.20
- Fix use-after-free in thunar_dialogs_show_job_ask_replace (#1466)
- Regression: Fix "middle click open" (#1455)
- Dont change selection on activate
- Fix selection changed throttle (#1429)
- Increase location button max with (#1430)
- Rework handling of location buttons (#951)
- Fix string leak in thunar_io_jobs_load_statusbar_text_for_folder
- Fix color string leaks in properties dialog
- Fix color leak in thunar_util_clip_view_background
- Fix string leak in thunar_history_error_not_found
- Fix GFile leak in thunar_job_operation_restore_from_trash
- Fix string leak in thunar_emblem_chooser_file_changed
- Fix GFile leak in thunar_transfer_job_move_file_with_rename
- Fix GFileInfo leak in thunar_job_operation_restore_from_trash
- Fix GAppInfo leaks in thunar_g_app_info_launch
- Fix string leak in thunar_job_operation_restore_from_trash
- Add NULL check before folder usage
- Fix g_hash_table_get_keys leak
- Fix ThunarRenamerPair leak when using bulk renamer
- Fix string leak in thunar_uca_editor_load
- Show name of parent folder in replace dialog (#62)
- Fix crash when connecting via gvfs (#1450)
- Fix GHashTable leak in thunar_tree_view_model_file_count_callback
- Fix string leak in thunar_io_jobs_util_next_renamed_file
- Add check that widget is a window as expected (#1454)
- Fix GFile leak when using intermediate file on copy setting
- Fix string leak in thunar_dialogs_show_job_ask_replace
- Fix string leak in thunar_uca_model_remove
- Avoid critical when thumbnailer_proxy is NULL
- Fix leaks in thunar_apr_image_page_file_changed
- Fix AtkRelationSet leaks in bulk renamer dialog
- Fix AtkRelationSet leaks in apr plug-in
- Fix leak in thunar_details_view_button_press_event
- Fix leak in thunar_window_open_files_in_location
- Call ThunarStatusbar's parent finalizer to prevent leaks
- Fix leak in thunar_details_view_button_press_event
- Fix leak when middle-clicking on directory row
- Fix leaks when using Open Item Location menu item
- Fix leak in _thunar_search_folder
- Fix leak of search_query string
- Fix leaks in thunar_application_command_line
- Fix leak in thunar-gtk-extensions (#1451)
- Fix leak in thunar_application_accel_map_init
- Fix typo in status bar text for Edit > Preferences menu item
- Fix g_object_get leak in thunar_window_init
- Fix two leaks in _thunar_search_folder
- Fix g_object_get leaks in status bar code
- Wrap single-word filenames in delete dialog (#1412)
- Add command line option to force new window
- Change width calculation of rename dialog (#1392)
- Make location "admin:///" work again
- Rework padding in replace dialog
- Improve handling of long filenames in replace dialog
- Statusbar: Count "backup" files as hidden files
- Fix criticals about unset GIO attributes (#1063)
- Show full context menu during search (#837)
- Prevent double free for hidden files (#1438)
- Fix icon-name leaks in thunar_window_view_switcher_update
- Fix minor memory leak in uca provider
- twp: Prevent crash in wayland (#1437)
- Transfer files dialog use less buttons (#58)
- Remove filter model in toolbar editor code
- Revert "Increase max location selector button size (#1430)"
- Increase max location selector button size (#1430)
- List view: Empty size column for directories (#543)
- Add tooltip to special columns in column editor
- Fix handling of special columns in list view
- Revert "Remove 'Date Deleted' from 'Configure Column' List (#750)"
- Fix overlapping UCA editor dialog widgets (startup notification)
- Revert signal handler setup for RadioToolButtons (#1426)
- Use unique enum names for alternative shortcuts (#1421)
- Use initial widget variables when calling unref
- Tweak header bar margins
- Add View Switcher item to toolbar
- UCA - improve shortcuts handling (#1410)
- Reduce events monitored by UCA file monitor
- Fix Toolbar bug when CSD is used (#1414)
- I18n: Update po/LINGUAS list
- Fix CSD label text
- Option to use client side decorations (CSD)
- Use top-window as fallback for dialogs (#1398)
- Support copy/link within a folder via CTRL+drag (#63)
- Rework the "Show Menubar" toolbar button (#936)
- Optionally show hidden files count in statusbar (#1387)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese
(Hong Kong), Chinese (Taiwan), Czech, Danish, Dutch, Eastern
Armenian, English (Australia), English (United Kingdom), Esperanto,
Estonian, Finnish, French, Galician, German, Greek, Hebrew,
Hungarian, Icelandic, Interlingue, Italian, Japanese, Kazakh,
Latvian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post
1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai,
Turkish, Uyghur, Vietnamese
4.19.3 (2024-07-30)
======
- Allow type ahead search the treeview sidepane
- Added a hidden setting to toggle tree-lines
- Pass toplevel window to emblem chooser error dialog (#1393)
- Use parent windows for undo/redo dialog (#1393)
- Simplify reload after rename (#1395)
- Dont destroy ThunarFiles on request (#1357)
- Always re-add files to cache on reload (#1357)
- Rework event handling for toolbar context menu
- Don't work with ThunarFolder in separate jobs
- Do not request thumbnails unconditionally (#1385)
- Add default bindings for special keys (#1386)
- Prevent preleminary destruction of ThunarFiles
- Only add successfully opened files to Recent
- Add files opened via the location entry to Recent (#1349)
- Improve behavior of split view separator (#1107)
- Option to disable ctrl+scroll to zoom (#1379)
- Hide single tab in split view
- Immediately focus split view pane on DnD events
- Re-enable toolbar overflow menu (#1240)
- Adding an default issue template
- Reduce width of the toolbar editor
- Hide OpenItemLocation/Restore menu entry in tree view
- Fix leaking ThunarFile (#573)
- Add preferences settings for usage of symbolic icons
- Do not enter folder when DnD menu is shown
- Fix for "misc_open_new_windows_in_split_view" (#889)
- thunar-uca: Use regular icons in editor
- thunar-uca: Update info text in chooser dialog
- Optionally use symbolic icons in location bar
- Show warn on selecting too many emblems (#1368)
- Dont add directories to recent:/// (#1372)
- Update the sidepane/toolbar when toggling symbolic icons
- Make symbolic icons in sidepane theme-color aware
- Rework toolbar configuration storage (#1028)
- Always render up to 4 emblems (#1368)
- Prevent icon emblems from overlapping (#1368)
- Prevent double-restore (#1369)
- Fix ThunarxMenuItem sensitive property
- clang build Fixes
- build: Use AM_DISTCHECK_CONFIGURE_FLAGS
- Fix workaround for icon "inode-directory"
- Add missing top border to tree pane
- Prevent g_malloc_n build warnings (#1362)
- Add "symbolic" value to cached icons (#1363)
- Enter folders automatically while dragging files (#5)
- Focus split view pane on DnD events (#1243)
- Shorten symbolic xfconf property names
- Optionally use symbolic icons in the sidepane (#252)
- Usage of window-close-symbolic (#960)
- Use symbolic insons only for the toolbar
- Fix several out of sync bugs (#1326)
- Rework focus indicator for split view (#730)
- Improve various aspects of the Image Preview pane (#932)
- prefs-dialog: Change order of RECURSIVE_SEARCH options
- prefs-dialog: Improve PARALLEL_COPY_MODE strings
- Move TRASH_DELETE keyboard shortcuts to MOVE_TO_TRASH section
- Always show "Paste" entry in Edit menu
- Reveal keyboard shortcut for "Open with Application" menu entry
- Add keyboard shortcut for "Invert Selection"
- Add "Remove from Recent" to Edit menu
- Improve "Open Item Location" menu entry
- Show "Open With Default Applications" entry only for multiple files
- Move "Edit Launcher" menu entry into "Open" section
- Fix location of "Create" menu section in Location Bar / Side Pane
- Fix location of "Restore" menu section
- Fix Regression: Tabs order on restore (#1341)
- Clear current selection when requesting a new one (#1338)
- Refactor "select after reload" mechanics (#1338)
- Resolve conflicting mnemonics and add missing ones
- Statusbar: re-add last-modified time for folders (#1348)
- Fix regression during device eject (#1347)
- Use GHashTable to store files (#1337)
- Restore tabs when launched with uri arg. (#1233)
- Dont reload folder when "draw_frames" is set (#1337)
- Add New Tab and New Window icons to toolbar (#1263)
- Fix icon view regression (#1315)
- Improve icon view performance (#1315)
- Performance improvements (#1315)
- tree-view-model: Fix gettext warning about empty string
- build: Optional require polkit for l10n xml files
- build: Get rid of intltool
- po/sl.po: Fix unmatched format specifier
- build: fix automake non standard library name
- Fix leak during search
- Fix a leak in statusbar code
- Fix parentheses-equality warning
- Allow sumenu UCAs in toolbar (#780)
- Fix shortcuts for ucas in subfolders (#1043)
- Display cached thumbnails as themselves (#1331)
- Load statusbar text in separate job (#1315)
- Move statusbar text method to thunar-util
- Improve statusbar performance (#1315)
- Fix possible NULL pointer dereference (#1330)
- Consider display_name=NULL cases (#1329)
- re-enable file monitor for search files (#1320)
- Fix possible deadlock during search (#1321)
- Initialize variable in thunar_details_view_button_press_event
- Prevent use after free (#1325)
- Initialize variable in thunar_tree_view_model_dir_files_changed
- Fix leaks during file duplication (#1322)
- Use xfce_dialog_show_error (#1320)
- Disconnect ShortcutModel on finalize (#1314)
- Prevent crash on open non-readable folder
- Prevent warning in tree-view
- Dont save bookmarks on trash change (#141)
- Fix support for bookmark reloading
- Fix bulk renamer crash on close (#1307)
- Prevent CRITICAL when leaving search
- Fix regression: Missing window icon
- No view-switch while searching (#1293)
- Fix mem leak in action-manager (#573)
- Fix memory leak in thunar-history (#573)
- Various Refactorings in "ThunarWindow"
- Show complete file paths in tooltips (#1213)
- Fix bug in file_watch (#1300)
- Prevent double-free for ThunarJob (#1299)
- Fix memory leak in statusbar (#573)
- Fix various memory leaks on ThunarJobs
- Fix possible double-free on thunar job (#1299)
- Improve handling of "loading" property (#1296)
- Dont show 'open location' on recent icon(#1297)
- Simplify ThunarFile destruction in shortcut-model
- Prevent re-creation of shortcut model on exit
- Minor simplification for tree-view pane
- Properly release job when finished (#1192)
- Fix "files-changed" handling for tree-pane (#1292)
- Properly remove timeout source (#1077)
- Throttle selection changed (#1077)
- Refactored "thunar_folder_monitor"
- move file-monitoring into thunar-folder
- Fix for image preview visibility (#1285)
- Dont raise progress dialog for short jobs (#35)
- Prevent focus stealing of file transfer dialog (#643)
- Add text to toolbar config dialog (#1282)
- Dont update "last-view" when searching (#1278)
- Wrapping labels containing local variable definitions to its own scope
- Translation Updates:
, Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Bulgarian, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Interlingue, Italian, Japanese, Kazakh, Latvian, Malay, Norwegian
Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian (Iran),
Polish, Portuguese, Portuguese (Brazil), Romanian, Serbian, Slovak,
Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Urdu, Urdu
(Pakistan), Uyghur, Vietnamese
4.19.2 (2023-12-30)
======
- Prevent infinite reload loop for symlinks (#1270)
- Translation Updates:
Japanese, Portuguese (Brazil)
4.19.1 (2023-12-28)
======
- Properly handle renaming of hidden files (#1259)
- Use libxfce4ui API to create dialog when renaming launchers
- Dont copy/move thumbnails for symlink which are copied/moved
- Use ThunarFile as key instead of gFile (#1231)
- Replace g_assert statements in tree-view-model
- Remove configure~
- Use g_file_get_basename over realpath (#1030)
- Fix and simplify symlink resolver (#1260)
- Fix thumbnailer symlink support (#1260)
- Use file-monitor for thumb-updated signal (#1229)
- Make sure parent exists before usage (#1256)
- Use "g_signal_handlers_disconnect_by_data"
- Fix reference counting for thumbnailer and proxy
- Restart thumbnailer proxy after failure (#1252)
- Prevent GLib GIO CRITICAL (#1204)
- Preload image-preview thumbnails
- Minor image-preview fixes
- Unify way to request thumbnails for preview (#949)
- Request thumbnails in replace dialog (#737)
- Thumbnailer: Agregate requests and make use of READY signal
- Thumbnailer: Simplify loading logic
- Thumbnailer: Dont process ready/error in 'idle'
- Thumbnailer: Always provide a request id
- Thumbnailer: Remove unused "lazy" flag
- prefs-dialog: Fix xfce_titled_dialog_create_action_area deprecation
- standard-view: Reset drag data in one place
- Allow to use stringv type via get_metadata_setting
- Usage of io-jobs to set emblems (#892)
- Dont force "thunar" prefix for metadata
- Allow to use stringv type via set_metadata_setting
- Improve UCA parameter description (#1235)
- Prevent reload loop when thumnailing fails (#1225)
- Bump min exo version to 4.19,0 (#1226)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Bulgarian, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Interlingue, Italian, Japanese, Kazakh, Latvian, Malay, Norwegian
Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian (Iran),
Polish, Portuguese, Portuguese (Brazil), Romanian, Serbian, Slovak,
Spanish, Swedish, Telugu, Thai, Turkish, Urdu, Urdu (Pakistan),
Uyghur, Vietnamese
4.19.0 (2023-10-10)
======
- thunar-settings: Let Thunar guess the right display to use
- Load content types in a separate job (#1192)
- Add possibility to change metadata via a ThunarJob
- Remove thumbnail request in properties dialog
- Use a fallback file basename when unknown (#1219)
- Prevent deadlock during thumbnail loading (#1217)
- Remember the bulk renamer dialog size (Issue #1040)
- Apply scale factor as well to thumbnails (#1143)
- Move thumbnail request handling to the icon-renderer
- Support ipv6 remote URLs (#864)
- Handled Expand/Collapse in single-click mode (#1148)
- Fix DnD for expandable folders (#1144)
- Change toggle sort order menu item to check menu item (#781)
- Add a setting for window title style (#1130)
- Change state of split view button in the toolbar when needed
- Fix thunar critical and leak (#1179)
- Convert toolbar view buttons into radio buttons (Issue #925)
- Fix property dialog file count (#1173)
- Remove GHashTable/GList dualism in ThunarFolder
- Fix crash when build with --disable-debug (#1181)
- Improved performance & responsive in details view
- Fix ThunarFolder crash (#1175)
- Change 'File Manager' to 'Thunar' (Issue #1136)
- Change menu item 'Rename' to 'Bulk Rename' on multi select (#913)
- Improve 'Untrusted Application Launcher' Dialog (#963)
- Option to queue operations on busy disks (#1029)
- Support launcher rename options via dbus
- Fix criticals about unset GIO attributes (#1063)
- Don't reload folder twice on manual reload (#937)
- Ignore extension on dir rename (#1150)
- Add dialog to ask what to do with script (#1070)
- Make horizontal spacing consistent (#118)
- New TreeViewModel model implemented (#41)
- New StandarViewModelInterface interface (#41)
- Option to show launcher name instead of filename (#451)
- Add folder to history only for new tab (Issue #1072)
- Improve folder monitor and move some logic from file monitor there
- Don't check for file exists on "deleted" event
- Fix job operation crash on error
- Limit number of templates to prevent lag (#472)
- Remove outline on filenames while using keyboard nav.
- Prevent crash on multi-file-activate (#1121)
- Add new attributes to default namespace (#1104)
- Use enum to store sidepane type (#1102)
- Focus split pane on any tab click (#1103)
- Ignore attribute FILESYSTEM_USE_PREVIEW (#298)
- Prevent glib-critical - followup of (#912)
- Solving issue of overlapping highlights (#980)
- Keep location selector state on focus lost (#912)
- Harden thunarx module loading (#1094)
- Don't reload the directory on copy or cut (#1060)
- Prevent minor memory leak (#573)
- Revert ce43203b to prevent high CPU usage in list-view (#1089)
- Various properties dialog tweaks
- Prevent overflow via g_ascii methods (#1084)
- ThunarFile: Use recursive mutex for cache (#1060)
- Use new window for history signal handler (#1073)
- Prevent using CSD in properties dialog (#1056)
- Keep alpha when cutting read-only files (#1060)
- Dont reload the current folder on copy/cut (#1060)
- Update selected notebook on tab press (#1067)
- Make sure that accel_group is set before using it (#1067)
- Add job to list of jobs, not a view (#1029)
- Undo/Redo: Improve error handling
- Dont store accel map on startup (#1047)
- Optioanlly show prop-dialog hightlight tab (#1056)
- Simplify Bulk Renamer buttons (#1032)
- Dont open folder when mounting device (Issue #919)
- Dont show full menu for unmounted devices (#1049)
- Support handling URIs via desktop file (#1044)
- Focus correct split pane on mouse click (#1039)
- Use realpath only if available on platform (#1030)
- Fix include/check for 'realpath' (#1030)
- Prevent wrong undo/redo notify (#1036)
- Support undo trash for linked pathes (#1030)
- Always ask before delete files via undo (#1027)
- Fix use after free fault (#1031)
- Allow symlink creation on remote locations (#875)
- Prevent crash when closing window (#884)
- Keep directory specific sort details (#1017)
- Dont add extra-dot when creating links (#1019)
- Add Shortcut to switch split-view panes (#1005)
- Undo/Redo: Show detailed tooltips (issue #938)
- Make view margin/spacing depend on zoom level (Issue #839)
- Add fallback to shared zoom-level (#832)
- Directory specific settings - zoom improvm. (#832)
- Keep hidden toolbar hidden after Ctrl+L (#1011)
- Prevent jumping cursor on file deletion (#910)
- Properly handle resident thunar plugins (#1007)
- Prevent crash for copy+overwrite via DBus (#1002)
- Make 'empty trash' sensitive on tab-switch (#1001)
- Prevent segfault for location selector (Issue #994)
- Dialog when closing split-pane with multiple tabs
- split-view: prevent loosing open tabs (Issue #986)
- Use GtkIconTheme properly when passing UI scale
- Shrink rename dialog only in height
- Improve alignment of XfceFileNameInput
- Revert "Prevent focus stealing of file transfer dialog (Issue #643)"
- Prevent rare crash when closing thunar (issue #698)
- Prevent crash after closing windows (Issue #995)
- bulk renamer: Remember LastActiveMode (Issue #989)
- Add optional confirmation message to move to trash (Issue #464)
- Re-add symlink target in type column (issue #985)
- Few thumbnails missing after scroll (Issue #843)
- Dont show toolbar menu for back/forward (Issue #983)
- 'replace' option fixed for partial copy (Issue #974)
- Preserve trusted state when launchers are copied
- separate method for thunar_g_file_is_in_xdg_data_dir
- Moved 'set executable flag' into separate method
- Only attach toolbar after toolbar items were set up (Issue #927)
- Dont reset zoom-level for directory specific settings (issue #970)
- Prevent build failure for NixOS (Issue #972)
- Prevent location bar crash (Issue #968)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian,
Serbian, Slovak, Spanish, Swedish, Telugu, Thai, Turkish, Urdu, Urdu
(Pakistan), Uyghur, Vietnamese
4.18.0 (2022-12-15)
======
- Fix minor mem leak (Issue #961)
- Ask if desktop files should be trusted (Issue #959)
- build: Bump requirements for Xfce 4.18
- Initialize thumbnail request to 0
- Fix slow thumbnail loading in icon/compact view (Issue #952)
- Enable translations for some preferences fields (Issue #953)
- Enable translations for statusbar action-entries (Issue #953)
- Allow to localize toolbar Item 'Location Bar' (Issue #953)
- Translation Updates:
Bulgarian, Chinese (Taiwan), Czech, Dutch, French, German, Greek,
Hungarian, Italian, Japanese, Kazakh, Norwegian Bokmål, Occitan
(post 1500), Polish, Portuguese, Portuguese (Brazil), Serbian,
Spanish
4.17.12 (2022-12-01)
=======
- Follow Symlinks in 'thunar_file_can_execute' (#944)
- renamed 'thunar_file_is_executable' to 'thunar_file_can_execute'
- Regression: Trust all .desktop files inside XDG_DATA_DIRS (Issue #944)
- Check if trusted_button exists before using it (Issue #944)
- Show meaningful error for invalid remote bookmarks (Isssue #941)
- Fix for launcher trusted/executable checkboxes (Issue #944)
- thunar-apr: Properly free errors (Issue #944)
- Update copyright to 2022
- Only show hamburger button when menubar is disabled (Issue #934)
- Only show hamburger button when menubar is disabled (Issue #934)
- Properly round percentages in 'usage' text
- Dbus methods not selecting files/folders (Issue #929)
- Fix argument type for xfce_shortcuts_editor_new (Issue #928)
- Reposition Highlight tab in Properties dialog
- Image preview visible flag desynced between instances
- Properly include pcre2 CFLAGS and LDFLAGS (Issue #848)
- Fix capitalization in some strings
- Set style to reasonable value when setting wallpaper (Issue #907)
- Fix blurriness in image preview pane when UI scale > 1
- Fix blurriness in gesture icons when UI scale > 1
- Fix blurriness in drag icons when UI scale > 1
- Fix blurriness in path bar location image when UI scale > 1
- Fix blurriness in ThunarImage when UI scaling > 1
- Fix blurriness in emblem chooser when UI scaling > 1
- Fix blurriness in icon renderers at UI scale > 1
- Translation Updates:
Albanian, Arabic, Armenian (Armenia), Basque, Bulgarian, Catalan,
Chinese (China), Chinese (Taiwan), Czech, Danish, Dutch, Eastern
Armenian, English (Australia), English (United Kingdom), Estonian,
Finnish, French, Galician, German, Greek, Hebrew, Hungarian,
Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh,
Korean, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post
1500), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Serbian, Slovak, Spanish, Swedish, Thai
4.17.11 (2022-11-01)
=======
- Fix typo for setting "misc-image-preview-mode"
- Shorten image preview enum strings in settings dialog
- preview sidebar: only load the thumbnails if previews wanted.
- Remove lag in search feature (Issue #914)
- Bulk renamer: Drop unmainted PCRE in favor of PCRE2 (Issue #848)
- Better handing of file updates during search
- Make fd.o ShowItemProperties behavior consistent with Thunar
- List View: Add file count to size column for directories (Issue #61)
- Translation for few buttons missing (Issue #916)
- Add option to suppress the confirmation dialog on delete (Issue #809)
- Regression: Fix build with notifications disabled (Issue #909)
- Translation Updates:
Dutch, English (United Kingdom), Icelandic, Kazakh, Occitan (post
1500), Portuguese
4.17.10 (2022-10-16)
=======
- Introduce separate class for 'thunar-job-operation-history'
- Add Toolbar items for undo/redo (Issue #819)
- Add notification on undo/redo (Issue #903)
- Shorten wait time to show file transfer rate (Issue #888)
- Add Image preview sidepane (Issue #357)
- Prevent GLib-GIO-CRITICAL messages if 'file_>info' is not set
- Add 'redo' feature and multi-level undo/redo (Issue #819)
- Add 'undo' support for the latest link operation (Issue #819)
- Add 'undo' support for the latest file-create operation (Issue 819)
- Add 'undo' support for the latest trash operation (Issue #819)
- Add 'undo' support for the latest rename operation (Issue #819)
- Add 'undo' support for the latest move operation (Issue #819)
- Add 'undo' support for the latest copy operation (Issue #819)
- Update Dbus support for feature "Set Default Application" (issue #342)
- hidden preference "misc-open-new-windows-in-split-view" (Issue #889)
- Add title to message dialogs
- Fix details view's name column's prelight when highlight is enabled
- Add split-view button to Toolbar (Issue #831)
- View accels not working after initial startup (Issue #803)
- Remove "open with" prefix for apps in open with menu (Issue #863)
- Prevent xfconf warning during startup for property "sort-order"
- Thunar hangs with misc-directory-specific-settings (Issue #861)
- Add DnD support for application/octet-stream (#278)
- Add support for PrefersNonDefaultGPU in .desktop files (Issue #692)
- Enable right click + drag for list view (Issue #851)
- Inhibit some actions when a search is active (Issue #847)
- Add posibillity to set custom color to specific files (Issue: #160)
- Add support for alternative copy/paste/cut shortcuts (Issue #845)
- Properly remember sort settings in all cases (Issue #836)
- Create separate section for thumbnail settings in preferences dialog
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Japanese, Kazakh, Korean, Latvian, Malay,
Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
(Iran), Polish, Portuguese, Romanian, Serbian, Slovak, Spanish,
Swedish, Telugu, Thai, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.17.9
======
- Dont rely on xfconf value for menubar toggle (Issue #777)
- Dont rely on xfconf value for statusbar toggle (Issue #777)
- Dont rely on xfconf value for sidepane menu items (Issue #777)
- Bulk renamer: Rename in multiple iterations (Issue #108)
- meaningful naming for Location Selector (Issue #826)
- Prevent GLib-GObject-CRITICAL when using tree-view (Issue #827)
- Bulk Renamer: Allow multiple matches when using regex (Issue #230)
- Fix various memory leaks (Issue #573)
- Ignore escape sequences when executing launchers
- Fix crash when changing tab titles preferences (#808)
- Don't modify the 'exe' line in .desktop files unintentionally
- Search: show symlinks in results (Issue #809)
- Rename ThunarLauncher class to ThunarActionManager
- Enable to switch from search entry to other UI elements (Issue #792)
- Hide accel labels in launcher submenus (Issue #779)
- Fix broken build with gcc7 : “declaration is not a statement”
- List View: Show relative paths for column 'location'
- Check for empty path property in .desktop files
- Add tooltips for select by pattern dialog
- Restore view-type before exiting while search is active (Issue #794)
- Add menu item 'edit launcher' for '.desktop' files
- Search string normalization and diacritic stripping (Issue #793)
- Add border around infobar in trash (Issue #795)
- Fix segfault when closing Thunar during search (Issue #789)
- Respect last-show-hidden during search (Issue #785)
- Allow searching for multiple search terms (Issue #783)
- Handle special columns properly when ending a search (Issue #782)
- Replace exo_str_* () with GLib functions
- Bump up Glib dependency to 2.66.0
- Fixed folder activation during search in some cases (Issue #774)
- ExoIconView search workaround: do not save the temporary view type
- Fix column editor model filter logic
- Show the `Location` column in `recent:\`.
- Show the `Search with Catfish...` button only if catfish is installed
- Tweak order of tab settings in preferences dialog
- build: Fix intltool lock file problem during make distcheck
- Add option to show last modified date in the statusbar (Issue #641)
- Usage of glist to concatinate statusbar strings
- Add configure option to set thunarx default dirs
- Add configure option to enable thunarx custom dirs (Issue #771)
- Sort symlinks like regular files when sorting by type (Issue #71)
- Make thunar toolbar editor resizable and set a default size
- Refactor thunarx module loading (Issue #755)
- Add preference to disable recursive search (Issue #751)
- Compact View: Optional ellipsization instead of word wrap (Issue #595)
- Add toolbar button to show menubar when hidden (Issue #174)
- Bookmark accels not working (Issue #762)
- Toolbar Editor: Default to a bigger dialog size (Issue #758)
- Toolbar: Make custom actions invisible by default (Issue #757)
- Dont show a checkbox for "vertical split pane" in the settings
- Show as well invalid bookmarks in the bookmarks menu (Issue #582)
- Remove 'Date Deleted' from 'Configure Column' List (Issue #750)
- Move trash infobar to the bottom (Issue #605)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Japanese, Kazakh, Korean, Latvian, Malay,
Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
(Iran), Polish, Portuguese, Romanian, Serbian, Slovak, Spanish,
Swedish, Telugu, Thai, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.17.8
======
- Show `Configure Toolbar...` option on right-clicking toolbar items.
- Add built-in buttons for toolbar customization:
Search, Toggle,Reload, Zoom
- Allow to customize toolbar by using custom actions (Issues #607 #621)
- Location bar: Make sure to show the correct root button (Issue #725)
- Recursive search: Do not search when the search query is empty.
- Fix: Escape does not unselect files.
- Column headers: Configure columns popup on right-click
- Bulk renamer: Use wording "Extension" over "Suffix" (Issue #729)
- Look for thunar plugins at $THUNARX_DIRS (Issue #748)
- Speedup search by disabling row-related callbacks while searching
- Add spinner element to each tab to display search status
- Add option for vertical split panes (#722)
- List view name column improvements (#736)
- Option to show full path in tabs (Issue #627)
- Generate documentation for internal functions (Issue #617)
- Fix of various memory leaks
- Dont reload the view when text is copied (Issue #706)
- Use 'g_timeout_add_full' to set tree-view cursor (Issue #351)
- NULL checks to prevent crash on malformed bookmark URI (Issue #716)
- Skip files with IO errors during directory scan (Issue #696)
- Shortcuts View: Allow devices a drag and drop target (Issue #708)
- Support for thumbnail size x-large and xx-large (Issue #606)
- Add support for accelerators that include the `Tab` key (Issue #580)
- Add Recursive Search (!146)
- Use save way to copy a "struct tm" to prevent crash (Issue #700)
- Add UCA parameter to specify a number of files (Issue #26)
- Fix: User disabled accelerators are re-enabled on 2nd restart (!177)
- Add a GUI shortcuts editor (Issue #279)
- Use alphabetical sorting for devices in the side-pane (Issue #610)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Japanese, Kazakh, Korean, Latvian, Malay,
Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
(Iran), Polish, Portuguese, Romanian, Serbian, Slovak, Spanish,
Swedish, Telugu, Thai, Turkish, Urdu, Urdu (Pakistan), Uyghur,
Vietnamese
4.17.7
======
- Use GList over gchar** for getting an uri list (Issue #684)
- Prevent crash when restoring non-existing URI (Issue #684)
- Regression: Can't copy and replace a directory any more (Issue #682)
- 'New file' dialog: Dont highlight extension for templates (Issue #676)
- Use g_strcmp0 over strcmp to prevent crash (Issue #679)
- Inherit sort column/order of new tabs from current tab (Issue #678)
- Feature: Statusbar customization (Issue #666)
- Add link to thunar doc. to uca chooser dialog (Issue #245)
- Dont replace ACSII characters < 0 for FAT filesystems (Issue #655)
- Fix: Side pane tree view loading time increased (Issue #659)
- Remove the `file://` prefix in the location column
- Support '.' in themed desktop-file names
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Japanese, Kazakh, Korean, Latvian, Malay,
Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi
(Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai, Turkish,
Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.17.6
======
- Reset sort_column if it exceeds THUNAR_N_VISIBLE_COLUMNS
- Avoid many 'Failed to open directory' windows (Issue #660)
- Add file & folder count on the properties dialog (Issue #395)
- Use basename instead of display_name for file duplication (Issue #649)
- Fix signal disconnect in thunar_window_unrealize to prevent crash
- Don't go beyond THUNAR_N_VISIBLE_COLUMNS while parsing col widths
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Japanese, Kazakh, Korean, Latvian, Malay,
Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi
(Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
Romanian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai, Turkish,
Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.17.5
======
- Listen to changes on shortcuts to update them when required
- Prevent crash on copy+paste of many files (Issue #649)
- Ctrl + L does not leave search mode (Issue #645)
- Use move action when dragging files of different users (#196)
- Prevent focus stealing of file transfer dialog (Issue #643)
- Make file transfer window non-transient (Issue #109)
- shortcut view location cursor can flicker on selection (Issue #644)
- Fix file-icon update when file is cut (Issue #588)
- Incorrect "Send To" behavior with multiple arguments (Issue #609)
- Support thumbnails for symlinks (and devices / unknowns)
- Add option to verify file checksums on copy (Issue #511)
- Open correct folder on middle-click in tree-view (Issue #626)
- Shortcut-view: Keep focus in sync with current folder
- Add a `Location` column that appears while in search mode
- Add "Open Item Location" option in the context menu of files in Recent
- Add a new 'Open Item Location' entry in the right click context menu.
- Rework Search in Thunar (Issues #2, #28, #290)
- Remove fragmented file if file transfer is interrupted
- Fix invalid filenames when copying to FAT-like filesystem (Issue #77)
- Support shared thumbnail repositories (Issue #262)
- Add preference to limit the maximum file size to be thumbnailed (#310)
- Use *.partial~ as an intermediate file for copy
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
(Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese
(Brazil), Romanian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai,
Turkish, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.17.4
======
- Restore split-view separator position (Issue #616)
- Skip `switch-page` handler when switching to other split-view tab
(Issue #615)
- Change thunar_file_is_trashed to thunar_file_is_trash in
thunar-launcher.c
- Provide additional menu item for trashed files: "restore and open
folder" (Issue #382)
- Open restored tabs in correct order (Issue #613)
- After restoring tabs set focus on the last focused tab
- For "foo.txt" next available file should be of the form "foo N.txt"
- Remove redundant code
- Ask "close window with tabs?" as well for STRG+Q (Issue #611)
- Keep modified time of files copied from foreign locations (Issue #218)
- Use more general method to pick file names on copy (Issue #244)
- Add possibility to 'trust' launchers (Issue #156)
- Remove reload button from toolbar (!125)
- Fix build warnings
- Add a preference to restore tabs on startup (Issue #338)
- Fix Recent entry in the Go menu
- Use thunar_g_file_new_for_computer and thunar_g_file_new_for_network
- Add support for the `recent:///` location in Thunar.
- Add basic support for gtk-recent (Issue #257)
- Fix: Incorrect thumbnail size being displayed sometimes when zooming
quickly
- Add zoom-level as a per-directory setting (Issue #418)
- Rename variable `dot` to `extension`
- Generate incremental file name when a name collision is detected
(Issue #210)
- Fix GLib-CRITICAL in list-view (Issue #487)
- thunar_file_is_executable() now checks if .desktop file is safe
- Fix missing folder in history when opened in new tab (Issue #594)
- Fix missing folder in history when opened in new tab (Issue #594)
- Manage parallel job outside ThunarTransferJob (Issue #569)
- Replace ExoBinding with GBinding equivalent
- Move bookmarks into a separate Bookmarks menu (Issue #572)
- Proper destruction of member variables for thunar-launcher
- Fixing various memory leaks (Issue #573)
- Fix showing volume uuid in transfer dialog (Issue #579)
- Update manpage (Issue #121)
- Dont show "execute" on context menu for folders
- Translation Updates:
Albanian, Basque, Bulgarian, Catalan, Chinese (China), Czech, Danish,
Dutch, Estonian, French, Galician, German, Hebrew, Italian, Japanese,
Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil),
Serbian, Spanish, Swedish, Thai, Turkish
4.17.3
======
- Regression: Activating Desktop Icon does not Use Default Application
(Issue #575)
4.17.2
======
- Prevent crash if non-existing bookmark is right-clicked (Issue #552)
- Sendto-menu: Renamed "Create Shortcut" to "Add Bookmark"
- Allow middle-clicking navigation buttons (Issue #98)
- Support `Today`/`Yesterday` option for custom date styles (Issue #292)
- Prevent crash if invalid-symlink is used as bookmark (Issue #552)
- Scroll to correct height after changing to a parent dir (Issue #531)
- Dont execute files, passed via command line due to security risks
- Move 'reload' button out of pathbar (Issue #559)
- Improve usability of Computer:// in list view (Issue #297)
- Select the correct bookmark after opening a new window (Issue #106)
- Shortcut-view regression: Middle mouse click on folder did not work
- Make use of xfce icon "org.xfce.settings.default-applications"
- Avoid excessively checking whether files are executables (Issue #180)
- Add Option to keep focus while opening folder in new tab (Issue #364)
- Add `Add Bookmark` menu item to the Go menu (Issue #283)
- On "Select by Pattern" add option for case sensitivity (Issue #173)
- CDDA appears twice in side pane (Issue #486)
- Add `Empty Trash` infobar while in the trash folder (Issue #11)
- Add section 'Default Application' for app. selection (Issue #342)
- BulkRenamer: Preselect `Name and Suffix` if only dirs are selected
- List view: Leave size column blank for directories (Issue #543)
- BulkRenamer: Split 'Rename' button into 'Apply' and 'Done' (Issue #22)
- Critical error when opening Edit menu (Issue #542)
- Add menu entry 'Set Default App' to 'Open with' submenu (Issue #342)
- Shortcuts view regression : Watch trash for changes (Issue #538)
- Fix `misc-full-path-in-title` memory fault (Issue #484)
- Add 'sort by Date Deleted' option to 'arrange items' menu (Issue #123)
- Add 'date deleted' column for the trash directory (Issue #123)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese
(Brazil), Romanian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai,
Turkish, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.17.1
======
- Use a more specific device eject label (Issue #153)
- Reload current directory before selecting new files (Issue #524)
- Shortcuts view: Open new folder after creation
- ThunarLauncher: Dont expose "select files" closure
- Use thunar-menu and launcher in shortcuts view (Issue #198)
- thunar-launcher: Send signal when device operation is started/finished
- Removed 'the root folder has no parent' dialog box
- tree-view: Hide menu-item "properties" for unmounted devices
- Regression: Missing "mount"/"unmount" on tree-view devices
- thunar-launcher: unpack g_value with correct call
- Remove watches on shortcuts (Issue #513) (Issue #47)
- Regression: Select copied files after copy operation (Issue #520)
- Reintroduce alternative zoom shortcuts (Issue #514)
- Prevent hangup if a copy task that is blocked is resumed (Issue #467)
- Improve comments in "thumbnail_needs_frame"
- Improve device unmount messages (Issue #516)
- Regression: Allow custom image files for UCA icons (Issue #517)
- Dont merge folders when creating copy with same name (Issue 491)
- Fix incorrect return value in scroll event handler (Issue #512)
- Use wording "queued" instead of "frozen" for jobs (Issue #511)
- Use wording "queued" instead of "frozen" for jobs (Issue #511)
- Revamp documentation to modernize/uniformize accross components
- Remove tray icon and related methods (Issue #495)
- Regression: Skip app info updates on sendto actions (Issue #502)
- Regression: Toggle menu visibility on F10 if menu hidden (Issue #498)
- thunar-launcher: Unify way to set selected device/location/files
- thunar-launcher: Keep ref on ThunarDevice while poking
- thunar-launcher: Unify way to set selected device/location/files
- thunar-launcher: Provide service to open locations (bookmarks)
- Regression: "Shift" + "Select Trash in menu" has to trigger delete
- Fix compilation warnings
- Fix XSLT processor warnings
- Fix GObject introspection warnings
- Translation Updates:
Basque, Bulgarian, Chinese (China), Czech, Dutch, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Italian, Japanese, Korean,
Norwegian Bokmål, Occitan (post 1500), Persian (Iran), Portuguese,
Portuguese (Brazil), Serbian, Spanish, Swedish, Turkish, Uyghur
4.17.0
======
- By default show all available volumes (#384)
- Add "created" column to list view (#478)
- Add suffix '- Thunar' to the title bar (Issue #482)
- Dont select previous file after delete/trash (Issue #477)
- Increase min. size of "text" field in bulk renamer (Issue #474)
- Add option to forget application association (Issue #197)
- Regression: "Open with other application" missing (Issue #470)
- New feature: Split View (Issue #445)
- Revert "Fix popup menus size (Bug #15832)"
- Always create new files and folders in current directory (Issue #462)
- Improve file operations progress dialog (Issue #365)
- Prevent crash on Ctrl+H when there is no sidepane (Issue #453)
- Roleback to previous spinner handling (Issue #448)
- Add option to unselect all files (Issue #424)
- Unset tree view cursor if toplevel path is unknown (Issue #351)
- Remove GSourceFunc casts
- Add submenus for custom actions (Issue #184)
- REFACTOR: always queue_popup in details view on right click (#421)
- merged master from upstream
- Dont use ThunarFiles when they are already destoyed
- Use single main menu category in .desktop files (Issue #40)
- Add toggle in preferences to allow running shell scripts (Issue #224)
- Add action to toggle sort direction (#130)
- Use sort menu as well for detailed view (#139)
- Add support to created date in file properties
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Asturian, Basque,
Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian, English
(Australia), English (United Kingdom), Esperanto, Estonian, Finnish,
French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese
(Brazil), Romanian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai,
Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
4.16.0
======
- Fix action of Back/Forward mouse gesture when using RTL (Issue #90)
- Prevent crash on mouse gesture action (Issue #443)
- Avoid crashes when closing thunar with ctrl+w (#336)
- Ignore double-click events from back/forward mouse button (Issue #371)
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump minimum required exo version to 4.15.3
- Wrap box around spinner to prevent flickering (Issue #440)
- Use g_drive_is_removable over g_drive_is_media_removable
- bump glib (and gio, gthread, etc) to 2.50.0
- Do not duplicate app_info when added via custom command (Issue #309)
- Escape all whitespace characters in custom command path
- Remove hidden quotes for "Open with"->"custom command" (Issue #425)
- Ignore unknown XML elements in UCA.xml
- Regression: Fix broken bulk renamer context menu (Issue #436)
- Revert of b12247c2 and proper fix for Issue #423
- Remove duplicated code in renamer and prevent possible leak
- Prevent possible crash of thunar_launcher_poke (Issue #436)
- Fix combo box entry order (Issue #435)
- Remove TODO file
- Change focus when clicking an emblem entry (Issue #315)
- Bump GLib minimum version to 2.44
- Prevent Gtk-CRITICAL when terminating session (Issue #430)
- Missing thunarx support on the shortcut view (Issue #423)
- Translation Updates:
Basque, Chinese (China), Czech, Danish, Estonian, Korean, Norwegian
Nynorsk, Turkish, Vietnamese
4.15.3
======
- No special treatment on "rename" for .desktop files (Issue #56)
- Show full filename/extention for .desktop files (Issue #56)
- Focus view when location selector is closed (Issue #420)
- Thunar shows wrong content after outside operations (Issue #355)
- Regression: Restore file menu section arrangement
- Use same README.md structure than other xfce projects
- Fall back to fast content type if regular is unavilable in file
attributes (!36)
- Fix Regressions around menu bar spinner (Issue #394)
- Fix error for custom date format in details view (issue #389)
- Add support for transparency in gtk-themes (!31)
- Regression: Apply accel keys only to current tab (Issue #386)
- Translation Updates:
Albanian, Arabic, Armenian, Armenian (Armenia), Basque, Bengali,
Catalan, Chinese (Hong Kong), Czech, Danish, Dutch, Eastern Armenian,
English (Australia), English (United Kingdom), Esperanto, Estonian,
Finnish, French, Greek, Hebrew, Hungarian, Icelandic, Indonesian,
Interlingue, Kazakh, Korean, Latvian, Malay, Norwegian Bokmål,
Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian
(Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Serbian,
Slovak, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Urdu, Urdu
(Pakistan), Uyghur, Vietnamese,
4.15.2
======
- Regression: Dont crash when starting thunar with gvfs disabled
- Move mount/unmount/eject actions into launcher (Issue #349)
- Use thunar-menu and launcher in tree-view (Issue# 349)
- Use the new icon when running with elevated privileges (root)
- Remove limit on paths to check in thunar_file_accepts_drop (Issue #350)
- AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS (MR !27)
- Avoid crashes when using details view (Issue #307)
- Fix unavailable rubber banding in detailed view (Issue #326)
- Remove obsolete dispose method to prevent warning (Issue #319)
- Show device indentifier in side pane tooltip (Issue #207)
- Make use of shared field codes expansion of libxfce4util (MR !23)
- Implement directory specific sort-column and sort-order (Issue #8)
- Add an option to delete saved directory specific settings (Issue #8)
- Implements directory specific view type (Issue #8)
- Add features to support directory specific view settings (Issue #8)
- Regression: Add missing seperator to icon view submenu
- Replace _thunar_assert() with _thunar_return_if_fail() in order to
prevent crash when build with debug on FreeBSD (MR !22)
- Menu items cut/copy/paste do not work for location entry (Issue #303)
- Translation Updates: