mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
BUGFIX: Added support for single-thread boost
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.2.6
|
||||||
|
- BUGFIX: Announce to all trackers at once
|
||||||
|
- BUGFIX: Added support for single-thread boost
|
||||||
|
|
||||||
* Wed Apr 07 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.5
|
* Wed Apr 07 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.5
|
||||||
- BUGFIX: Fix crash when adding a new torrent label
|
- BUGFIX: Fix crash when adding a new torrent label
|
||||||
- BUGFIX: Fix HTTPS protocol support in torrent/rss downloader
|
- BUGFIX: Fix HTTPS protocol support in torrent/rss downloader
|
||||||
|
|||||||
10
configure
vendored
10
configure
vendored
@@ -407,6 +407,16 @@ public:
|
|||||||
name = result.first().mid(3);
|
name = result.first().mid(3);
|
||||||
// Remove .so
|
// Remove .so
|
||||||
name.chop(3);
|
name.chop(3);
|
||||||
|
} else {
|
||||||
|
// Fall back to non -mt boost lib
|
||||||
|
filters.clear();
|
||||||
|
filters << "libboost_"+lib+"*.so";
|
||||||
|
result = libDir.entryList(filters, QDir::Files);
|
||||||
|
if(!result.empty()) {
|
||||||
|
name = result.first().mid(3);
|
||||||
|
// Remove .so
|
||||||
|
name.chop(3);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,16 @@ public:
|
|||||||
name = result.first().mid(3);
|
name = result.first().mid(3);
|
||||||
// Remove .so
|
// Remove .so
|
||||||
name.chop(3);
|
name.chop(3);
|
||||||
|
} else {
|
||||||
|
// Fall back to non -mt boost lib
|
||||||
|
filters.clear();
|
||||||
|
filters << "libboost_"+lib+"*.so";
|
||||||
|
result = libDir.entryList(filters, QDir::Files);
|
||||||
|
if(!result.empty()) {
|
||||||
|
name = result.first().mid(3);
|
||||||
|
// Remove .so
|
||||||
|
name.chop(3);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -421,6 +421,7 @@ void Bittorrent::configureSession() {
|
|||||||
//sessionSettings.announce_to_all_trackers = true;
|
//sessionSettings.announce_to_all_trackers = true;
|
||||||
sessionSettings.auto_scrape_interval = 1200; // 20 minutes
|
sessionSettings.auto_scrape_interval = 1200; // 20 minutes
|
||||||
#ifdef LIBTORRENT_0_15
|
#ifdef LIBTORRENT_0_15
|
||||||
|
sessionSettings.announce_to_all_trackers = true;
|
||||||
sessionSettings.announce_to_all_tiers = true; //uTorrent behavior
|
sessionSettings.announce_to_all_tiers = true; //uTorrent behavior
|
||||||
sessionSettings.auto_scrape_min_interval = 900; // 15 minutes
|
sessionSettings.auto_scrape_min_interval = 900; // 15 minutes
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user