summaryrefslogtreecommitdiff
path: root/plugin.video.vrt.nu
diff options
context:
space:
mode:
authorpietje666 <martijn.moreel@gmail.com>2017-09-09 17:20:14 +0200
committerenen92 <enen92@users.noreply.github.com>2017-09-09 16:20:14 +0100
commit74ca35860db075dbd6e4987fd4b96d0e9ecc71e1 (patch)
tree54379dc42402797d18d226b7c9b926803ed93bfc /plugin.video.vrt.nu
parent5a1845689c66678f39a3192295b505ca674ca796 (diff)
[plugin.video.vrt.nu] 0.0.7 (#1405)
Diffstat (limited to 'plugin.video.vrt.nu')
-rw-r--r--plugin.video.vrt.nu/addon.xml24
-rw-r--r--plugin.video.vrt.nu/resources/lib/vrtplayer/vrtplayer.py2
2 files changed, 14 insertions, 12 deletions
diff --git a/plugin.video.vrt.nu/addon.xml b/plugin.video.vrt.nu/addon.xml
index ba64b5a..6bbb81b 100644
--- a/plugin.video.vrt.nu/addon.xml
+++ b/plugin.video.vrt.nu/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.vrt.nu"
name="VRT Nu"
- version="0.0.6"
+ version="0.0.7"
provider-name="Martijn Moreel">
<requires>
@@ -23,20 +23,22 @@
<platform>all</platform>
<license>GNU General Public License, v3</license>
<news>
-v0.0.1 (01-05-2017)
-- Initial working release
-v0.0.2 (07-05-2017)
-- Fixed installation issue
-v0.0.3 (22-05-2017)
-- Fixed broken livestreams
+v0.0.7 (09-09-2017)
+- Fixed bug where dates were not always shown
+v0.0.6 (06-08-2017)
+- Fixed ordering bug for videos
+v0.0.5 (24-07-2017)
+- Fixed broken Sporza logo
v0.0.4 (20-07-2017)
- Added Sporza livestream
- Added dates to videos (Thanks stevenv)
- Fixed bug where seasons did not get listed
-v0.0.5 (24-07-2017)
-- Fixed broken Sporza logo
-v0.0.6 (06-08-2017)
-- Fixed ordering bug for videos
+v0.0.3 (22-05-2017)
+- Fixed broken livestreams
+v0.0.2 (07-05-2017)
+- Fixed installation issue
+v0.0.1 (01-05-2017)
+- Initial working release
</news>
<source>https://github.com/pietje666/plugin.video.vrt.nu</source>
<assets>
diff --git a/plugin.video.vrt.nu/resources/lib/vrtplayer/vrtplayer.py b/plugin.video.vrt.nu/resources/lib/vrtplayer/vrtplayer.py
index 6543fe0..6d1f896 100644
--- a/plugin.video.vrt.nu/resources/lib/vrtplayer/vrtplayer.py
+++ b/plugin.video.vrt.nu/resources/lib/vrtplayer/vrtplayer.py
@@ -139,7 +139,7 @@ class VRTPlayer:
list_item_title = soup.find(class_="content__title").text
if "shortdate" in video_dictionary:
- video_dictionary["shortdate"] + " " + list_item_title
+ list_item_title = video_dictionary["shortdate"] + " " + list_item_title
vrt_video = soup.find(class_="vrtvideo")
thumbnail = VRTPlayer.__format_image_url(vrt_video)