Fix background image.
authorstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Sat, 8 Feb 2014 10:47:11 +0000 (10:47 +0000)
committerstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Sat, 8 Feb 2014 10:47:11 +0000 (10:47 +0000)
git-svn-id: svn://svn.code.sf.net/p/xbmc-groove/code@91 2dec19e3-eb1d-4749-8193-008c8bba0994

addon.xml
changelog.txt
default.py

index 449aa00..0f308fa 100644 (file)
--- a/addon.xml
+++ b/addon.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.audio.groove" name="Grooveshark XBMC"
-       version="2.0.6" provider-name="Stephen Denham">
+       version="2.0.7" provider-name="Stephen Denham">
        <requires>
                <import addon="xbmc.python" version="2.1.0" />
                <import addon="script.module.simplejson"/>
index 06998f6..4f05c06 100644 (file)
@@ -1,3 +1,7 @@
+2.0.7
+
+Fix background image.
+
 2.0.6
 
 Replace md5 with hashlib.
index 4e83777..20018a5 100644 (file)
@@ -547,6 +547,7 @@ class Grooveshark:
             item.setProperty('duration', str(duration))
             item.setProperty('key', str(key))
             item.setProperty('server', str(server))
+            item.setProperty('fanart_image', self.fanImg)
             return item
         else:
             xbmc.log("No song URL")
@@ -874,6 +875,7 @@ class Grooveshark:
             u = url
         directory=xbmcgui.ListItem(name, iconImage=iconimage, thumbnailImage=iconimage)
         directory.setInfo( type="Music", infoLabels={ "title": name } )
+        directory.setProperty('fanart_image', self.fanImg)
         
         # Custom menu items
         menuItems = []