Changelogs
Overview
These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2025-04-04 06:50:01
Changelog for FileZilla 3 (8068 changes):
2014-07-31 10:17 codesquid, revision 59532014-07-31 08:18 codesquid, revision 5952Refresh dialog after changing certificate to display.
2014-07-30 14:44 codesquid, revision 5951Remove 10 lines at a time when the log gets too big.
2014-07-30 14:10 codesquid, revision 5950Fix nullpointer dereference on shutdown.
- M /FileZilla3/trunk/src/interface/dialogex.cpp
- M /FileZilla3/trunk/src/interface/Mainfrm.cpp
- M /FileZilla3/trunk/src/interface/Mainfrm.h
2014-07-30 13:16 codesquid, revision 5949Fix CMD+X and CMD+C
2014-07-30 13:08 codesquid, revision 5948Outside of debug builds, reset debug log level and raw listing if FZDEBUG environment variable is not 1.
2014-07-30 08:57 codesquid, revision 5947Only call SetInsertionPointEnd if not already at the end.
2014-07-29 19:50 codesquid, revision 5946Fix selecting newly created tabs.
- M /FileZilla3/trunk/src/engine/directorylistingparser.cpp
- M /FileZilla3/trunk/tests/dirparsertest.cpp
2014-07-29 14:22 codesquid, revision 5945Improve handling of some localized date formats, in particular with date/time of the format 29 jul 21:34
2014-07-29 12:05 codesquid, revision 5944The shell extension isn't part of SFC, so don't treat it as a PROTECTED library.
- M /FileZilla3/trunk/src/interface/commandqueue.cpp
- M /FileZilla3/trunk/src/interface/commandqueue.h
- M /FileZilla3/trunk/src/interface/Mainfrm.cpp
- M /FileZilla3/trunk/src/interface/recursive_operation.cpp
2014-07-28 18:50 codesquid, revision 5941Fix closing FileZilla if a recursive operation is active.
2014-07-28 18:49 codesquid, revision 5940Add comments in code to remind me of previous commit.
2014-07-28 18:33 codesquid, revision 5939GCC <= 4.7 does not like defaulted virtual destructors. Let's wait for Debian Stable to have GCC >= 4.8
2014-07-28 18:32 codesquid, revision 5938Disable Nagle algorithm a little bit earlier.
2014-07-28 14:16 codesquid, revision 5934Disable Nagle algorithm during TLS handshake.
- M /FileZilla3/trunk/src/engine/backend.h
- M /FileZilla3/trunk/src/engine/notification.cpp
- M /FileZilla3/trunk/src/include/commands.h
- M /FileZilla3/trunk/src/include/directorylisting.h
- M /FileZilla3/trunk/src/include/engineprivate.h
- M /FileZilla3/trunk/src/include/externalipresolver.h
- M /FileZilla3/trunk/src/include/FileZillaEngine.h
- M /FileZilla3/trunk/src/include/local_filesys.h
- M /FileZilla3/trunk/src/include/local_path.h
- M /FileZilla3/trunk/src/include/notification.h
- M /FileZilla3/trunk/src/include/server.h
- M /FileZilla3/trunk/src/include/serverpath.h
- M /FileZilla3/trunk/src/include/socket.h
- M /FileZilla3/trunk/src/include/timeex.h
2014-07-27 13:35 codesquid, revision 5922Refactor command and notification classes and mark a bunch of classes final.
2014-07-26 17:19 codesquid, revision 5920Handle a spurious GNUTLS_E_AGAIN from gnutls_record_recv.
2014-07-26 08:21 codesquid, revision 5919Get link target on *nix.
2014-07-26 08:20 codesquid, revision 5918Follow symbolic links when creating backup files.
2014-07-26 08:18 codesquid, revision 5917Follow symbolic links on Windows, part 2.
2014-07-25 19:59 codesquid, revision 5916Handle paths of the form \\?\c:\foo.bar and \\?\UNC\server\share\foo.bar
2014-07-25 14:11 codesquid, revision 5915Follow symbolic links on Windows.
2014-07-25 13:58 codesquid, revision 5914Remove debug code
2014-07-25 13:50 codesquid, revision 5913Load resources via CDialogEx::Load to benefit from the OSX Cmd+A/V fixes.
- M /FileZilla3/trunk/src/interface/dialogex.cpp
- M /FileZilla3/trunk/src/interface/dialogex.h
- M /FileZilla3/trunk/src/interface/Mainfrm.cpp
2014-07-25 12:23 codesquid, revision 5912Handle Cmd+V and Cmd+A in dialogs. For some reason we cannot use the normal menu event handler as with the main menu for some reason. Intercept the event before it is being processed by wxDialog and below.
- M /FileZilla3/trunk/src/interface/Mainfrm.cpp
- M /FileZilla3/trunk/src/interface/Mainfrm.h
- M /FileZilla3/trunk/src/interface/viewheader.cpp
Pasting via keyboard on OS X doesn't work with combo boxes and password entries. Not even EVT_CHAR_HOOK gets called. Accelerators work though, so use just that.