Browse Source

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

FEATURE: Support tracker exchange between peers

Updated Changelog
adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
1cc6086468
  1. 10
      Changelog
  2. 3
      src/bittorrent.cpp

10
Changelog

@ -1,6 +1,16 @@ @@ -1,6 +1,16 @@
* Unknown - Christophe Dumez <chris@qbittorrent.org> - 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 <chris@qbittorrent.org> - v1.5.0
- FEATURE: Added Magnet URI support

3
src/bittorrent.cpp

@ -76,8 +76,9 @@ bittorrent::bittorrent() : DHTEnabled(false), preAllocateAll(false), addInPause( @@ -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();

Loading…
Cancel
Save