mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-06 12:25:31 +01:00
Some changes to menu, readme.
This commit is contained in:
parent
8464dff314
commit
4b6d71295c
11
README.md
11
README.md
@ -56,23 +56,28 @@ RSS Guard is written in C++. It is pretty fast even with tons of messages loaded
|
|||||||
* multiplatformity,
|
* multiplatformity,
|
||||||
* support for all feed formats,
|
* support for all feed formats,
|
||||||
* simplicity,
|
* simplicity,
|
||||||
|
* import/export of feeds to/from OPML 2.0,
|
||||||
|
* message filter with regular expressions,
|
||||||
* feed metadata fetching including icons,
|
* feed metadata fetching including icons,
|
||||||
* enhanced feed auto-updating with separate time intervals,
|
* enhanced feed auto-updating with separate time intervals,
|
||||||
* multiple data backend support,
|
* multiple data backend support,
|
||||||
* SQLite (in-memory DBs too),
|
* SQLite (in-memory DBs too),
|
||||||
* MySQL.
|
* MySQL.
|
||||||
* “portable” mode support,
|
* “portable” mode support with clever auto-detection,
|
||||||
* feed categorization,
|
* feed categorization,
|
||||||
|
* fully-featured recycle bin,
|
||||||
* can be fully controlled via keyboard,
|
* can be fully controlled via keyboard,
|
||||||
* feed authentication (Digest-MD5, BASIC, NTLM-2),
|
* feed authentication (Digest-MD5, BASIC, NTLM-2),
|
||||||
* handles tons of messages & feeds,
|
* handles tons of messages & feeds,
|
||||||
* sweet look & feel,
|
* sweet look & feel,
|
||||||
* fully adjustable toolbars (changeable buttons and style),
|
* fully adjustable toolbars (changeable buttons and style),
|
||||||
* ability to check for updates on all platforms + self-updating on Windows and OS/2,
|
* ability to check for updates on all platforms + self-updating on Windows,
|
||||||
* hideable main menu,
|
* hideable main menu, toolbars and list headers,
|
||||||
* KFeanza-based default icon theme + ability to create your own icon themes,
|
* KFeanza-based default icon theme + ability to create your own icon themes,
|
||||||
* fully skinnable user interface + ability to create your own skins,
|
* fully skinnable user interface + ability to create your own skins,
|
||||||
* “newspaper” view,
|
* “newspaper” view,
|
||||||
|
* plenty of skins,
|
||||||
|
* support for "feed://" URI scheme,
|
||||||
* ability to hide list of feeds/categories,
|
* ability to hide list of feeds/categories,
|
||||||
* open-source development model based on GNU GPL license, version 3,
|
* open-source development model based on GNU GPL license, version 3,
|
||||||
* tabbed interface,
|
* tabbed interface,
|
||||||
|
@ -165,7 +165,7 @@
|
|||||||
<addaction name="m_actionSwitchImportanceOfSelectedMessages"/>
|
<addaction name="m_actionSwitchImportanceOfSelectedMessages"/>
|
||||||
<addaction name="m_actionDeleteSelectedMessages"/>
|
<addaction name="m_actionDeleteSelectedMessages"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menu_Recycle_bin">
|
<widget class="QMenu" name="m_menuRecycleBin">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>&Recycle bin</string>
|
<string>&Recycle bin</string>
|
||||||
</property>
|
</property>
|
||||||
@ -177,7 +177,7 @@
|
|||||||
<addaction name="m_menuView"/>
|
<addaction name="m_menuView"/>
|
||||||
<addaction name="m_menuFeeds"/>
|
<addaction name="m_menuFeeds"/>
|
||||||
<addaction name="m_menuMessages"/>
|
<addaction name="m_menuMessages"/>
|
||||||
<addaction name="menu_Recycle_bin"/>
|
<addaction name="m_menuRecycleBin"/>
|
||||||
<addaction name="m_menuWebBrowser"/>
|
<addaction name="m_menuWebBrowser"/>
|
||||||
<addaction name="m_menuTools"/>
|
<addaction name="m_menuTools"/>
|
||||||
<addaction name="m_menuHelp"/>
|
<addaction name="m_menuHelp"/>
|
||||||
|
@ -71,6 +71,7 @@ void TabWidget::openMainMenu() {
|
|||||||
m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuView);
|
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_menuFeeds);
|
||||||
m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuMessages);
|
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_menuWebBrowser);
|
||||||
m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuTools);
|
m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuTools);
|
||||||
m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuHelp);
|
m_menuMain->addMenu(qApp->mainForm()->m_ui->m_menuHelp);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user