diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-02 14:00:02 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-02 14:00:02 -0400 |
commit | b8ae4def83a0dcf747f3fd9a7e3a498e92b26659 (patch) | |
tree | a551b25495bb153083d0a3da0fda21482db5a5e7 /src-qt5/core-utils | |
parent | A couple minor tweaks to the new RSS stuff. Fix the URL for the PC-BSD blog a... (diff) | |
download | lumina-b8ae4def83a0dcf747f3fd9a7e3a498e92b26659.tar.gz lumina-b8ae4def83a0dcf747f3fd9a7e3a498e92b26659.tar.bz2 lumina-b8ae4def83a0dcf747f3fd9a7e3a498e92b26659.zip |
Add the new RSS reader to the known plugins in lumina-config.
Diffstat (limited to 'src-qt5/core-utils')
-rw-r--r-- | src-qt5/core-utils/lumina-config/LPlugins.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-config/LPlugins.cpp b/src-qt5/core-utils/lumina-config/LPlugins.cpp index 629171e1..2a08a4ad 100644 --- a/src-qt5/core-utils/lumina-config/LPlugins.cpp +++ b/src-qt5/core-utils/lumina-config/LPlugins.cpp @@ -211,6 +211,13 @@ void LPlugins::LoadDesktopPlugins(){ info.ID = "systemmonitor"; info.icon = "cpu"; DESKTOP.insert(info.ID, info); + //RSS Reader Plugin + info = LPI(); //clear it + info.name = QObject::tr("RSS Reader"); + info.description = QObject::tr("Monitor RSS Feeds (Requires internet connection)"); + info.ID = "rssfeeder"; + info.icon = "application-rss+xml"; + DESKTOP.insert(info.ID, info); //Available QtQuick scripts /*QStringList quickID = LUtils::listQuickPlugins(); for(int i=0; i<quickID.length(); i++){ @@ -358,4 +365,4 @@ void LPlugins::LoadColorItems(){ info.description = QObject::tr("Color used for highlighting an item (more subdued)."); info.ID = "HIGHLIGHTDISABLECOLOR"; COLORS.insert(info.ID, info); -}
\ No newline at end of file +} |