Added plugin icons. Thx to JackDaniel
authorNabil Hanna <ali@users.schwerkraft.elitedvb.net>
Tue, 29 Sep 2009 15:18:28 +0000 (15:18 +0000)
committerNabil Hanna <ali@users.schwerkraft.elitedvb.net>
Tue, 29 Sep 2009 15:18:28 +0000 (15:18 +0000)
orfat/src/Makefile.am
orfat/src/orf.png [new file with mode: 0644]
orfat/src/orf_ondemand.png [new file with mode: 0644]
orfat/src/plugin.py

index 8d486f8..9a3661d 100644 (file)
@@ -1,3 +1,3 @@
 installdir = /usr/lib/enigma2/python/Plugins/Extensions/ORFat
 install_PYTHON = *.py
-install_DATA = maintainer.info LICENSE.txt
+install_DATA = maintainer.info LICENSE.txt *.png
diff --git a/orfat/src/orf.png b/orfat/src/orf.png
new file mode 100644 (file)
index 0000000..99b01cd
Binary files /dev/null and b/orfat/src/orf.png differ
diff --git a/orfat/src/orf_ondemand.png b/orfat/src/orf_ondemand.png
new file mode 100644 (file)
index 0000000..26aff70
Binary files /dev/null and b/orfat/src/orf_ondemand.png differ
index 52382c0..8fbfcb2 100644 (file)
@@ -16,5 +16,5 @@ def mainORFonDemand(session, **kwargs):
 
 def Plugins(**kwargs):
        return [
-               PluginDescriptor(name="ORF.at IPTV", description="IPTV-Sendungen von ORF.at anschauen", where=[PluginDescriptor.WHERE_EXTENSIONSMENU, PluginDescriptor.WHERE_PLUGINMENU], fnc=mainORFIPTV),
-               PluginDescriptor(name="ORF.at onDemand", description="onDemand-Sendungen von ORF.at anschauen", where=[PluginDescriptor.WHERE_EXTENSIONSMENU, PluginDescriptor.WHERE_PLUGINMENU], fnc=mainORFonDemand)]
+               PluginDescriptor(name="ORF.at IPTV", description="IPTV-Sendungen von ORF.at anschauen", where=[PluginDescriptor.WHERE_EXTENSIONSMENU, PluginDescriptor.WHERE_PLUGINMENU], icon="orf.png", fnc=mainORFIPTV),
+               PluginDescriptor(name="ORF.at onDemand", description="onDemand-Sendungen von ORF.at anschauen", where=[PluginDescriptor.WHERE_EXTENSIONSMENU, PluginDescriptor.WHERE_PLUGINMENU], icon="orf_ondemand.png", fnc=mainORFonDemand)]