mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
Compare commits
1 Commits
release-2.
...
release-2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42574242ef |
@@ -1,4 +1,5 @@
|
|||||||
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.0.2
|
* Fri Dec 18 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.2
|
||||||
|
- BUGFIX: Fix .qbittorrent folder not being created (critical bug introduced in v2.0.1 that makes qBittorrent unusuable for new users)
|
||||||
- BUGFIX: Fix RSS Feed downloader for some feeds
|
- BUGFIX: Fix RSS Feed downloader for some feeds
|
||||||
- BUGFIX: Do not use home folder as a fallback when the save path is not accessible
|
- BUGFIX: Do not use home folder as a fallback when the save path is not accessible
|
||||||
- BUGFIX: Fix Mininova, ThePirateBay search engine plugins
|
- BUGFIX: Fix Mininova, ThePirateBay search engine plugins
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 79 KiB |
@@ -215,6 +215,11 @@ 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