1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-30 08:24:22 +00:00

FEATURE: Metadata download from swarm is now compatible with µtorrent

FEATURE: Support tracker exchange between peers

Updated Changelog
This commit is contained in:
Christophe Dumez 2009-10-24 14:28:00 +00:00
parent b00eeef04d
commit 1cc6086468
2 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,16 @@
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v1.6.0 * Unknown - Christophe Dumez <chris@qbittorrent.org> - v1.6.0
- FEATURE: Added per-torrent super seeding mode - FEATURE: Added per-torrent super seeding mode
- FEATURE: Added program option to disable splash screen - FEATURE: Added program option to disable splash screen
- FEATURE: Support for storing symbolic links in .torrent files
- FEATURE: Support for uTorrent interpretation of multi-tracker torrents
- FEATURE: Handle torrents with duplicate filenames
- FEATURE: Support for merkle hash tree torrents (.merkle.torrent)
- FEATURE: Metadata download from swarm is now compatible with µtorrent
- FEATURE: Support tracker exchange between peers
- FEATURE: Better http seed support
- FEATURE: Tracker connections are now also subject to IP filtering
- FEATURE: Include DHT traffic in the rate limiter
- FEATURE: Support for bitcomet padding files
* Thu Sep 3 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.5.0 * Thu Sep 3 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.5.0
- FEATURE: Added Magnet URI support - FEATURE: Added Magnet URI support

View File

@ -76,8 +76,9 @@ bittorrent::bittorrent() : DHTEnabled(false), preAllocateAll(false), addInPause(
// Load previous state // Load previous state
loadSessionState(); loadSessionState();
// Enabling plugins // Enabling plugins
s->add_extension(&create_metadata_plugin); //s->add_extension(&create_metadata_plugin);
s->add_extension(&create_ut_metadata_plugin); s->add_extension(&create_ut_metadata_plugin);
s->add_extension(create_lt_trackers_plugin);
s->add_extension(&create_ut_pex_plugin); s->add_extension(&create_ut_pex_plugin);
s->add_extension(&create_smart_ban_plugin); s->add_extension(&create_smart_ban_plugin);
timerAlerts = new QTimer(); timerAlerts = new QTimer();