-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
2583 lines (1874 loc) · 116 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
This file only lists a short summary of the changes between FileZilla versions. For a full list of changes, please read the ChangeLog file.
Legend:
! Security related bugfix or otherwise critical bugfix
+ New feature or important bugfix
- Bugfixes and other changes
Platform prefixes:
MSW: Microsoft Windows
*nix: Unix (e.g BSD) and Unix-like systems (e.g. Linux)
macOS/OS X: Apple macOS
3.62.0-beta1 (2022-10-11)
- macOS binaries are now built against wxWidgets 3.2.1
- updated ot libfilezilla 0.39.2
3.61.0 (2022-09-19)
- Updated to libfilezilla 0.39.1
3.61.0-beta1 (2022-09-07)
+ Use improved asynchronous file readers/writers from libfilezilla
- Fix export of root items in the Site Manager
- Handle rare cases of non-existing download directory in the updater
3.60.2 (2022-07-22)
- Updated to libfilezilla 0.38.1 to address an issue with child process termination resulting in freezes
3.60.1 (2022-06-01)
- Fixed a regression drag-moving local files
3.60.0 (2022-05-27)
- SFTP: Fixed error handling if reading from child process fails
- Fixed transfers following recursive operations not starting if the connection limit has been set to 1 in the Site Manager
3.60.0-rc1 (2022-05-19)
+ macOS: Remote files can now be dragged into Finder
- Fixed file change detection when editing files
3.59.0 (2022-04-08)
- Windows binaries: Updated zlib, used purely to cache re-scaled versions of icons shipped with FileZilla, to 1.2.12
- Updated to libfilezilla 0.37.1
3.59.0-rc1 (2022-04-01)
- Updated to libfilezilla 0.37.0
- Non-blocking communication with SFTP process
- macOS, *nix: Fixed "All files" category in file picker dialogs
3.58.0 (2022-02-11)
- More detailed error messages if an XML file known to exist cannot be opened
3.58.0-rc1 (2022-02-03)
+ Negotiate custom ALPN with FileZilla Server >=1.3.0 during TLS handshake to save some roundtrips during connection establishment
+ Prepare FileZilla to support TOTP-based 2FA authentication on future FileZilla Server versions
- Made downloading updates more robust if the network connection is unreliable
- Updated to libfilezilla 0.36.0
3.57.0 (2021-12-10)
- Fixed incorrect default settings for file editing
- Fixed a crash looking up data in file lists
- Fixed a crash if a HTTPS connection gets canceled during the TLS handshake
- Updated to libfilezilla 0.35.0
3.56.2 (2021-10-27)
- Fixed a potential crash after uploading
3.56.1 (2021-10-26)
- macOS Monterey: Opening the Site Manager on startup is now delayed a millisecond, otherwise the right mouse button would have stopped working
- macOS: Fixed getting temporary directory
- MSW: Updated to libfilezilla 0.34.1 to fix local directory contents returned by the system in oversized buffers containing nulls
3.56.0 (2021-10-11)
- Updated to libfilezilla 0.34.0
- Updated translations
3.56.0-rc1 (2021-09-29)
+ Right-clicking a queue tab header now opens the same context menu as right-clicking the correponding queue contents
+ By default, the minimum allowed TLS version is now TLS 1.2
+ Optionally, the systen trust store can be used for certificate verification
- FTP: Fixed an issue with key file conversion
- Fixed an issue loading servers not supporting session resumption from storage
3.55.1 (2021-08-09)
- Fixed a crash if a tree view item is deleted at the same time as something is being dragged over the tree view
- Updated to libfilezilla 0.31.1 to fix an issue with SIGPIPE on *nix
3.55.0 (2021-07-09)
- Updated translations
3.55.0-rc1 (2021-07-02)
- Updated SFTP components
- Set appropriate ALPN on TLS connections
- Fixed loading of settings files that were moved between platforms
- Refactored updater internals
3.54.1 (2021-05-13)
- Fix control visibility logic in Site Manager
3.54.0 (2021-05-12)
- SFTP: Fixed a regression loading configured key files
3.54.0-rc1 (2021-05-04)
- Refactored network activity handling, the activity indicators tooltips now display more accurate data
- Updated SFTP components
- Small performance improvement sorting very large directory listings
- Fixed a crash changing numeric permissions value in chmod dialog
3.53.1 (2021-03-22)
- Removed an error message on new installation where there is no sitemanager.xml yet
- Fixed SOCKS5 proxy support
3.53.0 (2021-03-15)
- HTTP: Handle servers sending early replies
3.53.0-rc1 (2021-03-05)
+ Require explicit confirmation on FTP servers not supporting TLS session esumption on the data connection
+ Access Grant support for Tardigrade
- MSW: Fixed handle leak if using SFTP
- FTP: Fixed cancelling listings on very slow computers with extremely fast network connection
- Fixed loading of custom FTP proxy setting when opening the settings dialog
- Internal restructuring
3.52.2 (2021-01-18)
- When restoring the main window position at startup, detect if the title bar would become hidden behind taskbars or global menu bars and reposition it appropriately
- SFTP: Fixed preserving of timestamps on downloads
3.52.0.5 (2021-01-08)
- FTP: Fixed crash if downloading ASCII files with stray carriage returns
- Fixed too strict requirements for preallocation
- *nix: Fixed a memory leak
3.52.0.4 (2021-01-07)
- macOS: Work around a kernel bug where ftruncate cannot be called more than once on a shared memory object
3.52.0.3 (2021-01-06)
- macOS: Fix issue opening shared memory objects
3.52.0.2 (2021-01-06)
- HTTP: Handle multi-token Connection: headers
3.52.0.1 (2021-01-05)
- macOS: Rebuilt to address a toolchain issue
3.52.0 (2021-01-04)
- Fixed a regression with the rename file exists action on downloads
3.52.0-rc1 (2020-12-29)
+ Added context menu item in the search dialog to close the search and set the selected directory as the current local/remote directory
- Minor fixes for updating the HTTP transfer status
3.52.0-beta1 (2020-12-17)
+ Use asynchronous file readers/writers in the engine
- MSW: React to system color scheme changes
- Fixed splitters not being draggable on newly created tabs
- MSW: Fixed data directory lookup if run from a development environment
3.51.0 (2020-10-20)
- Fixed import of sites protected with a different master password
- Directory comparison now works correctly with non-default file name sorting settings
- Small search dialog fixes
3.51.0-rc1 (2020-10-13)
- Refactored how the queue stores transfer flags
- Refactored internals to be more modular
- Linux: Disable receive buffer tuning if it results in unexpected consequences
- Distinguish between Cancel and No in the file changed dialog
- Small fixes to changing or disabling a master password
3.50.0 (2020-08-27)
- Minor fixes to Tardigrade integration
3.50.0-rc1 (2020-08-21)
+ Update Storj/Tardigrade integration, now based on the uplink-c library
- Fix layout issues in the Site Manager if switching protocol
- Restored natural sort option for file list sorting
3.49.1 (2020-07-15)
- Fixed selection changes not being reflected in the Site Manager in some circumstances
3.49.0 (2020-07-13)
- Fixed retrying initial connection attempts
3.49.0-rc1 (2020-07-07)
- MSW: Tab bar icons now scale on high-DPI displays
- The sizing and spacing of several dialogs has been improved on high-DPI displays
- MSW: Fix visual glitches when changing the selected site in the Site Manager
- When creating a new tab, the pane sizes are now inherited from the previous tab.
- macOS: Additional fixes for handling Cmd+V, Cmd+C and Cmd+X in text input controls
- Refactored internal settings and option handling
3.48.1 (2020-05-18)
- If FileZilla is configured to restore open tabs on startup, the directory trees no longer shrink in size
3.48.1-rc1 (2020-05-12)
! MSW: The settings directory is now initially created with tight permissions restricted to the user's account. Previously the directory could have had inherited too wide permissions if a custom location outside the user's profile directory had been preconfigured.
+ Redesigned certificate dialog
+ During directory comparison and comparative search, Ctrl+Shift+A can now be used to select only the highlighted files
- Fixed import of settings
- Fixed local file editing if the option to track local file changes had been disabled
- Fixes to storing associations
3.48.0 (2020-04-27)
! Custom associations for file extensions containing spaces were not saved correctly
3.48.0-rc1 (2020-04-20)
+ Overhaul of file associations for editing files. The setting to inherit system associations has been removed. When first editing a type of file with no default editor set, a dialog is shown asking which editor to use. The system associatio, if it exists, is a choice in this dialog.
- SFTP: Re-added support for AES-GCM which was accidentally removed in 3.46.1
- Fixes for comparative search leaving the program in an inconsistent state when closing the dialog during an ongoing search
- Building and running FileZilla now depends on libfilezilla >= 0.20.0 (https://lib.filezilla-project.org/)
3.47.2 (2020-03-10)
- macOS: Potential fix for clipped text labels on a few systems
- SFTP: Backported selected fixes from developement versions of PuTTY
- Fixed value range for directional transfer limits
- Fixed layout issues if changing to/from comparative search
3.47.1 (2020-02-24)
- Fixed regression loading advanced site parameters
3.47.0 (2020-02-24)
- Fix visual glitched adding/removing filter rows
- MSW: Limit amount of text that can be entered in spin controls
3.47.0-rc1 (2020-02-16)
+ Added new search mode: Comparative search
+ Pressing F7 now switches focus between local and remote panes
- MSW: Work around a linker bug breaking ASLR
- macOS: Avoid spurious button events consuming keyboard shortcuts
- Increased minimum width of text field in generic input dialogs
- Refactored Site Manager controls to increase modularity and fixed some minor GUI inconsistencies
- Refactored engine connection logic
- Building and running FileZilla now depends on libfilezilla >= 0.19.1 (https://lib.filezilla-project.org/)
3.46.3 (2019-12-23)
- SFTP: Fixed handle leak on Windows
- SFTP: Remote paths were not fully resolved on all operations
3.46.2 (2019-12-20)
- SFTP: Fixed a regression connecting using a password-protected keyfile
3.46.1 (2019-12-20)
- Fixed a crash if an FTP server sends too long response lines
- Building and running FileZilla now depends on libfilezilla >= 0.19.3 (https://lib.filezilla-project.org/), this fixes a few issues with the new speed limiting code
- SFTP components have been updated and are now based on PuTTY 0.73
3.46.0 (2019-11-25)
- Fixed a rare crash if closing FileZilla the very same moment a connection or transfer requests user attention
3.46.0-rc1 (2019-11-15)
+ Show an error message in the local directory listing if the user lacks permission to show the directory
- Local filelist status bar is now reset if accessing a local directory fails
- macOS: Work around an a bug in macOS 10.15 (Catalina) where closing a dialog shown from a timer can result in temporary freezes
- Refactored speed-limiting code
- Building and running FileZilla now depends on libfilezilla >= 0.19.1 (https://lib.filezilla-project.org/)
3.45.1 (2019-09-25)
- Fixed sorting issues in the directory trees
3.45.0 (2019-09-23)
- Updated translations
3.45.0-rc1 (2019-09-16)
+ If checking for updates cannot be performed for a prolonged time, users are warned about using an outdated version
- Performance improvements if expanding or refreshing a directory with thousands of direct subdirectories in the directory trees
- Fixed prefix search in Site Manager
- macOS: Fix password pasting using Cmd+V
- Minor performance improvements deleting many thousands of files
3.44.2 (2019-08-15)
- MSW: Fixed a crash if using predefined sites through fzdefaults.xml
- Fixes to protocol selection glitches in the Site Manager
- Increase maximum length of response lines when using FTP
3.44.1 (2019-08-09)
- Fixed a regression introduced in 3.44.0-rc1 breaking support for insecure servers
3.44.0 (2019-08-08)
- Fixed export in context menu of Site Manager to handle multiple selected items
3.44.0-rc1 (2019-08-02)
+ Multiple items can now be selected in the Site Manager
+ Pressing F3 in the Site Manager opens a search dialog
+ Add a reminder to the message log to switch to FTP over TLS each time a plain FTP connection is used
- Fix loading of confirmed, known insecure hosts
- Building and running FileZilla now depends on libfilezilla >= 0.18.0 (https://lib.filezilla-project.org/)
3.43.0 (2019-06-27)
! Filenames containing double-quotation marks were not escaped correctly when selected for opening/editing. Depending on the associated program, parts of the filename could be interpreted as commands.
- Added a second layer of authentication to the update mechanism
3.43.0-rc2 (2019-06-21)
- Rebuilt against libfilezilla 0.17.1
3.43.0-rc1 (2019-06-19)
- macOS: Minimum required macOS version has been increased to 10.11 (El Capitan)
- *nix: Official Linux binaries are now built for Debian 10 (Buster)
- Building FileZilla now requires a C++17 compiler
- Building and running FileZilla now depends on libfilezilla >= 0.17.0 (https://lib.filezilla-project.org/)
- When using SFTP, fix fallback to password authentication on a server refusing a password-protected key
- Fix HTTP proxy support
- *nix: Improve resolution of program icon
3.42.1 (2019-05-08)
- OS X: Fix a compatibility issue with macOS 10.13
3.42.0 (2019-05-02)
- Fixed a potential crash if the first-launch welcome dialog is shown at an inopportune moment
- Fixed display of subject and issuer details in the certificate verification dialogs with some certificates
- Official binaries are now built againt GnuTLS 3.6.7, minimum required GnuTLS version to build FileZilla is now 3.5.7
3.42.0-rc1 (2019-04-26)
- Switching from using a master password to not saving passwords at all no longer requires entering the master password
- *nix: Fixed support for internationalized domain names on systems having AI_IDN when using SFTP
- Fixed an assertion after importing a manipulated queue file
- When importing sites, any imported passwords are now immediately protected/deleted depending on the password protection settings
- The ability to import Site Manager entries from antique FileZilla 2, last updated over a dozen years ago, has been removed
3.42.0-beta1 (2019-04-21)
- Building and running FileZilla now depends on libfilezilla >= 0.16.0 (https://lib.filezilla-project.org/)
- Limit the maximum length of site, bookmark and filter names to prevent display issues and crashes due to some operating systems badly handling long texts
- When displaying message boxes, insert zero-width spaces into long unbroken words to prevent display issues and crashes due to some operating systems badly handling long texts
- Fix crash in the external IP address resolver
- Fix some assertions if a server sends bad file sizes
- Large refactoring of the socket code
- The thread pool from libfilezilla is now used for all worker threads
3.41.2 (2019-03-18)
! Backport a security fix from PuTTY 0.71 affecting SFTP connections: Fix an integer overflow in the RSA key exchange preceeding host key verification
3.41.1 (2019-03-06)
- Fix a regression introduced in 3.41.1 with slow FTP servers needlessly waiting for a bidirectional shutdown of the data connection during downloads
3.41.0 (2019-03-06)
- MSW: Fix an issue with failing uploads due to the operating system not gracefully closing TCP connections contrary to the documented behavior
- MSW: Fix compilation flags for wxWidgets to no longer include useless XP compatibility
3.41.0-rc1 (2019-02-26)
- Fixed crash if adding a bookmark with the current connection not yet having a Site Manager entry
- Fixed a rare crash if closing FileZilla while a recursive chmod operation is still in progress
- Fixed a rare crash if starting directory comparison on an empty directory without logical parent
- Fixed a rare crash on changing the file list sort order when the focused item index has previously become invalid
- Restrict the maximum length of regular expressions in filter conditions due to bugs in some implementations of the C++ Standard Library causing crashes
- OS X: Fixed crash if the path of a file dropped on FileZilla cannot be obtained
- Fixed order in which directories helper tools and data files are searched for
- Fixed a rare crash if closing tab during an ongoing recursive directory deletion
3.40.0 (2019-01-25)
- Official binaries are now linked against GnuTLS 3.6.6
3.40.0-rc2 (2019-01-22)
- Fix regression introduced in rc1 where adding files to queue creates extra server items if the connection was established through the Site Manager
3.40.0-rc1 (2019-01-18)
+ Added TLS 1.3 support by linking official binaries against GnuTLS 3.6.5
+ Refactored how sites and servers are being represented internally to fix issues trigged by renaming sites in the Site Manager
- Fix display of server names containing ampersands in several dialogs
- Fix regular expression filter in the quick search panel
- Fix a crash if files are added to the queue when there are already files for multiple different servers in the queue
- Fix a crash applying filters when there are no selected files and the focused item is past the new file count
- Fix a crash if emptying the queue while a directory creation item is active
- Fix a potential crash if FileZilla is being closed the moment a delayed dialog has already been created but before it is shown.
3.39.0 (2018-11-30)
- Fix timestamps of newly created empty files on the server if the option to preserve timestamps is set
3.39.0-rc1 (2018-11-23)
+ The down button on the keyboard now opens the quickconnect history dropdown menu if the quickconnect bar has the input focus
+ The down button on the keyboard now opens the search options if the quick search dialog has the input focus
- Refactored how close notifications were handled in the network code
- Fixed saving of the 'not equal' and 'less than' conditions for size filters
- Fixed regular expression filters not respecting the case-sensitivity checkbox in all situations
- Restore context menu item to delete file in local file search
3.38.1 (2018-10-27)
- Fixed crash if transferring three or more files in parallel when speed limits are enabled
3.38.0 (2018-10-26)
- Updated translations
3.38.0-rc1 (2018-10-19)
+ Refreshing remote file list while holding Ctrl now clears the remote directory cache for the current server
+ Changed default logon type if creating a new site in the Site Manager
- Fixed state of controls in the Site Manager when creating a new site after the previously viewed site has been predefined
- Fixed dragging remote files to queue
- Building and running FileZilla now depends on libfilezilla >= 0.15.0 (https://lib.filezilla-project.org/)
- Improve compatibility with GnuTLS 3.6.x
- Fix building with automake >= 1.16.0
3.37.4 (2018-09-04)
- MSW: Fix regression introduced in 3.37.3 with moving files locally using drag&drop
3.37.3 (2018-09-28)
- Fix issues with directory creation when uploading many files in parallel
- macOS: Fix crashes if dragging more than one file
- macOS: Opt out of Dark Mode
3.37.1 (2018-09-21)
- Local path is no longer forgotten when leaving synchronized browsing mode
3.37.0 (2018-09-17)
- Fix remote target path if uploading files through the search dialog
3.37.0-rc1 (2018-09-10)
+ Use a cache for the system trust store to speed up connecting establishment on systems with huge certificate revocation lists in the system trust store
- Fixed bug in GnuTLS causing crashes on connection establishment
- Fixed enabled state of controls in the Site Manager if switching to a protocol not supporting the previously selected logontype
3.36.0 (2018-08-27)
- Fix --site-manager command-line argument
- Fix potential crash with malformed directory listings
- Fix potential crash if opening/closing tabs or starting the queue while directories are being renamed or deleted
3.36.0-rc1 (2018-08-20)
+ Ask for explicit confirmation prior to falling back to insecure plaintext FTP if a server refuses to use TLS
+ Warn if an FTP server refuses TLS that is known from previous connections to be capable of TLS
3.35.2 (2018-08-06)
- Fix functionality of --site and --local command-line options
- MSW: Fix local rename not updating file list
- OS X: Fix compatibility with old CPUs not supporting SSE4
3.35.1 (2018-07-23)
- Fix context menu in search dialog
3.35.0 (2018-07-23)
+ Improved appearance of activity indicators, sort direction indicators, and quick search panel buttons on high-DPI displays
3.35.0-rc2 (2018-07-17)
- OS X: Fix dependency problem in build system
3.35.0-rc1 (2018-07-16)
+ Add option to settings dialog to have FileZilla restore tabs and connections after a restart
- Fix initial size of Site Manager being too small on some systems
3.34.0 (2018-06-15)
+ After deleting files, the focus rectangle now stays near the previously deleted file
3.34.0-rc1 (2018-06-08)
+ Refactoring of the Site Manager internals
+ Moved protocol selection to the top in the Site Manager
+ Adjusted spacing in the Site Manager
+ Slightly reduced height of certificate details dialog
- MSW: Properly quote the uninstall command in the registry
- Updated builtin pugixml to version 1.9
3.33.0 (2018-05-07)
- MSW: Microsoft broke the ICopyHook interface in Windows 1803. Until Microsoft fixes the bug in Windows, drag & drop from FileZilla into Explorer will not work on Windows 1803.
3.33.0-rc1 (2018-04-27)
+ The contents of the transfer queue can now be sorted
+ SFTP: Support key files encrypted with aes256-ctr, e.g. as created by OpenSSH 7.6 and later
- SFTP: Fix preserve timestamps menu option
3.32.0 (2018-04-02)
+ Further SFTP performance improvements
3.32.0-rc1 (2018-03-23)
+ The Site Manager no longer shows controls not applicable to the selected protocol
+ Dynamically disable menu items if the used protocal does not support the corresponding functionality
+ Speed up listing large directories over SFTP
- Fix state of case sensitivity checkbox in the filter edit dialog if no filter has been selected
3.31.0 (2018-02-23)
- Building and running FileZilla now depends on libfilezilla >= 0.12.1 (https://lib.filezilla-project.org/)
3.31.0-rc1 (2018-02-16)
+ Allow trusting all subject alternative names (SAN) in a certificate if the current hostname matches the certificate
- OS X: Fix file lists becoming inresponsive when a file rename edit box is discarded by clicking to the right of the last column in the file list
- Fix rare crash during directory removal
- Fix rare crash in the transfer queue
3.30.0 (2018-01-08)
- Add additional logging if autoupdate mechanism fails
3.30.0-rc1 (2017-12-29)
+ In the search dialog local files can now be deleted or opened
+ The root node in the remote directory tree is now expanded by default
- Fix uploading from search dialog
- Fix formatting of filename in rename dialog
- MSW: Fix installer crash if an update installation is started with the updated version having been installed
3.29.0 (2017-11-06)
- Fix activity indicators not working after the update check has been run
3.29.0-rc1 (2017-10-30)
+ Added new quick search filter to file lists, accessed through Ctrl+F
+ FTP over TLS: Mismatched hostnames are now highlighted in red in the certificate verification dialog
+ Filters using regular expressions can now be case-insensitive
- Explicitly wait for the settings to be written to disk before removing the backup file to prevent loss of data in case of system crashes
3.28.0 (2017-09-29)
+ *nix: Official Linux binaries are now built for Debian 9 (Stretch)
- Do not disable password saving settings if fzdefaults.xml contains a kiosk mode setting of 0.
3.28.0-rc1 (2017-09-22)
+ Add "Close once" as queue completion action
- Fixed crash if FileZilla is forced to close, e.g. when the system is shutting down, while there are open dialogs
- If the transfer queue asks for a password and the password dialog is canceled the queue processing is now stopped
- OS X, *nix: Improve detection of invalid character encodings in local filenames
- Fix potential crash expanding directory tree items while changing selections
3.27.1 (2017-08-14)
! Change client identification string if connecting with SFTP due to OpenSSH disregarding the supported ciphers announced by the client, resulting in less secure algorithms being chosen by OpenSSH.
- MSW: Improve handling of NTFS reparse points
- MSW: If running the installer with /S, previous versions where not uninstalled prior to the new version being installed
- MSW: The installer can be run with /quiet for a semi-silent installation
- OS X, *nix: Potential fix for a rare crash if changing local directories while the local directory list is being updated and vice versa.
3.27.0.1 (2017-07-19)
- MSW: Add misssing file to .zip binary package
- MSW: Fix toolchain issues breaking the shell extension
3.27.0 (2017-07-19)
- SFTP components have been updated and are now based on PuTTY 0.70
3.27.0-rc1 (2017-07-11)
+ Support for the Storj decentralized cloud storage provider
- MSW: Fix display of file type of directories if the directory name contains a dot
- Fix assertion if entering an invalid protocol prefix into the host field on the quickconnect bar or in the site manager
- Improve error message if TLS certificate verification fails due to a missing stapled OCSP resonse
- Building and running FileZilla now depends on libfilezilla >= 0.10.0 (https://lib.filezilla-project.org/)
3.26.2 (2017-06-12)
- Fixed crash if using master passwords and decrypting very long passwords
3.26.1 (2017-06-02)
- Fixed crash if changing password settings and the Site Manager contains subdirectories
- *nix: Fixed saving of sites having more than one site-specific bookmark
3.26.0 (2017-06-01)
- When changing or removing the master password, update protected credentials of server items in the transfer queue
- Fix display of remember checkbox when showing the password entry dialog for sites that have no username set and are using the "Ask" logon type
- Some icons were missing in the Windows .zip binary archive
3.26.0-rc1 (2017-05-25)
+ Passwords can now be stored encrypted, protected with a master password
+ Building and running FileZilla now depends on libfilezilla >= 0.9.2 (https://lib.filezilla-project.org/).
+ Building and running FileZilla now depends on wxWidgets >= 3.0.3
3.25.2 (2017-04-30)
- SFTP components have been updated and are now based on PuTTY 0.69
- Fixed potential stall during the final listing operation when finishing a queue which contained uploads
3.25.2-rc1 (2017-04-23)
- Fix crash if filters.xml has become corrupted
- Fix FTP proxy support
- Fix sending of FTP keep-alive commands
- MSW: Windows Vista is no longer supported
- MSW: File and directory icons now also appear on systems that have no Windows directory
3.25.1 (2017-03-20)
- OS X: Fixed a crash if connecting to old servers not supporting UTF-8
- Fixed timeout detection
3.25.0 (2017-03-13)
+ OS X: The minimum required OS X version is now 10.9
- OS X: Disable App Nap during transfers and other operations
- OS X: Downloaded updates are now stored in the Downloads directory
- OS X: Fix initial toolbar state on startup if it was hidden when FileZilla was last closed
- Fix reconnect delay logic which broke in 3.25.0-beta1
- Fix piecewise creation of remote paths using FTP which broke in 3.25.0-beta1
3.25.0-rc1 (2017-03-04)
- Fix encryption selection for FTP in the Site Manager which broke in 3.25.0-beta1
- Small changes to error message texts
3.25.0-beta1 (2017-02-24)
+ Major refactoring of the FileZilla internals.
- Scale width of fields in the status line control on high-DPI displays
- Fix duplicate mnemonic in "Files currently being edited" dialog.
3.24.1 (2017-02-21)
- Fixed rendering icons in the remote directory tree when DPI scaling is enabled on Windows Vista and some Windows 7 machines
- SFTP components have been updated and are now based on PuTTY 0.68
- Updated builtin pugixml to version 1.8
3.24.0 (2017-01-13)
- Fixed a possible crash if sending FTP commands fails during a directory listing operation
- *nix: Fixed a scrolling issue in the message log if wxWidgets is built against GTK3
3.24.0-rc1 (2017-01-06)
+ The context menu for remote file search results now has a "Copy URL(s) to clipboard" item
+ Alt+number can now be used to switch between tabs in addition to Ctrl+number
+ SFTP hostkey fingerprints are now also shown as base64 encoded SHA256 hashes to match the new format displayed by OpenSSH
- Errors at the end of SFTP transfers now correctly result in transfer failures instead
- Cancelling synchronized browsing questions no longer prevents further directory changes
- Fix display issues for the filter conditions dialog
- Fix deleting multiple extensions on the filetype page in the settings
- OS X: Do not open dialogs while already processing an event, e.g. while a context menu is open
3.23.0.2 (2016-12-06)
- Key file paths entered in the Site Manager are now saved to corresponding server entries in the transfer queue
- MSW: Work around a bug in wxWidgets causing bad icons in the remote directory tree due to wxImageList::GetBitmap errorneously stripping the alpha channel from images
- Allow relative paths and environment variables in the "Cache directory" setting.
3.23.0.1 (2016-12-05)
- Work around a bug in wxWidgets that has been causing a virtually infinite loop when deleting toolbar buttons
3.23.0 (2016-12-05)
- Speed up icon scaling and cache scaled icons for faster subsequent loading. The cache directory can be changed through fzdefaults.xml using the "Cache directory" setting
- OS X: Fixed icon display on high-DPI displays in a few more dialogs
- Loading a corrupted layout.xml or search.xml no longer shows an error message, these files are now silently overwritten
- MSW: Fixed a regression where UNC paths where not handled correctly as config location in fzdefaults.xml
3.23.0-rc1 (2016-11-28)
+ New high-resolution icons
+ Improvements to the sizing of icons and other user interface elements on high-DPI displays. For technical reasons, existing theme settings have been reverted to their default values. They can be changed again in the settings dialog.
+ Make use of the Unix.ownername and Unix.groupname facts for MLSD if available
- The bookmarks menu updates again after changing global bookmarks
- Adding a site to the Site Manager as part of adding a site-specific bookmark no longer fails if sitemanager.xml does not yet exist
- Strip byte order marks at the beginning of directory listings
- Add an option to filezilla.xml to control cache ttl
3.22.2.2 (2016-11-01)
- Fixed trimming of FEAT response lines leading to incorrectly detected server features
3.22.2.1 (2016-11-01)
- OS X: Rebuilt to work around a nasty bug in XCode: Even when linking with -Wl,-no-weak-imports it links against functions not available on older OS X versions
- Fixed a crash on exotic servers only implementing factless MLST/MLSD
3.22.2 (2016-11-01)
- Tuned appearance of progress bar in transfer queue
3.22.2-rc2 (2016-10-28)
- SFTP: Renaming a file or directory where the new name already refers to a directory no longer moves the file into this directory.
- Fix regression from -rc1 with custom ports in the quickconnect bar
- Fix regression from -rc1 parsing the EPSV reply
3.22.2-rc1 (2016-10-25)
+ Building and running FileZilla now depends on libfilezilla >= 0.8.0 (https://lib.filezilla-project.org/).
- Non-existing key files are no longer silently dropped from the SFTP page in the settings dialog
- Further abbreviate log output if transferring files using SFTP
- Generic proxy usernames and passwords containing non-ASCII characters are again handled correctly
- Fixed an assertion if Ctrl+A is pressed in an empty file list
- *nix: Fixed color of status message in the message log
- *nix, OS X: Fixed an assertion adding files to the queue after having selected a large range of items
- *nix, OS X: Fixed an assertion due to a timing issue when renaming local files
3.22.1 (2016-10-03)
- OS X: Work around a nasty bug in XCode where programs explicitly compiled for older versions of OS X were silently pulling in features exclusive to the new version, resulting in crashes at runtime
- Fixed a potential crash when using SFTP
3.22.0 (2016-10-01)
- Bookmarks with the "Directory comparison" checkbox set now work correctly
- MSW: Fix background clearing issue on the size format settings page
- MSW: Toggling the log timestamp option no longer results in wrong log colors
- Fix for premature queue completion action
3.22.0-rc1 (2016-09-24)
+ Directory listing filters can now be exported and imported
+ Added the "not all" filter match type to filter out all items not matching all conditions
+ Added the "not all" search match type to search for all items not matching all conditions
+ Building and running FileZilla now depends on libfilezilla >= 0.7.0 (https://lib.filezilla-project.org/).
+ Building and running FileZilla now depends on GnuTLS >= 3.4.15
- Speed up creation of socket and file i/o threads through the use of a thread pool
- Replace invalid characters in filenames when calculating the local filename for editing remote files
- The updater can now handle HTTPS servers that redirect to other HTTPS servers
- SFTP: Try password based login if a password-protected keyfile is rejected by the server instead of failing the login
- MSW: The shell extension now supports long paths on Windows 10
3.21.0 (2016-08-23)
! Fixed a string format vulnerability introduced in 3.20.0-rc1 when listing directories using SFTP
+ SFTP: Added support for AES-GCM ciphers as implemented in OpenSSH
+ OS X: Ctrl+Tab and Ctrl+Shift+Tab can now be used to switch forward and backward between opened tabs
- Reduced time between TCP keepalive packets to 15 minutes on supporting platforms
- Fixed saving of directory listing filters with an attribute condition
3.20.1 (2016-08-03)
- Fixed rename file exists action on downloads
- Fixed possible crash if disabling log abbreviation
- Official binaries now link against a patched version of GnuTLS so that a better error message can be printed on broken servers that send malformed certificate chains
3.20.0 (2016-07-27)
+ Display error message if entering a non-existing path on local file search
+ Building and running FileZilla now depends on libfilezilla >= 0.6.1 (https://lib.filezilla-project.org/).
3.20.0-rc1 (2016-07-20)
+ Added compatibility for filenames with leading or trailing whitespace if using SFTP
+ Building and running FileZilla now depends on libfilezilla >= 0.6.0 (https://lib.filezilla-project.org/).
+ Building and running FileZilla now depends on GnuTLS 3.4.0 or higher
- Fixed regression introduced in 3.19.0-rc1, reconnecting again uses the last used remote directory instead of the initial default remote directory
- Fixed crash if creating a new site via the bookmarks dialog
- Queuing remote directories for transfer no longer exits comparison mode
- Fixed a rare crash using FTP over TLS if the control connection fails at the same time the data connection gets established
- Entering invalid regular expressions in filter and search conditions now shows an error message
- Fixed title of search dialog
- Stricter certificate chain validation to supplement the Tofu model
- *nix: Fix initial size of Site Manager dialog with some GTK versions
3.19.0 (2016-06-27)
+ Building FileZilla now depends on libfilezilla >= 0.5.3 (https://lib.filezilla-project.org/).
- Fixed context menu in search dialog if not connected to server
- OS X, *nix: Fix displayed text in file list status bar if selecting a single item in the file list out of multiple already selected items
3.19.0-rc1 (2016-06-20)
+ In the Site Manager a background colour for sites can now be selected
+ Open tabs can be re-arranged using drag&drop
- Fixed copying URLs of multiple selected files to clipboard
- Setting remote file timestamps did not take timezone offsets configured through the Site Manager into account
3.18.0 (2016-05-27)
- Small fixes to local file search
- Fixed a regression introduced in 3.18.0-rc1 when formatting hostnames for display
3.18.0-rc1 (2016-05-20)
+ The search functionality can now also be used to search local files
+ Reduced CPU consumption of adding files to the list of search results
+ Opening the remote context menu while holding shift allows copying URLs to clipboard that include the password
+ Added an option to the configuration file through which initiating drag&drop can be disallowed
+ Reduced memory footprint of some data structures
+ Building FileZilla now depends on libfilezilla >= 0.5.2 (https://lib.filezilla-project.org/).
- The remote file list context menu no longer shows inapplicable entries while files are being added to queue
- Fix date validation in filter and search conditions
3.17.0.1 (2016-05-09)
! MSW: Quoted the path to the uninstaller when executed from the installer to prevent an attacker from tricking the installer into running some other program instead
- SFTP: Fixed resuming SFTP transfers
- MSW: Loading the system default locale no longer fails on systems that have any English locale installed, yet do not have the US-English locale installed
- Fixed crash if update dialog is opened at the very same moment FileZilla is being closed.
3.17.0 (2016-04-22)
- *nix: Removed a label on the filter dialog that doesn't apply to *nix builds
- Fix compilation if Nettle is installed in a custom location
- Fix potential issues with destruction order when closing FileZilla
3.17.0-rc1 (2016-04-15)
+ Recursively queuing local files for upload now displays the progress below the local file list
+ MSW: Use dynamic TCP send buffer sizes to improve upload speeds on high-latency connections
+ SFTP: Use hardware-accelerated AES on x86_64 CPUs if available by using the AES implementation from Nettle instead of PuTTY
+ Building FileZilla now depends on the Nettle library, version 3.1 or later
+ Building FileZilla now depends on libfilezilla >= 0.5.0 (https://lib.filezilla-project.org/).
- MSW: The installer now warns if it detects old versions of FileZilla outside of the installation directory
- Improve compatibility with directory listings where midnight is represented as 24:00:00 of the prior day
- SFTP: Failed downloads due to write failures, e.g. due to a full disk, no longer show up as successful
- SFTP: Fix transfer failures if multiple transfers try to list the same directory
- SFTP: Updated PuTTY components
- FTP over TLS: Debug logs now contain additional information about the TLS handshake
3.16.1 (2016-03-16)
! MSW: Updated installer to NSIS 3.0b3 to prevent DLL hijacking
- MSW: Fix string conversion functions of MinGW runtime libraries
- Updated PuTTY components
- Updated translations
- Official binaries now link against GnuTLS 3.4.10
- Official binaries now link against SQLite 3.11.1
3.16.0 (2016-02-29)
- Small fix for remembering queue completion actions
3.16.0-rc1 (2016-02-21)
+ Make notification bubble on queue completion configurable though the queue's context menu
+ Selected queue completion action is now remembered, excluding the system shutdown/sleep actions.
+ Added new servertype to the Site Manager for servers using MS-DOS style paths with forward slashes as separators
+ Building FileZilla now depends on libfilezilla >= 0.4.0 (https://lib.filezilla-project.org/).
- Fixes for network configuration wizard leading to incorrect test result
- MSW: Installer now removes leftover files from improperly uninstalled previous versions
3.15.0.2 (2016-02-10)
- MSW: Binaries are now also signed using a SHA-256 signature and certificate.
- OS X: Move location of COPYING file containing the GPL to a different location in the bundle. On some systems OS X cannot verify the bundle with the file at the old location
- Restore focused item if changing directory listing sort order
- Fix restoring the column widths of the failed transfers tab in the queue when starting FileZilla
- MSW: Double-clicking a divider between a list header in the queue now adjust the sizes in the other tabs just as dragging the width would
3.15.0.1 (2016-02-02)
- Fix for search dialog not displaying the results from the last visited directory of a search
3.15.0 (2016-01-30)
+ MSW: Display notification bubble if FileZilla isn't in the foreground and all active transfers have finished.
3.15.0-rc1 (2016-01-23)
- Fix regression from 3.16.0-beta1 where extra data being appended to some downloaded files
- Fix setting initial pane sizes when creating new tabs
- OS X: Fix display of issuer and subject details in certificate verification dialog
- Updated SFTP components from PuTTY
- Official binaries now link against GnuTLS 3.4.8
- Official binaries now link against SQLite 3.10.2
3.15.0-beta1 (2016-01-13)
+ Building FileZilla now depends on libfilezilla 0.3.0 (https://lib.filezilla-project.org/).
+ Added support for downloading and deleting multiple unrelated directories from the search dialog
+ *nix: Vastly speed up line-ending conversion when downloading files using the ASCII data type
+ Improved compatibility with broken servers omitting the mandatory 1yz reply to transfer commands
- Fix handling of SFTP keyfiles with non-ASCII characters in their paths
- Add missing directory comparison checkbox to new bookmark dialog
- MSW: Installer now sets appid on desktop icon
- Updated built-in pugixml
3.14.1 (2015-10-16)
+ For third-party builds, add configure flag to allow using system ciphers for FTP over TLS. Display a warning if an insecure cipher is negotiated as result of using system ciphers.
- Fixed loading of the directory comparison flag for bookmarks in the Site Manager
- Changing the interface layout and icon theme no longer results in an inconsistent UI state
- Some SFTP servers send additional information on errors. This information is now shown in the message log
- If the local file cannot be opened on SFTP transfers FileZilla no longer automatically retries
- Updated SFTP components from PuTTY
3.14.0 (2015-09-16)
- When connecting using SFTP, show an error message instead of silently failing when encountering an insecure cipher
3.14.0-rc2 (2015-09-09)
- Removing selected queue items is now faster
- Reduced memory usage of queue
- When connecting to hostnames with multiple IPs, reset timeout if trying the next address
3.14.0-rc1 (2015-09-04)
+ Add support for password-protected SSH private keys
+ SSH private keys not in PuTTY's native format no longer need to be converted if they aren't password-protected
+ When using synchronized browsing, changing to a directory that does not exist on both sides now asks whether the missing directory should be created
- SSH1 support for SFTP has been disabled
3.13.1 (2015-08-24)
- Fix SFTP component crashing on some combinations of encryption and key exchange algorithm
- Fixed Ctrl+Shift+I shortcut to toggle filters
- OS X: Fixed Ctrl+, shortcut to open settings dialog
- Optimizations to reduce memory footprint
- Build system fixes
3.13.0 (2015-08-15)
+ Display home directory instead of root directory if the last used directory does not exist
+ Larger initial size of main window if there is no stored size
+ Slightly increased size of page selection box in settings dialog
- Fix assertion in directory listing parser
- Fix drag&drop of remote files which broke in 3.13.0-rc1
3.13.0-rc2 (2015-08-10)
- Updated SFTP components from PuTTY
- Official binaries now link against GnuTLS 3.4.4
- Official binaries now link against SQLite 3.8.11.1
3.13.0-rc1 (2015-08-05)
+ For SFTP servers the private key file to use can now be specified in the Site Manager
+ The contents of each queue tab can now be exported through the context menu
+ MSW: The installer now registers the App Path so that FileZilla is recognized in the Win+R dialog
+ FileZilla now uses pugixml instead of TinyXML to parse and create XML files
+ Several performance improvements
+ Code cleanup and modernization, building FileZilla now requires a C++14 compiler
- Fixed an assert loading sitemanager.xml created by an old version