mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-08 08:32:31 -06:00
- BUGFIX: ~/qBT_dir is created only when it is actually used
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
- BUGFIX: µTorrent user-agent is now spoofed correctly
|
- BUGFIX: µTorrent user-agent is now spoofed correctly
|
||||||
- BUGFIX: Fix column hiding behavior when queueing system is disabled
|
- BUGFIX: Fix column hiding behavior when queueing system is disabled
|
||||||
- BUGFIX: Fix link to plugins.qbittorrent.org in plugins dialog
|
- BUGFIX: Fix link to plugins.qbittorrent.org in plugins dialog
|
||||||
|
- BUGFIX: ~/qBT_dir is created only when it is actually used
|
||||||
|
|
||||||
* Thu Dec 10 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.0
|
* Thu Dec 10 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.0
|
||||||
- FEATURE: Added program option to disable splash screen
|
- FEATURE: Added program option to disable splash screen
|
||||||
|
|||||||
@@ -215,11 +215,6 @@ public:
|
|||||||
// return qBittorrent config path
|
// return qBittorrent config path
|
||||||
static QString qBittorrentPath() {
|
static QString qBittorrentPath() {
|
||||||
QString qBtPath = QDir::homePath()+QDir::separator()+QString::fromUtf8(".qbittorrent") + QDir::separator();
|
QString qBtPath = QDir::homePath()+QDir::separator()+QString::fromUtf8(".qbittorrent") + QDir::separator();
|
||||||
// Create dir if it does not exist
|
|
||||||
if(!QFile::exists(qBtPath)){
|
|
||||||
QDir dir(qBtPath);
|
|
||||||
dir.mkpath(qBtPath);
|
|
||||||
}
|
|
||||||
return qBtPath;
|
return qBtPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user