Some changes to menu, readme.

This commit is contained in:
Martin Rotter 2014-09-28 08:42:33 +02:00
parent 8464dff314
commit 4b6d71295c
3 changed files with 11 additions and 5 deletions

View File

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

View File

@ -165,7 +165,7 @@
<addaction name="m_actionSwitchImportanceOfSelectedMessages"/>
<addaction name="m_actionDeleteSelectedMessages"/>
</widget>
<widget class="QMenu" name="menu_Recycle_bin">
<widget class="QMenu" name="m_menuRecycleBin">
<property name="title">
<string>&amp;Recycle bin</string>
</property>
@ -177,7 +177,7 @@
<addaction name="m_menuView"/>
<addaction name="m_menuFeeds"/>
<addaction name="m_menuMessages"/>
<addaction name="menu_Recycle_bin"/>
<addaction name="m_menuRecycleBin"/>
<addaction name="m_menuWebBrowser"/>
<addaction name="m_menuTools"/>
<addaction name="m_menuHelp"/>

View File

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