mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 01:44:26 +00:00
- Tracker scrape interval is now 20 min (15 minutes min).
This commit is contained in:
parent
3a6ff19418
commit
10ab8f107c
@ -37,6 +37,7 @@
|
|||||||
- FEATURE: Include DHT traffic in the rate limiter (libtorrent >= v0.15 only)
|
- FEATURE: Include DHT traffic in the rate limiter (libtorrent >= v0.15 only)
|
||||||
- FEATURE: Support for bitcomet padding files (libtorrent >= v0.15 only)
|
- FEATURE: Support for bitcomet padding files (libtorrent >= v0.15 only)
|
||||||
- FEATURE: Option to skip file checking and start seeding immediately in torrent addition dialog (Stephanos Antaris) (libtorrent >= v0.15 only)
|
- FEATURE: Option to skip file checking and start seeding immediately in torrent addition dialog (Stephanos Antaris) (libtorrent >= v0.15 only)
|
||||||
|
- BUGFIX: Made sure qBittorrent does not scrape the tracker too frequently (libtorrent >= 0.15 only)
|
||||||
- WEB UI: Remodeled Web UI to match new qBittorrent UI (Properties and preferences available)
|
- WEB UI: Remodeled Web UI to match new qBittorrent UI (Properties and preferences available)
|
||||||
- WEB UI: Added internationalization support
|
- WEB UI: Added internationalization support
|
||||||
- WEB UI: Reduced computation in Javascript (do this one server side instead)
|
- WEB UI: Reduced computation in Javascript (do this one server side instead)
|
||||||
|
@ -313,8 +313,10 @@ void Bittorrent::configureSession() {
|
|||||||
// Speed up exit
|
// Speed up exit
|
||||||
sessionSettings.stop_tracker_timeout = 1;
|
sessionSettings.stop_tracker_timeout = 1;
|
||||||
//sessionSettings.announce_to_all_trackers = true;
|
//sessionSettings.announce_to_all_trackers = true;
|
||||||
|
sessionSettings.auto_scrape_interval = 1200; // 20 minutes
|
||||||
#ifdef LIBTORRENT_0_15
|
#ifdef LIBTORRENT_0_15
|
||||||
sessionSettings.announce_to_all_tiers = true; //uTorrent behavior
|
sessionSettings.announce_to_all_tiers = true; //uTorrent behavior
|
||||||
|
sessionSettings.auto_scrape_min_interval = 900; // 15 minutes
|
||||||
#endif
|
#endif
|
||||||
// To keep same behavior as in qBittorrent v1.2.0
|
// To keep same behavior as in qBittorrent v1.2.0
|
||||||
sessionSettings.rate_limit_ip_overhead = false;
|
sessionSettings.rate_limit_ip_overhead = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user