Fix covert art directory creation. Again.
authorstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Sat, 22 Jan 2011 15:42:42 +0000 (15:42 +0000)
committerstephendenham <stephendenham@2dec19e3-eb1d-4749-8193-008c8bba0994>
Sat, 22 Jan 2011 15:42:42 +0000 (15:42 +0000)
git-svn-id: svn://svn.code.sf.net/p/xbmc-groove/code@37 2dec19e3-eb1d-4749-8193-008c8bba0994

addon.xml
changelog.txt
default.py
description.xml

index a0cb658..aa80611 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.2.2" provider-name="Stephen Denham">
+       version="0.2.3" provider-name="Stephen Denham">
        <requires>
                <import addon="xbmc.python" version="1.0" />
        </requires>
index d1f7d0c..4679e0e 100644 (file)
@@ -1,3 +1,7 @@
+0.2.3:
+
+Fix covert art directory creation. Again.
+
 0.2.2:
 
 Fix covert art directory creation.
index 4d51d47..0c9e8c4 100644 (file)
@@ -76,8 +76,8 @@ class Groveshark:
         if os.path.isdir(cacheDir) == False:
             os.makedirs(cacheDir)
             xbmc.log("Made " + cacheDir)
-        if os.path.isdir(thumbDir) == False:
-            artDir = xbmc.translatePath(thumbDir)
+        artDir = xbmc.translatePath(thumbDir)
+        if os.path.isdir(artDir) == False:
             os.makedirs(artDir)
             xbmc.log("Made " + artDir)
 
index 485e58f..4cf1820 100644 (file)
@@ -18,7 +18,7 @@
        <title>Grooveshark XBMC.</title>
 
        <!-- (required) Major.minor.build -->
-       <version>0.2.2</version>
+       <version>0.2.3</version>
 
        <!--
                (required) author name & email. at least one author name is required