mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Compare commits
1 Commits
release-1.
...
release-1.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5b790d240 |
1
TODO
1
TODO
@@ -60,4 +60,5 @@ rc9->rc10 changelog:
|
|||||||
- BUGFIX: Limit search engine plugins to 10 result pages
|
- BUGFIX: Limit search engine plugins to 10 result pages
|
||||||
- BUGFIX: Fixed nbResults != 0 when clearing results while a search is running
|
- 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 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
|
- COSMETIC: Use more skin colors instead of hard coded ones
|
||||||
|
|||||||
@@ -392,7 +392,7 @@ void GUI::on_actionExit_triggered() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GUI::previewFile(QString filePath) {
|
void GUI::previewFile(QString filePath) {
|
||||||
QDesktopServices::openUrl(filePath);
|
QDesktopServices::openUrl(QString("file://")+filePath);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int GUI::getCurrentTabIndex() const{
|
unsigned int GUI::getCurrentTabIndex() const{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ TARGET = qbittorrent
|
|||||||
CONFIG += qt thread x11 network
|
CONFIG += qt thread x11 network
|
||||||
|
|
||||||
# Update this VERSION for each release
|
# Update this VERSION for each release
|
||||||
DEFINES += VERSION=\\\"v1.0.0rc9\\\"
|
DEFINES += VERSION=\\\"v1.0.0rc10\\\"
|
||||||
DEFINES += VERSION_MAJOR=1
|
DEFINES += VERSION_MAJOR=1
|
||||||
DEFINES += VERSION_MINOR=0
|
DEFINES += VERSION_MINOR=0
|
||||||
DEFINES += VERSION_BUGFIX=0
|
DEFINES += VERSION_BUGFIX=0
|
||||||
|
|||||||
Reference in New Issue
Block a user