changelog, some tweaks
This commit is contained in:
parent
fec397c855
commit
e6e5167294
@ -26,7 +26,7 @@
|
|||||||
<url type="donation">https://github.com/sponsors/martinrotter</url>
|
<url type="donation">https://github.com/sponsors/martinrotter</url>
|
||||||
<content_rating type="oars-1.1" />
|
<content_rating type="oars-1.1" />
|
||||||
<releases>
|
<releases>
|
||||||
<release version="4.2.1" date="2022-04-29"/>
|
<release version="4.2.2" date="2022-04-29"/>
|
||||||
</releases>
|
</releases>
|
||||||
<content_rating type="oars-1.0">
|
<content_rating type="oars-1.0">
|
||||||
<content_attribute id="violence-cartoon">none</content_attribute>
|
<content_attribute id="violence-cartoon">none</content_attribute>
|
||||||
|
@ -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
|
4.2.1
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
@ -96,6 +96,8 @@ void FormAbout::loadLicenseAndInformation() {
|
|||||||
#else
|
#else
|
||||||
m_ui.m_txtChangelog->setText(IOFactory::readFile(APP_INFO_PATH + QL1S("/CHANGELOG")));
|
m_ui.m_txtChangelog->setText(IOFactory::readFile(APP_INFO_PATH + QL1S("/CHANGELOG")));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
m_ui.m_txtChangelog->document()->setIndentWidth(16.0);
|
||||||
}
|
}
|
||||||
catch (...) {
|
catch (...) {
|
||||||
m_ui.m_txtChangelog->setText(tr("Changelog not found."));
|
m_ui.m_txtChangelog->setText(tr("Changelog not found."));
|
||||||
|
@ -172,9 +172,6 @@ p, li { white-space: pre-wrap; }
|
|||||||
<property name="font">
|
<property name="font">
|
||||||
<font/>
|
<font/>
|
||||||
</property>
|
</property>
|
||||||
<property name="frameShape">
|
|
||||||
<enum>QFrame::NoFrame</enum>
|
|
||||||
</property>
|
|
||||||
<property name="undoRedoEnabled">
|
<property name="undoRedoEnabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
|
@ -218,12 +218,12 @@ void MessagesToolBar::initializeHighlighter() {
|
|||||||
"show_last_week");
|
"show_last_week");
|
||||||
addActionToMenu(m_menuMessageFilter,
|
addActionToMenu(m_menuMessageFilter,
|
||||||
qApp->icons()->fromTheme(QSL("mail-attachment")),
|
qApp->icons()->fromTheme(QSL("mail-attachment")),
|
||||||
tr("Show only articles with attachments"),
|
tr("Show articles with attachments"),
|
||||||
QVariant::fromValue(MessagesProxyModel::MessageListFilter::ShowOnlyWithAttachments),
|
QVariant::fromValue(MessagesProxyModel::MessageListFilter::ShowOnlyWithAttachments),
|
||||||
"show_with_attachments");
|
"show_with_attachments");
|
||||||
addActionToMenu(m_menuMessageFilter,
|
addActionToMenu(m_menuMessageFilter,
|
||||||
MessagesModel::generateIconForScore(MSG_SCORE_MAX / 2.0),
|
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),
|
QVariant::fromValue(MessagesProxyModel::MessageListFilter::ShowOnlyWithScore),
|
||||||
"show_with_score");
|
"show_with_score");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user