mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 12:34:19 +00:00
RSS: Save items to disk regularly for safety
This commit is contained in:
parent
8219c29b0c
commit
c9c481fe69
@ -7,6 +7,7 @@
|
|||||||
- BUGFIX: Add tray menu entry for toggling window visibility
|
- BUGFIX: Add tray menu entry for toggling window visibility
|
||||||
- BUGFIX: Fix execution log lines selection and copying
|
- BUGFIX: Fix execution log lines selection and copying
|
||||||
- BUGFIX: Reduce CPU usage when running Web UI
|
- BUGFIX: Reduce CPU usage when running Web UI
|
||||||
|
- BUGFIX: Save RSS items to disk regularly for safety
|
||||||
- COSMETIC: Display speed at the beginning of the Window title
|
- COSMETIC: Display speed at the beginning of the Window title
|
||||||
- COSMETIC: Several cosmetic fixes to the Web UI
|
- COSMETIC: Several cosmetic fixes to the Web UI
|
||||||
- OTHER: Display libraries versions in about dialog (sledgehammer999)
|
- OTHER: Display libraries versions in about dialog (sledgehammer999)
|
||||||
|
@ -287,13 +287,16 @@ bool RssFeed::parseRSS(QIODevice* device) {
|
|||||||
// Make sure we limit the number of articles
|
// Make sure we limit the number of articles
|
||||||
resizeList();
|
resizeList();
|
||||||
|
|
||||||
|
// Save items to disk (for safety)
|
||||||
|
saveItemsToDisk();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RssFeed::downloadMatchingArticleTorrents() {
|
void RssFeed::downloadMatchingArticleTorrents() {
|
||||||
Q_ASSERT(RssSettings().isRssDownloadingEnabled());
|
Q_ASSERT(RssSettings().isRssDownloadingEnabled());
|
||||||
QHash<QString, RssArticle>::iterator it;
|
QHash<QString, RssArticle>::iterator it;
|
||||||
for(it = m_articles.begin(); it != m_articles.end(); it++) {
|
for (it = m_articles.begin(); it != m_articles.end(); it++) {
|
||||||
RssArticle &item = it.value();
|
RssArticle &item = it.value();
|
||||||
if(item.isRead()) continue;
|
if(item.isRead()) continue;
|
||||||
QString torrent_url;
|
QString torrent_url;
|
||||||
@ -304,11 +307,11 @@ void RssFeed::downloadMatchingArticleTorrents() {
|
|||||||
// Check if the item should be automatically downloaded
|
// Check if the item should be automatically downloaded
|
||||||
const RssDownloadRule matching_rule = RssDownloadRuleList::instance()->findMatchingRule(m_url, item.title());
|
const RssDownloadRule matching_rule = RssDownloadRuleList::instance()->findMatchingRule(m_url, item.title());
|
||||||
if(matching_rule.isValid()) {
|
if(matching_rule.isValid()) {
|
||||||
|
// Item was downloaded, consider it as Read
|
||||||
|
item.markAsRead();
|
||||||
// Download the torrent
|
// Download the torrent
|
||||||
QBtSession::instance()->addConsoleMessage(tr("Automatically downloading %1 torrent from %2 RSS feed...").arg(item.title()).arg(displayName()));
|
QBtSession::instance()->addConsoleMessage(tr("Automatically downloading %1 torrent from %2 RSS feed...").arg(item.title()).arg(displayName()));
|
||||||
QBtSession::instance()->downloadUrlAndSkipDialog(torrent_url, matching_rule.savePath(), matching_rule.label());
|
QBtSession::instance()->downloadUrlAndSkipDialog(torrent_url, matching_rule.savePath(), matching_rule.label());
|
||||||
// Item was downloaded, consider it as Read
|
|
||||||
item.markAsRead();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user