mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-03 07:29:59 +08:00
BUGFIX: Fixed a proxy problem causing connections to be rejected by trackers
This commit is contained in:
parent
b0140fbdbe
commit
ce3b8733d1
1
TODO
1
TODO
@ -58,4 +58,5 @@
|
||||
- Make use of total_wanted
|
||||
|
||||
rc2->rc3 changelog:
|
||||
- BUGFIX: Fixed a proxy problem causing connections to be rejected by trackers
|
||||
- BUGFIX: Fixed compilation problem on FreeBSD
|
@ -923,7 +923,7 @@ bool options_imp::addTorrentsInPause() const {
|
||||
|
||||
// Proxy settings
|
||||
bool options_imp::isProxyEnabled() const{
|
||||
return (!comboProxyType->currentIndex());
|
||||
return comboProxyType->currentIndex();
|
||||
}
|
||||
|
||||
bool options_imp::isProxyAuthEnabled() const{
|
||||
|
@ -11,7 +11,7 @@ TARGET = qbittorrent
|
||||
CONFIG += qt thread x11 network
|
||||
|
||||
# Update this VERSION for each release
|
||||
DEFINES += VERSION=\\\"v1.0.0rc2\\\"
|
||||
DEFINES += VERSION=\\\"v1.0.0rc3\\\"
|
||||
DEFINES += VERSION_MAJOR=1
|
||||
DEFINES += VERSION_MINOR=0
|
||||
DEFINES += VERSION_BUGFIX=0
|
||||
|
Loading…
Reference in New Issue
Block a user