Some more changes for XBMC addon compliancy.
authorstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Mon, 19 Sep 2011 17:31:08 +0000 (17:31 +0000)
committerstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Mon, 19 Sep 2011 17:31:08 +0000 (17:31 +0000)
git-svn-id: svn://svn.code.sf.net/p/xbmc-groove/code@57 2dec19e3-eb1d-4749-8193-008c8bba0994

addon.xml
changelog.txt
description.xml
resources/lib/GroovesharkAPI-test.py [deleted file]

index 8061dc3..8b111ef 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="0.6.0" provider-name="Stephen Denham">
+       version="0.6.1" provider-name="Stephen Denham">
        <requires>
                <import addon="xbmc.python" version="1.0" />
                <import addon="script.module.simplejson"/>
index 2eef2e8..b373285 100644 (file)
@@ -1,3 +1,7 @@
+0.6.1
+
+Some more changes for XBMC addon compliancy.
+
 0.6.0
 
 Compliant with all XBMC addon requirements.
index cddbd90..8fb5ef5 100644 (file)
@@ -18,7 +18,7 @@
        <title>Grooveshark XBMC</title>
 
        <!-- (required) Major.minor.build -->
-       <version>0.6.0</version>
+       <version>0.6.1</version>
 
        <!--
                (required) author name & email. at least one author name is required
diff --git a/resources/lib/GroovesharkAPI-test.py b/resources/lib/GroovesharkAPI-test.py
deleted file mode 100644 (file)
index 9cf14b0..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# Test
-import sys
-res = []
-groovesharkApi = GrooveAPI()
-res = groovesharkApi.pingService()
-res = groovesharkApi.login(sys.argv[1], sys.argv[2])
-#songIds = []
-#songIds.append('28645456')
-#songIds.append('26579347')
-#res=groovesharkApi.playlistRename(58197714, 'renamed playlist2')
-#res = groovesharkApi.createPlaylist("Test", songIDs)
-#res = groovesharkApi.setPlaylistSongs('58197714',songIds)
-#pprint.pprint(res)
-#res = groovesharkApi.getPlaylistSongs('58197714')
-#res = groovesharkApi.getSongSearchResults('jimmy jazz', 3)
-#res = groovesharkApi.getPopularSongsToday(3)
-#res = groovesharkApi.getSongURLFromSongID('26579347')
-#res = groovesharkApi.getAlbumSearchResults('london calling', 3)
-#res = groovesharkApi.getArtistAlbums('52283')
-#res = groovesharkApi.getArtistSearchResults('the clash', 3)
-res = groovesharkApi.getUserFavoriteSongs()
-#res = groovesharkApi.getUserPlaylists()
-#res = groovesharkApi.getSongInfos('27425375')
-#res = groovesharkApi.getPlaylistSongs(40902662)
-#res = groovesharkApi.addUserFavoriteSong('27425375')
-#res = groovesharkApi.logout()
-#res = groovesharkApi.getUserPlaylistsByUsername('stephendenham')
-#res = groovesharkApi.getArtistPopularSongs('3707')
-#
-pprint.pprint(res)