summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Smith <LS80@users.noreply.github.com>2017-10-02 00:53:16 +0100
committerlearningit <scottyroscoe13@gmail.com>2017-10-01 19:53:16 -0400
commit82e567c010af596f10a37acb50a4cc50cdb1bd8e (patch)
treee849c94492c0bfabc2e59c6247d937fa6e685b4c
parent2ec86daa33969e660b1f35da5928014850d1ad1e (diff)
[plugin.video.spurs-tv] v2.14.2 (#1440)
-rw-r--r--plugin.video.spurs-tv/addon.py4
-rw-r--r--plugin.video.spurs-tv/addon.xml4
-rw-r--r--plugin.video.spurs-tv/changelog.txt3
3 files changed, 8 insertions, 3 deletions
diff --git a/plugin.video.spurs-tv/addon.py b/plugin.video.spurs-tv/addon.py
index a3f4fca..fb5f5d7 100644
--- a/plugin.video.spurs-tv/addon.py
+++ b/plugin.video.spurs-tv/addon.py
@@ -372,10 +372,12 @@ def show_stadium_video_gallery():
def play_live_audio_commentary():
entry_id = live_audio_commentary_id()
if is_live(entry_id):
- url = get_media_url(entry_id)
+ url = HLS_URL_FMT.format(entry_id)
+ log("Playing URL {}".format(url))
else:
xbmcgui.Dialog().ok('Live Audio Commentary', plugin.get_string(30050))
url = None
+ log("Live audio commentary not currently available")
return plugin.set_resolved_url(url)
@plugin.route('/videos/path/<path>')
diff --git a/plugin.video.spurs-tv/addon.xml b/plugin.video.spurs-tv/addon.xml
index 6669450..fa0d75f 100644
--- a/plugin.video.spurs-tv/addon.xml
+++ b/plugin.video.spurs-tv/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.spurs-tv" name="Spurs TV" version="2.14.1" provider-name="Leopold">
+<addon id="plugin.video.spurs-tv" name="Spurs TV" version="2.14.2" provider-name="Leopold">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.kodiswift" version="0.0.8" optional="false"/>
@@ -21,6 +21,6 @@
<forum>http://forum.kodi.tv/showthread.php?tid=235234</forum>
<source>https://github.com/LS80/plugin.video.spurs-tv.git</source>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
- <news>Fixed new stadium video gallery</news>
+ <news>Fixed Live Audio Commentary</news>
</extension>
</addon>
diff --git a/plugin.video.spurs-tv/changelog.txt b/plugin.video.spurs-tv/changelog.txt
index b41567a..05a1af9 100644
--- a/plugin.video.spurs-tv/changelog.txt
+++ b/plugin.video.spurs-tv/changelog.txt
@@ -1,3 +1,6 @@
+v2.14.2 (2017-10-01)
+ - Fixed Live Audio Commentary
+
v2.14.1 (2017-09-26)
- Fixed new stadium video gallery