From a12621e1c0c722d8c65bb88f0985da1b6acfa1dc Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 26 Jan 2009 15:14:14 +0000 Subject: [PATCH 1/5] - Updated release date --- Changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog b/Changelog index a63ffd47e..5aeb2df9f 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,4 @@ -* Unknown - Christophe Dumez - v1.3.1 +* 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 - BUGFIX: Fixed files progress display in torrent properties From 3b09203937b7c178ac1a4dd26e6c5e8b57a9ac1e Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 26 Jan 2009 16:14:52 +0000 Subject: [PATCH 2/5] - Defined TODO list for v1.4.0 --- TODO | 5 +++++ src/src.pro | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index 7a88fa5a1..f7d7cda8e 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,10 @@ See https://blueprints.launchpad.net/qbittorrent/ +// TODO in v1.4.0 +- Display peers information (disabled as a default) +- Automatically move torrent to another directory on completion (disabled as a default) +- Rework program preferences (make easier) + // translations done in v1.3.0 - Romanian - Russian diff --git a/src/src.pro b/src/src.pro index 7f49e6a8d..b524fb8ae 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.4.0alpha1\\\" DEFINES += VERSION_MAJOR=1 -DEFINES += VERSION_MINOR=3 -DEFINES += VERSION_BUGFIX=1 +DEFINES += VERSION_MINOR=4 +DEFINES += VERSION_BUGFIX=0 !mac:QMAKE_LFLAGS += -Wl,--as-needed contains(DEBUG_MODE, 1) { CONFIG += debug From 83cac1869049255968e4b838ba6954126869e8f0 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 26 Jan 2009 16:18:43 +0000 Subject: [PATCH 3/5] - Updated TODO --- TODO | 1 + 1 file changed, 1 insertion(+) diff --git a/TODO b/TODO index f7d7cda8e..2e41fb1fd 100644 --- a/TODO +++ b/TODO @@ -4,6 +4,7 @@ See https://blueprints.launchpad.net/qbittorrent/ - Display peers information (disabled as a default) - Automatically move torrent to another directory on completion (disabled as a default) - Rework program preferences (make easier) +- Provide better errors messages to make debugging easier // translations done in v1.3.0 - Romanian From 3ae783e9cb9611dc99bf17f44c7a472790d883d5 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 4 Feb 2009 18:10:52 +0000 Subject: [PATCH 4/5] - Fixing 'hide top toobar feature' --- src/GUI.cpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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) { From aa18f19ab743f92beb0af0f1b9943c27befedf0f Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 6 Mar 2009 21:55:43 +0000 Subject: [PATCH 5/5] - Fix for building with QT 4.5 --- src/httpserver.h | 1 + 1 file changed, 1 insertion(+) 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