diff --git a/Changelog b/Changelog index 29e0e8711..948369cf1 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,16 @@ * Unknown - Christophe Dumez - v1.6.0 - FEATURE: Added per-torrent super seeding mode - 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 - v1.5.0 - FEATURE: Added Magnet URI support diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 085d0da90..508d76f29 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -76,8 +76,9 @@ bittorrent::bittorrent() : DHTEnabled(false), preAllocateAll(false), addInPause( // Load previous state loadSessionState(); // 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_lt_trackers_plugin); s->add_extension(&create_ut_pex_plugin); s->add_extension(&create_smart_ban_plugin); timerAlerts = new QTimer();