Browse Source

BUGFIX: Fixed a proxy problem causing connections to be rejected by trackers

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
ce3b8733d1
  1. 1
      TODO
  2. 2
      src/options_imp.cpp
  3. 2
      src/src.pro

1
TODO

@ -58,4 +58,5 @@ @@ -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

2
src/options_imp.cpp

@ -923,7 +923,7 @@ bool options_imp::addTorrentsInPause() const { @@ -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{

2
src/src.pro

@ -11,7 +11,7 @@ TARGET = qbittorrent @@ -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…
Cancel
Save