The branch, frodo has been updated
via 83a2183e6f7d45b6f5e72af7a647983bdb802bab (commit)
from 81ccc23236cc09527b1f911e5d83d032b483b614 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=83a2183e6f7d45b6f5e72af7a647983bdb802bab
commit 83a2183e6f7d45b6f5e72af7a647983bdb802bab
Author: Martijn Kaijser <[email protected]>
Date: Sun Jun 1 12:31:17 2014 +0200
[script.lazytv] 0.9.83
diff --git a/script.lazytv/addon.xml b/script.lazytv/addon.xml
index 1f18c4d..667a4f5 100644
--- a/script.lazytv/addon.xml
+++ b/script.lazytv/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<addon id="script.lazytv"
name="LazyTV"
- version="0.9.81"
+ version="0.9.83"
provider-name="KodeKarnage">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
@@ -9,7 +9,7 @@
<extension point="xbmc.python.script"
library="default.py">
- <provides>executable video</provides>
+ <provides>executable</provides>
</extension>
<extension point="xbmc.service" library="service.py"
start="login"></extension>
diff --git a/script.lazytv/changelog.txt b/script.lazytv/changelog.txt
index 6aec95a..7b5fa7c 100644
--- a/script.lazytv/changelog.txt
+++ b/script.lazytv/changelog.txt
@@ -1,3 +1,6 @@
+0.9.82
+Fixed bugs
+
0.9.7
Features:
* option to reverse the order of the shows in the list view
diff --git a/script.lazytv/resources/addon_clone.xml
b/script.lazytv/resources/addon_clone.xml
index 3e1a672..411d6e4 100644
--- a/script.lazytv/resources/addon_clone.xml
+++ b/script.lazytv/resources/addon_clone.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<addon id="script.lazytv.SANNAME"
name="CLONENAME"
- version="0.9.81"
+ version="0.9.83"
provider-name="KodeKarnage">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
@@ -9,7 +9,7 @@
<extension point="xbmc.python.script"
library="default.py">
- <provides>executable video</provides>
+ <provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
diff --git a/script.lazytv/resources/playlists.py
b/script.lazytv/resources/playlists.py
index 791a9af..24adeb5 100644
--- a/script.lazytv/resources/playlists.py
+++ b/script.lazytv/resources/playlists.py
@@ -3,8 +3,8 @@ import json
import xbmcaddon
import xbmcgui
-_addon_ = xbmcaddon.Addon('script.lazytv')
-__addonid__ = _addon_.getAddonInfo('id')
+__addon__ = xbmcaddon.Addon('script.lazytv')
+__addonid__ = __addon__.getAddonInfo('id')
def lang(id):
san = __addon__.getLocalizedString(id).encode( 'utf-8', 'ignore' )
@@ -49,6 +49,6 @@ def playlist_selection_window():
pl = playlist_selection_window()
-_addon_.setSetting(id="users_spl",value=str(pl))
+__addon__.setSetting(id="users_spl",value=str(pl))
-_addon_.openSettings()
+__addon__.openSettings()
diff --git a/script.lazytv/resources/selector.py
b/script.lazytv/resources/selector.py
index 9d0135d..9136561 100644
--- a/script.lazytv/resources/selector.py
+++ b/script.lazytv/resources/selector.py
@@ -28,10 +28,10 @@ import time
import json
import sys
-_addon_ = xbmcaddon.Addon('script.lazytv')
-__addonid__ = _addon_.getAddonInfo('id')
-_setting_ = _addon_.getSetting
-scriptPath = _addon_.getAddonInfo('path')
+__addon__ = xbmcaddon.Addon('script.lazytv')
+__addonid__ = __addon__.getAddonInfo('id')
+_setting_ = __addon__.getSetting
+scriptPath = __addon__.getAddonInfo('path')
list_type = len(sys.argv[1])
@@ -211,9 +211,9 @@ def selection_func():
del creation
if list_type == 7:
- _addon_.setSetting(id="randos",value=str(new_list))
+ __addon__.setSetting(id="randos",value=str(new_list))
else:
- _addon_.setSetting(id="selection",value=str(new_list))
+ __addon__.setSetting(id="selection",value=str(new_list))
selection_func()
-_addon_.openSettings()
+__addon__.openSettings()
-----------------------------------------------------------------------
Summary of changes:
script.lazytv/addon.xml | 4 ++--
script.lazytv/changelog.txt | 3 +++
script.lazytv/resources/addon_clone.xml | 4 ++--
script.lazytv/resources/playlists.py | 8 ++++----
script.lazytv/resources/selector.py | 14 +++++++-------
5 files changed, 18 insertions(+), 15 deletions(-)
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Time is money. Stop wasting it! Get your web API in 5 minutes.
www.restlet.com/download
http://p.sf.net/sfu/restlet
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons