changelog, some tweaks

This commit is contained in:
Martin Rotter 2022-04-29 08:22:58 +02:00
parent fec397c855
commit e6e5167294
5 changed files with 27 additions and 6 deletions

View File

@ -26,7 +26,7 @@
<url type="donation">https://github.com/sponsors/martinrotter</url>
<content_rating type="oars-1.1" />
<releases>
<release version="4.2.1" date="2022-04-29"/>
<release version="4.2.2" date="2022-04-29"/>
</releases>
<content_rating type="oars-1.0">
<content_attribute id="violence-cartoon">none</content_attribute>

View File

@ -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
-----

View File

@ -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."));

View File

@ -172,9 +172,6 @@ p, li { white-space: pre-wrap; }
<property name="font">
<font/>
</property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="undoRedoEnabled">
<bool>false</bool>
</property>

View File

@ -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");