Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2024-04-19 21:50:01

Changes per page:

25 50 100 250 500 1000 2000

Changelog for FileZilla 3 (8010 changes):

2015-01-20 14:23 codesquid, revision 6376

Remove some old code only needed for compatibility with wx <= 2.8.10

2015-01-20 14:07 codesquid, revision 6375

Return early in UpdateSpeedLimitsIcon if the icon could not be loaded.

2015-01-20 09:47 codesquid, revision 6374

The time has come to disable RC4.

2015-01-18 11:42 codesquid, revision 6373

Use the parent window to get the screen as the dialog isn't realized yet.

2015-01-17 14:08 codesquid, revision 6372

Display SHA-256 certificate fingerprint instead of MD5 fingerprint.

2015-01-17 09:06 codesquid, revision 6371

Check return value of wxDisplay::GetFromWindow to avoid an assert. Addresses #10099. Root cause why it returns wxNOT_FOUND is unknown still.

2015-01-16 15:30 codesquid, revision 6369

Bump to 3.10.0.2

2015-01-16 15:29 codesquid, revision 6368

Updated translation

2015-01-16 15:20 codesquid, revision 6367

In rare cases a freshly deleted directory cannot be instantly recreated. Postpone stale directory cleanup until after creating the working directory.

2015-01-16 10:22 codesquid, revision 6366

Simplify buffer handling if sending doesn't send everything. At that point we know that there had been no previous buffer.

2015-01-16 10:02 codesquid, revision 6365

Fix a handle leak.

2015-01-16 09:55 codesquid, revision 6364

Add some consts and replace some reinterpret_casts with static_cast

2015-01-15 10:27 codesquid, revision 6363

Remove a bit of dead code.

2015-01-15 10:00 codesquid, revision 6362

Fix crash if a keyfile has been configured but the keyfile does not exist or is otherwise invalid.

2015-01-15 09:06 codesquid, revision 6361

Fix uninitialized variable: The value pointed to by perms wasn't set.

2015-01-12 19:26 codesquid, revision 6359

Bump to 3.10.0.1

2015-01-12 19:25 codesquid, revision 6358

Updated translations

2015-01-12 19:08 codesquid, revision 6357

wxFile internally uses _open which uses CreateFile with share mode FILE_SHARE_READ|FILE_SHARE_WRITE. For now also specify this share mode in our own file implementation, even though we do not want other programs from modifying the files we are transferring. Unfortunately lack of FILE_SHARE_WRITE breaks remote file editing, there are too many badly broken programs out there that keep descriptors open for writing even when not writing. TODO: In a future version, compare file timestamps before and after transfer. If timestamp has changed at the end of transfer, fail and retry.

2015-01-12 18:58 codesquid, revision 6356

Fix interrupted handshakes due to extremely large requests sent by server.

2015-01-11 09:58 codesquid, revision 6353

Fix post-login commands when selected protocol is INSECURE_FTP.

2015-01-11 09:45 codesquid, revision 6352

Small refactoring to reduce lifetime of wxFFile

2015-01-11 09:44 codesquid, revision 6351

Fix initialization of m_edit member, this prevented from saving queue items that were loaded from queue.

2015-01-09 09:19 codesquid, revision 6348

Apply #9997 to #include <errno.h> to fix a compile error.

2015-01-07 13:15 codesquid, revision 6345

Bump to 3.10.0

2015-01-07 13:12 codesquid, revision 6344

Use signed char as data type as plain char may be unsigned.