Fix Windows https issue.
authorstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Sun, 4 Sep 2011 14:37:45 +0000 (14:37 +0000)
committerstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Sun, 4 Sep 2011 14:37:45 +0000 (14:37 +0000)
git-svn-id: svn://svn.code.sf.net/p/xbmc-groove/code@52 2dec19e3-eb1d-4749-8193-008c8bba0994

addon.xml
description.xml
resources/lib/GroovesharkAPI.py

index 133e35d..1a4c4f5 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.5.3" provider-name="Stephen Denham">
+       version="0.5.4" provider-name="Stephen Denham">
        <requires>
                <import addon="xbmc.python" version="1.0" />
        </requires>
index 95754d9..832f3aa 100644 (file)
@@ -18,7 +18,7 @@
        <title>Grooveshark XBMC</title>
 
        <!-- (required) Major.minor.build -->
-       <version>0.5.3</version>
+       <version>0.5.4</version>
 
        <!--
                (required) author name & email. at least one author name is required
index 43db1ba..9a91245 100644 (file)
@@ -29,7 +29,6 @@ class GrooveAPI:
        def __init__(self):
                
                self.simplejson = simplejson
-               socket.setdefaulttimeout(40)
                self.cacheDir = os.path.join(tempfile.gettempdir(), 'groovesharkapi')
                if os.path.isdir(self.cacheDir) == False:
                        os.makedirs(self.cacheDir)