diff --git a/Changelog b/Changelog index 6b7fd9202..e666f8294 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ * Unreleased - Christophe Dumez - v2.2.4 - BUGFIX: Fix possible crash when adding a torrent + - BUGFIX: Fix failure to remember some torrents on startup - BUGFIX: Fix torrent addition window layout (torrent content not expanding) - BUGFIX: Fix about dialog in Web UI - BUGFIX: Correctly clear trackers error messages once they work diff --git a/src/Icons/qBittorrent.desktop b/src/Icons/qBittorrent.desktop index d4a342107..a3b256b83 100644 --- a/src/Icons/qBittorrent.desktop +++ b/src/Icons/qBittorrent.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Categories=Qt;Network;P2P; -Comment=V2.2.3 +Comment=V2.2.4 Exec=qbittorrent %f GenericName=Bittorrent client GenericName[bg]=Торент клиент diff --git a/src/Icons/skin/splash.png b/src/Icons/skin/splash.png index b7a785773..804ef05b6 100644 Binary files a/src/Icons/skin/splash.png and b/src/Icons/skin/splash.png differ diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 2a7a3493a..27170b199 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -2317,7 +2317,7 @@ void Bittorrent::addConsoleMessage(QString msg, QString) { } // Resume downloads while(!torrent_queue.empty()) { - const QString &hash = torrent_queue.top().second; + const QString hash = torrent_queue.top().second; torrent_queue.pop(); qDebug("Starting up torrent %s", qPrintable(hash)); if(TorrentPersistentData::isMagnet(hash)) { diff --git a/src/src.pro b/src/src.pro index 7a57bd3a5..ef7b1744f 100644 --- a/src/src.pro +++ b/src/src.pro @@ -11,10 +11,10 @@ CONFIG += qt \ thread # Update this VERSION for each release -DEFINES += VERSION=\'\"v2.2.3\"\' +DEFINES += VERSION=\'\"v2.2.4\"\' DEFINES += VERSION_MAJOR=2 DEFINES += VERSION_MINOR=2 -DEFINES += VERSION_BUGFIX=3 +DEFINES += VERSION_BUGFIX=4 # NORMAL,ALPHA,BETA,RELEASE_CANDIDATE,DEVEL DEFINES += VERSION_TYPE=NORMAL