1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-13 16:28:06 +00:00

Fix default temp path on Windows

Bump to rc11
This commit is contained in:
Christophe Dumez 2010-07-26 09:11:32 +00:00
parent 2d0713ca1d
commit 3c8326d3b6
2 changed files with 3 additions and 3 deletions

View File

@ -191,7 +191,7 @@ public:
static QString getTempPath() {
QIniSettings settings("qBittorrent", "qBittorrent");
QString temp = QDir::home().absoluteFilePath("qBT_dir")+QDir::separator()+"temp";
QString temp = QDir(getSavePath()).absoluteFilePath("temp");
return settings.value(QString::fromUtf8("Preferences/Downloads/TempPath"), temp).toString();
}

View File

@ -12,9 +12,9 @@ CONFIG += qt \
# Update this VERSION for each release
os2 {
DEFINES += VERSION=\'\"v2.3.0rc10\"\'
DEFINES += VERSION=\'\"v2.3.0rc11\"\'
} else {
DEFINES += VERSION=\\\"v2.3.0rc10\\\"
DEFINES += VERSION=\\\"v2.3.0rc11\\\"
}
DEFINES += VERSION_MAJOR=2
DEFINES += VERSION_MINOR=3