diff --git a/resources/desktop/com.github.rssguard.appdata.xml b/resources/desktop/com.github.rssguard.appdata.xml index 083602b12..50d646243 100644 --- a/resources/desktop/com.github.rssguard.appdata.xml +++ b/resources/desktop/com.github.rssguard.appdata.xml @@ -26,7 +26,7 @@ https://github.com/sponsors/martinrotter - + none diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index af2a5c47b..987f1e9b6 100644 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -1,3 +1,25 @@ +4.2.2 +----- + +Added: +* Feedly now supports intelligent synchronization algorithm, resulting in much faster sync. +* Feedly now decodes feed titles from HTML to plain text. +* New CLI "-w" option to force "nowebengine" behavior even in standard "webengine" RSS Guard builds. +* Article viewers are greatly refactored and internally use sane C++ interface - this allows this piece of RSS Guard to be expanded better in the future. +* "nowebengine" text-based article viewer now can display images. (#583) +* "nowebengine" text-based article viewer now can act as VERY SIMPLE web browser. It displays webpages in a simpler text-like fashion, it can follow hyperlinks, context menu offers more actions like downloading of links etc. +* Gmail plugin now has better e-mail viewer which also allows to "Forward" e-mails. It will be extended in the future even more. Also, e-mails are now sent in "HTML" mode. +* Data can be optionally exported to OPML 2.0 without icons. (#685) +* Added button into tray icon context menu to allow show/hide of main RSS Guard window. (#679) +* Article **list** filtering button is now greatly enhanced. Go to "Settings -> User interface -> Toolbars -> Toolbar for article list" and add "Article list filter" button to the toolbar. + +Fixed: +* If article does not provide sane date/time, replace with current date. This particularly concerned Gmail plugin. +* Added some missing icons, some icons changed. +* Some UI strings updated, translations updated too. +* "Licenses" page in "About" dialog was redesigned. +* Other minor fixes. + 4.2.1 ----- diff --git a/src/librssguard/gui/dialogs/formabout.cpp b/src/librssguard/gui/dialogs/formabout.cpp index 1e4538771..86cb06928 100644 --- a/src/librssguard/gui/dialogs/formabout.cpp +++ b/src/librssguard/gui/dialogs/formabout.cpp @@ -96,6 +96,8 @@ void FormAbout::loadLicenseAndInformation() { #else m_ui.m_txtChangelog->setText(IOFactory::readFile(APP_INFO_PATH + QL1S("/CHANGELOG"))); #endif + + m_ui.m_txtChangelog->document()->setIndentWidth(16.0); } catch (...) { m_ui.m_txtChangelog->setText(tr("Changelog not found.")); diff --git a/src/librssguard/gui/dialogs/formabout.ui b/src/librssguard/gui/dialogs/formabout.ui index 7e0ef702a..ed0a4b74f 100644 --- a/src/librssguard/gui/dialogs/formabout.ui +++ b/src/librssguard/gui/dialogs/formabout.ui @@ -172,9 +172,6 @@ p, li { white-space: pre-wrap; } - - QFrame::NoFrame - false diff --git a/src/librssguard/gui/toolbars/messagestoolbar.cpp b/src/librssguard/gui/toolbars/messagestoolbar.cpp index b8ae4873c..c73f53249 100644 --- a/src/librssguard/gui/toolbars/messagestoolbar.cpp +++ b/src/librssguard/gui/toolbars/messagestoolbar.cpp @@ -218,12 +218,12 @@ void MessagesToolBar::initializeHighlighter() { "show_last_week"); addActionToMenu(m_menuMessageFilter, qApp->icons()->fromTheme(QSL("mail-attachment")), - tr("Show only articles with attachments"), + tr("Show articles with attachments"), QVariant::fromValue(MessagesProxyModel::MessageListFilter::ShowOnlyWithAttachments), "show_with_attachments"); addActionToMenu(m_menuMessageFilter, MessagesModel::generateIconForScore(MSG_SCORE_MAX / 2.0), - tr("Show only articles with some score"), + tr("Show articles with some score"), QVariant::fromValue(MessagesProxyModel::MessageListFilter::ShowOnlyWithScore), "show_with_score");