This commit is contained in:
Martin Rotter 2017-12-06 20:29:35 +01:00
parent 72f5e07a3a
commit 5d5564b4d1
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
3.5.6
—————
Fixed:
▪ Missing obligatory attribute in OPML 2.0 files. (bug #166)
3.5.5
—————

View File

@ -57,7 +57,7 @@ APP_REVERSE_NAME = "com.github.rssguard"
APP_LOW_H_NAME = ".rssguard"
APP_AUTHOR = "Martin Rotter"
APP_COPYRIGHT = "(C) 2011-2017 $$APP_AUTHOR"
APP_VERSION = "3.5.5"
APP_VERSION = "3.5.6"
APP_LONG_NAME = "$$APP_NAME $$APP_VERSION"
APP_EMAIL = "rotter.martinos@gmail.com"
APP_URL = "https://github.com/martinrotter/rssguard"

View File

@ -85,6 +85,7 @@ bool FeedsImportExportModel::exportToOMPL20(QByteArray& result) {
StandardFeed* child_feed = static_cast<StandardFeed*>(child_item);
QDomElement outline_feed = opml_document.createElement("outline");
outline_feed.setAttribute(QSL("type"), QSL("rss"));
outline_feed.setAttribute(QSL("text"), child_feed->title());
outline_feed.setAttribute(QSL("xmlUrl"), child_feed->url());
outline_feed.setAttribute(QSL("description"), child_feed->description());