From 1cc60864682bc9d1fefd7e3a4045d8029d888915 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 24 Oct 2009 14:28:00 +0000 Subject: [PATCH] =?UTF-8?q?FEATURE:=20Metadata=20download=20from=20swarm?= =?UTF-8?q?=20is=20now=20compatible=20with=20=C2=B5torrent=20FEATURE:=20Su?= =?UTF-8?q?pport=20tracker=20exchange=20between=20peers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated Changelog --- Changelog | 10 ++++++++++ src/bittorrent.cpp | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) 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();