The branch, eden has been updated
via 7e292e43aefc3a0a1e92975aa1519bad26aba6b5 (commit)
from 8e232141cc509d300e7ed0bb873781884da6b09b (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=7e292e43aefc3a0a1e92975aa1519bad26aba6b5
commit 7e292e43aefc3a0a1e92975aa1519bad26aba6b5
Author: beenje <[email protected]>
Date: Mon Dec 31 15:01:59 2012 +0100
[plugin.audio.groove] updated to version 1.0.7
diff --git a/plugin.audio.groove/addon.xml b/plugin.audio.groove/addon.xml
index 1a77971..f4a5cee 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.6" provider-name="Stephen Denham">
+ version="1.0.7" provider-name="Stephen Denham">
<requires>
<import addon="xbmc.python" version="2.0" />
<import addon="script.module.simplejson"/>
@@ -9,6 +9,7 @@
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
+ <language>en</language>
<platform>all</platform>
<summary lang="en">Grooveshark addon for XBMC.</summary>
<description lang="en">
diff --git a/plugin.audio.groove/changelog.txt
b/plugin.audio.groove/changelog.txt
index 064b934..5c623bf 100644
--- a/plugin.audio.groove/changelog.txt
+++ b/plugin.audio.groove/changelog.txt
@@ -1,3 +1,7 @@
+1.0.7
+
+Allow unicode symbols in playlist names.
+
1.0.6
Fix play next issue.
diff --git a/plugin.audio.groove/description.xml
b/plugin.audio.groove/description.xml
index 6dfe92e..5dca06a 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.6</version>
+ <version>1.0.7</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 efa338e..9956897 100644
--- a/plugin.audio.groove/resources/lib/GroovesharkAPI.py
+++ b/plugin.audio.groove/resources/lib/GroovesharkAPI.py
@@ -164,7 +164,7 @@ class GrooveAPI:
# Get IP
def _getIP(self):
try:
- myip = urllib2.urlopen('http://whatismyip.org').read()
+ myip = urllib2.urlopen('http://ipecho.net/plain').read()
if
re.match("^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$",
myip):
if self._debugging:
print "IP is " + myip
@@ -556,6 +556,6 @@ class GrooveAPI:
while (i < len(playlists)):
s = playlists[i]
- list.append([str(s['PlaylistName']).encode('utf-8'),
s['PlaylistID']])
+ list.append([str(s['PlaylistName']).encode('utf8',
'ignore'), s['PlaylistID']])
i = i + 1
return list
-----------------------------------------------------------------------
Summary of changes:
plugin.audio.groove/addon.xml | 3 +-
plugin.audio.groove/addon.xml.trans | 23 --------------------
plugin.audio.groove/changelog.txt | 4 +++
plugin.audio.groove/description.xml | 2 +-
.../resources/lib/GroovesharkAPI.py | 4 +-
5 files changed, 9 insertions(+), 27 deletions(-)
delete mode 100644 plugin.audio.groove/addon.xml.trans
hooks/post-receive
--
Plugins
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122412
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons