The branch, frodo has been updated
via 26d3c73f4f4e20dc8ebcec4382c5240bcfd119fb (commit)
from b7d8d5058459664f74a676a67ab00f5182e887a8 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=26d3c73f4f4e20dc8ebcec4382c5240bcfd119fb
commit 26d3c73f4f4e20dc8ebcec4382c5240bcfd119fb
Author: Martijn Kaijser <[email protected]>
Date: Mon Nov 25 15:51:04 2013 +0100
[script.tvtunes] 4.0.1
diff --git a/script.tvtunes/addon.xml b/script.tvtunes/addon.xml
index 98e916d..729777e 100644
--- a/script.tvtunes/addon.xml
+++ b/script.tvtunes/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="script.tvtunes" name="TvTunes" version="4.0.0"
provider-name="Ppic,Frost,ronie,robwebset">
+<addon id="script.tvtunes" name="TvTunes" version="4.0.1"
provider-name="Ppic,Frost,ronie,robwebset">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" version="2.0.10"/>
diff --git a/script.tvtunes/changelog.txt b/script.tvtunes/changelog.txt
index 7e5c95f..a363f8c 100644
--- a/script.tvtunes/changelog.txt
+++ b/script.tvtunes/changelog.txt
@@ -1,3 +1,6 @@
+v4.0.1
+- Fixed issue with Ubuntu and settings slider values
+
v4.0.0
- Disable screensaver fix
diff --git a/script.tvtunes/resources/tvtunes_backend.py
b/script.tvtunes/resources/tvtunes_backend.py
index e51052b..92ebe4f 100644
--- a/script.tvtunes/resources/tvtunes_backend.py
+++ b/script.tvtunes/resources/tvtunes_backend.py
@@ -137,7 +137,7 @@ class Settings():
return self.custom_path
def getDownVolume(self):
- return int(__addon__.getSetting("downvolume"))
+ return int(float(__addon__.getSetting("downvolume")))
def isLoop(self):
return __addon__.getSetting("loop") == 'true'
@@ -193,7 +193,7 @@ class Settings():
return __addon__.getSetting("tvlist") == 'true'
def getPlayDurationLimit(self):
- return int(__addon__.getSetting("endafter"))
+ return int(float(__addon__.getSetting("endafter")))
# Check if the video info button should be hidden
@staticmethod
@@ -203,7 +203,7 @@ class Settings():
# Check the delay start value
@staticmethod
def getStartDelaySeconds():
- return int(__addon__.getSetting("delayStart"))
+ return int(float(__addon__.getSetting("delayStart")))
@staticmethod
def getXbmcMajorVersion():
-----------------------------------------------------------------------
Summary of changes:
script.tvtunes/addon.xml | 2 +-
script.tvtunes/changelog.txt | 3 +++
script.tvtunes/resources/tvtunes_backend.py | 6 +++---
3 files changed, 7 insertions(+), 4 deletions(-)
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing
conversations that shape the rapidly evolving mobile landscape. Sign up now.
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons