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:
parent
2d0713ca1d
commit
3c8326d3b6
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user