diff --git a/TODO b/TODO index d344296df..c849c3b56 100644 --- a/TODO +++ b/TODO @@ -81,5 +81,6 @@ LANGUAGES UPDATED: beta7->rc1 changelog: - BUGFIX: Fixed overflow in ratio - BUGFIX: Added -DNDEBUG flag to fix compilation with libtorrent svn -- I18N: Updated some translations -- COSMETIC: Progress bar text now uses style's foreground color +- BUGFIX: Added a -DQT_NO_DEBUG_OUTPUT flag in debug mode to fix a bug in Qt4.3.x +- I18N: Updated most translations +- COSMETIC: foreground text now uses style's foreground color instead of hard-coded black. diff --git a/src/src.pro b/src/src.pro index 1f154b7c2..bc07cdf04 100644 --- a/src/src.pro +++ b/src/src.pro @@ -3,7 +3,7 @@ LANG_PATH = lang ICONS_PATH = Icons #Set the following variable to 1 to enable debug -DEBUG_MODE = 1 +DEBUG_MODE = 0 # Global TEMPLATE = app @@ -11,7 +11,7 @@ TARGET = qbittorrent CONFIG += qt thread x11 network # Update this VERSION for each release -DEFINES += VERSION=\\\"v1.0.0beta7\\\" +DEFINES += VERSION=\\\"v1.0.0rc1\\\" DEFINES += VERSION_MAJOR=1 DEFINES += VERSION_MINOR=0 DEFINES += VERSION_BUGFIX=0 @@ -24,6 +24,7 @@ contains(DEBUG_MODE, 1){ contains(DEBUG_MODE, 0){ CONFIG -= debug CONFIG += release + DEFINES += QT_NO_DEBUG_OUTPUT message(Release build!) }