diff --git a/TODO b/TODO index 46aed7d24..556a98338 100644 --- a/TODO +++ b/TODO @@ -60,4 +60,5 @@ rc9->rc10 changelog: - BUGFIX: Limit search engine plugins to 10 result pages - BUGFIX: Fixed nbResults != 0 when clearing results while a search is running - BUGFIX: Fixed possible problem when closing to systray and cancelling app exit +- BUGFIX: Fixed preview when path contains spaces - COSMETIC: Use more skin colors instead of hard coded ones diff --git a/src/GUI.cpp b/src/GUI.cpp index 656a39893..a9969a1ed 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -392,7 +392,7 @@ void GUI::on_actionExit_triggered() { } void GUI::previewFile(QString filePath) { - QDesktopServices::openUrl(filePath); + QDesktopServices::openUrl(QString("file://")+filePath); } unsigned int GUI::getCurrentTabIndex() const{ diff --git a/src/src.pro b/src/src.pro index 8906c9185..c0cb57779 100644 --- a/src/src.pro +++ b/src/src.pro @@ -11,7 +11,7 @@ TARGET = qbittorrent CONFIG += qt thread x11 network # Update this VERSION for each release -DEFINES += VERSION=\\\"v1.0.0rc9\\\" +DEFINES += VERSION=\\\"v1.0.0rc10\\\" DEFINES += VERSION_MAJOR=1 DEFINES += VERSION_MINOR=0 DEFINES += VERSION_BUGFIX=0