Changelogs
Overview
These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2025-04-04 13:10:01
Changelog for FileZilla 3 (8068 changes):
2016-12-01 09:09 codesquid, revision 8028- M /FileZilla3/trunk/src/interface/context_control.cpp
- M /FileZilla3/trunk/src/interface/FileZilla.cpp
- M /FileZilla3/trunk/src/interface/filezillaapp.h
- M /FileZilla3/trunk/src/interface/LocalListView.cpp
- M /FileZilla3/trunk/src/interface/LocalTreeView.cpp
- M /FileZilla3/trunk/src/interface/Mainfrm.cpp
2016-12-01 09:06 codesquid, revision 8027Minor refactoring.
2016-12-01 08:12 codesquid, revision 8026Remove call to no longer existing sub-make
- A /FileZilla3/trunk/src/interface/resources/32x32
- A /FileZilla3/trunk/src/interface/resources/32x32/filezilla.png
2016-11-30 20:19 codesquid, revision 8025Restore accidentally deleted file.
2016-11-30 20:18 codesquid, revision 8024Fix a compile erorr on mac.
- M /FileZilla3/trunk/src/interface/fileexistsdlg.cpp
- M /FileZilla3/trunk/src/interface/themeprovider.cpp
- M /FileZilla3/trunk/src/interface/themeprovider.h
2016-11-30 16:37 codesquid, revision 8023Avoid expensive conversion from wxBitmap to wxImage.
2016-11-30 16:34 codesquid, revision 8022Update svn:ignore
2016-11-30 16:32 codesquid, revision 8021Remove a few empty lines
2016-11-30 16:31 codesquid, revision 8020Fix yet another syntax error.
2016-11-30 16:27 codesquid, revision 8019Fix syntax error
- M /FileZilla3/trunk/configure.ac
- D /FileZilla3/trunk/src/interface/resources/32x32
- M /FileZilla3/trunk/src/interface/resources/Makefile.am
2016-11-30 15:56 codesquid, revision 8018Flatten makefiles a little bit.
2016-11-30 15:47 codesquid, revision 8017Fix compile error
- D /FileZilla3/trunk/src/interface/resources/32x32/file.png
- M /FileZilla3/trunk/src/interface/resources/32x32/Makefile.am
- D /FileZilla3/trunk/src/interface/resources/48x48/speedlimits.png
- M /FileZilla3/trunk/src/interface/resources/Makefile.am
2016-11-30 15:43 codesquid, revision 8016Remove unused files.
2016-11-30 15:42 codesquid, revision 8015Add old toolbar.xrc to leftover cleanup.
- M /FileZilla3/trunk/src/interface/FileZilla.cpp
- M /FileZilla3/trunk/src/interface/interface.vcxproj
- M /FileZilla3/trunk/src/interface/Makefile.am
- M /FileZilla3/trunk/src/interface/resources/Makefile.am
- D /FileZilla3/trunk/src/interface/resources/xrc/toolbar.xrc
- M /FileZilla3/trunk/src/interface/toolbar.cpp
- M /FileZilla3/trunk/src/interface/toolbar.h
- D /FileZilla3/trunk/src/interface/xh_toolb_ex.cpp
- D /FileZilla3/trunk/src/interface/xh_toolb_ex.h
- M /FileZilla3/trunk/src/interface/xrc_helper.cpp
2016-11-29 15:43 codesquid, revision 8014Much easier toolbar creation by not using XRC.
2016-11-29 14:53 codesquid, revision 8013Add missing directory to SUBDIRS
2016-11-29 11:21 codesquid, revision 8012Do path expansion in a way that does not destroy UNC paths on MSW. Fixes #11088
2016-11-28 17:00 codesquid, revision 8010Apply #11086 to fix a deprecation warning in some wx configurations.
2016-11-28 16:50 codesquid, revision 8009Fix size of disabled speedlimits icon on Mac.
2016-11-28 16:46 codesquid, revision 8008Initialize two members.
2016-11-28 16:29 codesquid, revision 8005Update svn:ignore
- M /FileZilla3/trunk/locales/bg_BG.po
- M /FileZilla3/trunk/locales/de.po
- M /FileZilla3/trunk/locales/eu.po
- M /FileZilla3/trunk/locales/fr.po
- M /FileZilla3/trunk/locales/it.po
- M /FileZilla3/trunk/locales/uk_UA.po
2016-11-28 16:03 codesquid, revision 8004Updated translations
2016-11-27 19:43 codesquid, revision 8003Bump to 3.23.0-rc1
- M /FileZilla3/trunk/src/interface/resources/xrc/toolbar.xrc
- M /FileZilla3/trunk/src/interface/toolbar.cpp
2016-11-27 18:11 codesquid, revision 8002Slightly indent first toolbar icon on MSW, without it just looks odd on Windows 10 where there are no window decorations.
2016-11-27 18:10 codesquid, revision 8001Fix type mismatch in sftp_find_request The id member of the sftp_request structure is of type unsigned int. This type is also used in the sftp_reqfind callback. In sftp_find_request we thus need to pass a pointer to unsigned int to find234. Before this commit, sftp_find_request was passing a pointer to unsigned long to find234, which causes the lookup to fail on big-endian platforms where sizeof(unsigned int) != sizeof(unsigned long), e.g. ppc64.
Fix two harmless warnings.