summaryrefslogtreecommitdiff
path: root/plugin.video.spurs-tv
diff options
context:
space:
mode:
authorLee Smith <LS80@users.noreply.github.com>2017-09-28 21:28:55 +0100
committerlearningit <scottyroscoe13@gmail.com>2017-09-28 16:28:55 -0400
commit2ec86daa33969e660b1f35da5928014850d1ad1e (patch)
tree34357cb627fdcfa147895c877362f5e3f2b6860c /plugin.video.spurs-tv
parent818995ca27e98190d053093ae688ce201fb631ea (diff)
[plugin.video.spurs-tv] v2.14.1 (#1428)
Diffstat (limited to 'plugin.video.spurs-tv')
-rw-r--r--plugin.video.spurs-tv/addon.xml4
-rw-r--r--plugin.video.spurs-tv/changelog.txt3
-rw-r--r--plugin.video.spurs-tv/resources/lib/new_stadium.py2
3 files changed, 6 insertions, 3 deletions
diff --git a/plugin.video.spurs-tv/addon.xml b/plugin.video.spurs-tv/addon.xml
index 3364f4b..6669450 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.0" provider-name="Leopold">
+<addon id="plugin.video.spurs-tv" name="Spurs TV" version="2.14.1" 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 category</news>
+ <news>Fixed new stadium video gallery</news>
</extension>
</addon>
diff --git a/plugin.video.spurs-tv/changelog.txt b/plugin.video.spurs-tv/changelog.txt
index d96dedf..b41567a 100644
--- a/plugin.video.spurs-tv/changelog.txt
+++ b/plugin.video.spurs-tv/changelog.txt
@@ -1,3 +1,6 @@
+v2.14.1 (2017-09-26)
+ - Fixed new stadium video gallery
+
v2.14.0 (2017-04-23)
- Fixed New Stadium category after new YouTube streams were added
- Update icon again, to match the video logo
diff --git a/plugin.video.spurs-tv/resources/lib/new_stadium.py b/plugin.video.spurs-tv/resources/lib/new_stadium.py
index 1534417..1cbe209 100644
--- a/plugin.video.spurs-tv/resources/lib/new_stadium.py
+++ b/plugin.video.spurs-tv/resources/lib/new_stadium.py
@@ -14,7 +14,7 @@ import requests
URL_ROOT = "http://new-stadium.tottenhamhotspur.com/"
-RE_EMBED = re.compile(r'kWidget\.embed\((.*)\)')
+RE_EMBED = re.compile(r'kWidget\.embed\((.*)\)', re.MULTILINE|re.DOTALL)
Video = namedtuple('Video', ['title', 'id'])