From 4b6d71295c945a91f811167f60325fb581525ebd Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Sun, 28 Sep 2014 08:42:33 +0200 Subject: [PATCH] Some changes to menu, readme. --- README.md | 11 ++++++++--- src/gui/formmain.ui | 4 ++-- src/gui/tabwidget.cpp | 1 + 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c1181cb62..082388869 100644 --- a/README.md +++ b/README.md @@ -56,23 +56,28 @@ RSS Guard is written in C++. It is pretty fast even with tons of messages loaded * multiplatformity, * support for all feed formats, * simplicity, +* import/export of feeds to/from OPML 2.0, +* message filter with regular expressions, * feed metadata fetching including icons, * enhanced feed auto-updating with separate time intervals, * multiple data backend support, * SQLite (in-memory DBs too), * MySQL. -* “portable” mode support, +* “portable” mode support with clever auto-detection, * feed categorization, +* fully-featured recycle bin, * can be fully controlled via keyboard, * feed authentication (Digest-MD5, BASIC, NTLM-2), * handles tons of messages & feeds, * sweet look & feel, * fully adjustable toolbars (changeable buttons and style), -* ability to check for updates on all platforms + self-updating on Windows and OS/2, -* hideable main menu, +* ability to check for updates on all platforms + self-updating on Windows, +* hideable main menu, toolbars and list headers, * KFeanza-based default icon theme + ability to create your own icon themes, * fully skinnable user interface + ability to create your own skins, * “newspaper” view, +* plenty of skins, +* support for "feed://" URI scheme, * ability to hide list of feeds/categories, * open-source development model based on GNU GPL license, version 3, * tabbed interface, diff --git a/src/gui/formmain.ui b/src/gui/formmain.ui index 959065135..1b8398171 100755 --- a/src/gui/formmain.ui +++ b/src/gui/formmain.ui @@ -165,7 +165,7 @@ - + &Recycle bin @@ -177,7 +177,7 @@ - + diff --git a/src/gui/tabwidget.cpp b/src/gui/tabwidget.cpp index abbcabb72..b0399f1a4 100755 --- a/src/gui/tabwidget.cpp +++ b/src/gui/tabwidget.cpp @@ -71,6 +71,7 @@ void TabWidget::openMainMenu() { m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuView); m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuFeeds); m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuMessages); + m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuRecycleBin); m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuWebBrowser); m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuTools); m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuHelp);