diff --git a/Changelog b/Changelog index 5aeb2df9f..bfb7e8098 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +* Unknown - Christophe Dumez - v1.3.2 + - BUGFIX: Fix top toolbar disabling + - BUGFIX: Fix building with Qt 4.5 + * Mon Jan 26 2009 - Christophe Dumez - v1.3.1 - BUGFIX: Torrents paused due to an I/O error were displayed as queued - BUGFIX: qBittorrent now prints backtrace in terminal when segfaulting diff --git a/src/GUI.cpp b/src/GUI.cpp index be7ce1713..507f6172e 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -931,13 +931,11 @@ void GUI::configureSession(bool deleteOptions) { setWindowTitle(tr("qBittorrent %1", "e.g: qBittorrent v0.x").arg(QString::fromUtf8(VERSION))); } displaySpeedInTitle = new_displaySpeedInTitle; - if(options->isToolbarDisplayed() != toolBar->isVisible()) { - if(options->isToolbarDisplayed()) { - toolBar->setVisible(true); - toolBar->layout()->setSpacing(7); - } else { - toolBar->setVisible(false); - } + if(options->isToolbarDisplayed()) { + toolBar->setVisible(true); + toolBar->layout()->setSpacing(7); + } else { + toolBar->setVisible(false); } unsigned int new_refreshInterval = options->getRefreshInterval(); if(refreshInterval != new_refreshInterval) { diff --git a/src/Icons/qBittorrent.desktop b/src/Icons/qBittorrent.desktop index c5bbf35cc..803e362b4 100644 --- a/src/Icons/qBittorrent.desktop +++ b/src/Icons/qBittorrent.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Categories=Qt;Network;P2P -Comment=V1.3.1 +Comment=V1.3.2 Exec=qbittorrent %f GenericName=Bittorrent client GenericName[bg]=Торент клиент diff --git a/src/httpserver.h b/src/httpserver.h index 1df5f1309..a11ac1ecc 100644 --- a/src/httpserver.h +++ b/src/httpserver.h @@ -22,6 +22,7 @@ #ifndef HTTPSERVER_H #define HTTPSERVER_H +#include #include #include diff --git a/src/src.pro b/src/src.pro index 7f49e6a8d..ff9441829 100644 --- a/src/src.pro +++ b/src/src.pro @@ -14,10 +14,10 @@ CONFIG += qt \ network # Update this VERSION for each release -DEFINES += VERSION=\\\"v1.3.1\\\" +DEFINES += VERSION=\\\"v1.3.2\\\" DEFINES += VERSION_MAJOR=1 DEFINES += VERSION_MINOR=3 -DEFINES += VERSION_BUGFIX=1 +DEFINES += VERSION_BUGFIX=2 !mac:QMAKE_LFLAGS += -Wl,--as-needed contains(DEBUG_MODE, 1) { CONFIG += debug