diff options
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/SkinSelector')
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/SkinSelector/meta/plugin_skinselector.xml | 15 | ||||
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py | 3 |
2 files changed, 5 insertions, 13 deletions
diff --git a/lib/python/Plugins/SystemPlugins/SkinSelector/meta/plugin_skinselector.xml b/lib/python/Plugins/SystemPlugins/SkinSelector/meta/plugin_skinselector.xml index 717f732b..73544a56 100755 --- a/lib/python/Plugins/SystemPlugins/SkinSelector/meta/plugin_skinselector.xml +++ b/lib/python/Plugins/SystemPlugins/SkinSelector/meta/plugin_skinselector.xml @@ -1,28 +1,19 @@ <default> <prerequisites> <tag type="Display" /> - <tag type="System" /> + <tag type="Skin" /> </prerequisites> <info language="en"> <author>Dream Multimedia</author> <name>SkinSelector</name> <packagename>enigma2-plugin-systemplugins-skinselector</packagename> - <shortdescription>SkinSelector shows a menu with selectable skins.</shortdescription> + <shortdescription>SkinSelector shows a menu with selectable skins</shortdescription> <description>The SkinSelector shows a menu with selectable skins.\n It's now easy to change the look and feel of your Dreambox. </description> <screenshot src="http://www.dreamboxupdate.com/preview/plugin_skinselector_en.jpg" /> </info> - <info language="de"> - <author>Dream Multimedia</author> - <name>SkinSelector</name> - <packagename>enigma2-plugin-systemplugins-skinselector</packagename> - <shortdescription>Der SkinSelector zeigt Ihnen ein Menu mit auswählbaren Skins.</shortdescription> - <description>Die SkinSelector Erweiterung zeigt Ihnen ein Menu mit auswählbaren Skins.\n - Sie können nun einfach das Aussehen der grafischen Oberfläche Ihrer Dreambox verändern. - </description> - <screenshot src="http://www.dreamboxupdate.com/preview/plugin_skinselector_de.jpg" /> - </info> + <files type="package"> <!-- without version, without .ipk --> <file type="package" name="enigma2-plugin-systemplugins-skinselector" /> </files> diff --git a/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py b/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py index 997b9571..30cbb6b6 100755 --- a/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py @@ -12,12 +12,13 @@ from Plugins.Plugin import PluginDescriptor from Components.config import config from Tools.Directories import resolveFilename, SCOPE_PLUGINS from os import path, walk +from enigma import eEnv class SkinSelector(Screen): # for i18n: # _("Choose your Skin") skinlist = [] - root = "/usr/share/enigma2/" + root = eEnv.resolve("${datadir}/enigma2/") def __init__(self, session, args = None): |
