The branch, eden-pre has been updated
       via  eb932555089eb468f234aeb192afbaae66f80948 (commit)
      from  6e7a978341132c41a613f9324bf254a92c8ec62e (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=eb932555089eb468f234aeb192afbaae66f80948

commit eb932555089eb468f234aeb192afbaae66f80948
Author: spiff <[email protected]>
Date:   Tue Jan 10 11:11:04 2012 +0100

    [plugin.audio.groove] updated to version 1.0.3

diff --git a/plugin.audio.groove/addon.xml b/plugin.audio.groove/addon.xml
index 5e57411..dca6d04 100644
--- a/plugin.audio.groove/addon.xml
+++ b/plugin.audio.groove/addon.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.audio.groove" name="Grooveshark XBMC"
-       version="1.0.2" provider-name="Stephen Denham">
+       version="1.0.3" provider-name="Stephen Denham">
        <requires>
                <import addon="xbmc.python" version="2.0" />
                <import addon="script.module.simplejson"/>
diff --git a/plugin.audio.groove/changelog.txt 
b/plugin.audio.groove/changelog.txt
index 2fc73e7..deea963 100644
--- a/plugin.audio.groove/changelog.txt
+++ b/plugin.audio.groove/changelog.txt
@@ -1,3 +1,7 @@
+1.0.3
+
+Fix bug in album song name.
+
 1.0.2
 
 New icon for dark backgrounds. Socket timeout for Linux.
diff --git a/plugin.audio.groove/description.xml 
b/plugin.audio.groove/description.xml
index 342a8a7..7c25d17 100644
--- a/plugin.audio.groove/description.xml
+++ b/plugin.audio.groove/description.xml
@@ -18,7 +18,7 @@
        <title>Grooveshark XBMC</title>
 
        <!-- (required) Major.minor.build -->
-       <version>1.0.2</version>
+       <version>1.0.3</version>
 
        <!--
                (required) author name & email. at least one author name is 
required
diff --git a/plugin.audio.groove/resources/lib/GroovesharkAPI.py 
b/plugin.audio.groove/resources/lib/GroovesharkAPI.py
index d524ad2..9c05ea2 100644
--- a/plugin.audio.groove/resources/lib/GroovesharkAPI.py
+++ b/plugin.audio.groove/resources/lib/GroovesharkAPI.py
@@ -484,7 +484,11 @@ class GrooveAPI:
                                        coverart = 
THUMB_URL+s['CoverArtFilename'].encode('ascii', 'ignore')
                                else:
                                        coverart = 'None'
-                               list.append([s['SongName'].encode('ascii', 
'ignore'),\
+                               if 'Name' in s:
+                                       name = s['Name']
+                               else:
+                                       name = s['SongName']
+                               list.append([name.encode('ascii', 'ignore'),\
                                s['SongID'],\
                                s['AlbumName'].encode('ascii', 'ignore'),\
                                s['AlbumID'],\

-----------------------------------------------------------------------

Summary of changes:
 plugin.audio.groove/addon.xml                      |    2 +-
 plugin.audio.groove/changelog.txt                  |    4 ++++
 plugin.audio.groove/description.xml                |    2 +-
 .../resources/lib/GroovesharkAPI.py                |    6 +++++-
 4 files changed, 11 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to