From a03bc739113fb3cbdf43e20a264f0aaaa76a18ae Mon Sep 17 00:00:00 2001 From: stephendenham Date: Sat, 8 Feb 2014 10:47:11 +0000 Subject: [PATCH] Fix background image. git-svn-id: svn://svn.code.sf.net/p/xbmc-groove/code@91 2dec19e3-eb1d-4749-8193-008c8bba0994 --- addon.xml | 2 +- changelog.txt | 4 ++++ default.py | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/addon.xml b/addon.xml index 449aa00..0f308fa 100644 --- a/addon.xml +++ b/addon.xml @@ -1,6 +1,6 @@  + version="2.0.7" provider-name="Stephen Denham"> diff --git a/changelog.txt b/changelog.txt index 06998f6..4f05c06 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +2.0.7 + +Fix background image. + 2.0.6 Replace md5 with hashlib. diff --git a/default.py b/default.py index 4e83777..20018a5 100644 --- a/default.py +++ b/default.py @@ -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 = [] -- 2.20.1