The branch, frodo has been updated
via d84e64caa53b46a0ea8a4b96e75ea4b8421f4a8d (commit)
from dc3c5afa213b5a5448eddd282d4242b348e877ae (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=d84e64caa53b46a0ea8a4b96e75ea4b8421f4a8d
commit d84e64caa53b46a0ea8a4b96e75ea4b8421f4a8d
Author: sphere <[email protected]>
Date: Wed Mar 12 19:18:33 2014 +0100
[script.grab.fanart] updated to version 0.12.6
diff --git a/script.grab.fanart/addon.xml b/script.grab.fanart/addon.xml
old mode 100644
new mode 100755
index a0cb9dd..94ebed5
--- a/script.grab.fanart/addon.xml
+++ b/script.grab.fanart/addon.xml
@@ -1,16 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.grab.fanart"
- name="Grab Fanart" version="0.12.4" provider-name="robweber">
+ name="Grab Fanart" version="0.12.6" provider-name="robweber">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.module" library="default.py" />
- <extension point="xbmc.service" library="service.py" start="startup" />
+ <extension point="xbmc.service" library="service.py" start="login" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Exposes fanart as skin properties for slideshows,
etc</summary>
<description lang="en">Uses the XBMC database to grab all fanart from
media items and put it into a skin property for use by skins/slideshows as
previous version of XBMC allowed.</description>
<forum>http://forum.xbmc.org/showthread.php?tid=166572</forum>
<source>https://github.com/robweber/script.grab.fanart</source>
+ <website>https://github.com/robweber/script.grab.fanart</website>
<license>The MIT License</license>
<platform>all</platform>
<language></language>
diff --git a/script.grab.fanart/changelog.txt b/script.grab.fanart/changelog.txt
old mode 100644
new mode 100755
index 2ea2bbb..43b21d5
--- a/script.grab.fanart/changelog.txt
+++ b/script.grab.fanart/changelog.txt
@@ -1,8 +1,19 @@
+Version 0.12.6
+
+added website tag
+removed settings visibility
+removed strings
+
+Version 0.12.5
+
+change startup type to "login"
+
Version 0.12.4
only clear lists when we know there is new content
added try/catch for index error
changed some logging to debug only
+icon file updated
Version 0.12.3
diff --git a/script.grab.fanart/default.py b/script.grab.fanart/default.py
old mode 100644
new mode 100755
diff --git a/script.grab.fanart/icon.png b/script.grab.fanart/icon.png
index ba9cea4..43bb5ba 100644
Binary files a/script.grab.fanart/icon.png and b/script.grab.fanart/icon.png
differ
diff --git a/script.grab.fanart/resources/settings.xml
b/script.grab.fanart/resources/settings.xml
index a164313..6faff03 100644
--- a/script.grab.fanart/resources/settings.xml
+++ b/script.grab.fanart/resources/settings.xml
@@ -1,7 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<settings>
- <category id="general" label="30011">
- <setting id="refresh" type="number" default="10" label="Refresh
Time" visible="true" />
- <setting id="mode" type="labelenum" default="random"
label="Mode" values="random|recent" visible="true" />
- </category>
+ <setting id="refresh" type="number" default="10" label="Refresh Time"
visible="false" />
+ <setting id="mode" type="labelenum" default="random" label="Mode"
values="random|recent" visible="false" />
</settings>
\ No newline at end of file
diff --git a/script.grab.fanart/service.py b/script.grab.fanart/service.py
index 20c299d..d39d784 100644
--- a/script.grab.fanart/service.py
+++ b/script.grab.fanart/service.py
@@ -289,11 +289,11 @@ class GrabFanartService:
json_response = xbmc.executeJSONRPC('{ "jsonrpc" : "2.0" , "method" :
"' + method + '" , "params" : ' + params + ' , "id":1 }')
jsonobject = json.loads(json_response)
-
+
if(jsonobject.has_key('result')):
return jsonobject['result']
else:
- utils.log("no result",xbmc.LOGDEBUG)
+ utils.log("no result " + str(jsonobject),xbmc.LOGDEBUG)
return None
def randomNum(self,size):
-----------------------------------------------------------------------
Summary of changes:
script.grab.fanart/addon.xml | 5 +++--
script.grab.fanart/changelog.txt | 11 +++++++++++
script.grab.fanart/icon.png | Bin 22145 -> 81412 bytes
.../resources/language/English/strings.xml | 5 -----
script.grab.fanart/resources/settings.xml | 6 ++----
script.grab.fanart/service.py | 4 ++--
6 files changed, 18 insertions(+), 13 deletions(-)
mode change 100644 => 100755 script.grab.fanart/addon.xml
mode change 100644 => 100755 script.grab.fanart/changelog.txt
mode change 100644 => 100755 script.grab.fanart/default.py
delete mode 100644 script.grab.fanart/resources/language/English/strings.xml
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons