summaryrefslogtreecommitdiff
path: root/plugin.video.tmos
diff options
context:
space:
mode:
authorRazzeee <razzeee@gmail.com>2017-04-04 13:09:08 +0200
committerenen92 <enen92@users.noreply.github.com>2017-04-04 12:09:08 +0100
commit9b222bc15b72c41439799725941819cb7a47d534 (patch)
tree62f3b5e6f029d2f3e9b5cc542b7d8b1a9516f195 /plugin.video.tmos
parentc3f9279f8b0a7cbc31b7d017a55045195c5b43ab (diff)
[plugin.video.tmos] 1.0.6 (#1090)
Diffstat (limited to 'plugin.video.tmos')
-rw-r--r--plugin.video.tmos/addon.py17
-rw-r--r--plugin.video.tmos/addon.xml14
-rw-r--r--plugin.video.tmos/changelog.txt3
3 files changed, 25 insertions, 9 deletions
diff --git a/plugin.video.tmos/addon.py b/plugin.video.tmos/addon.py
index 8e7b0d9..215384a 100644
--- a/plugin.video.tmos/addon.py
+++ b/plugin.video.tmos/addon.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2015 Jester
+# Copyright (C) 2017 Jester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -25,15 +25,22 @@ plugin = Plugin()
def show_tmos_list():
items = [
- {'label': 'TMOS Episodes',
- 'thumbnail': 'special://home/addons/plugin.video.tmos/icon.png',
+ {'label': 'TMOS Episodes on YouTube',
+ 'icon': 'special://home/addons/plugin.video.tmos/icon.png',
'path': 'plugin://plugin.video.youtube/channel/UCtO6jOECGV2FQHj4RGOXyDA/?page=1',
+ 'selected': True,
},
{'label': 'TMOS Live Ustream (Mon. through Fri. 09:00am EST)',
- 'thumbnail': 'special://home/addons/plugin.video.tmos/icon.png',
+ 'icon': 'special://home/addons/plugin.video.tmos/icon.png',
'path': 'http://iphone-streaming.ustream.tv/uhls/4443605/streams/live/iphone/playlist.m3u8',
- 'is_playable': True,
+ 'is_playable': True,'selected': True,
+ },
+
+ {'label': 'TMOS 24/7 Audio Stream',
+ 'icon': 'special://home/addons/plugin.video.tmos/icon.png',
+ 'path': 'http://playerservices.streamtheworld.com/api/livestream-redirect/TMOS.mp3',
+ 'is_playable': True,'selected': True,
},
]
return plugin.finish(items)
diff --git a/plugin.video.tmos/addon.xml b/plugin.video.tmos/addon.xml
index 96a7cd5..c8c05ca 100644
--- a/plugin.video.tmos/addon.xml
+++ b/plugin.video.tmos/addon.xml
@@ -1,21 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.tmos" name="TMOS" version="1.0.5" provider-name="Jester">
+<addon id="plugin.video.tmos" name="TMOS" version="1.0.6" provider-name="Jester">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.xbmcswift2" version="2.4.0"/>
- <import addon="plugin.video.youtube" version="5.1.17"/>
+ <import addon="plugin.video.youtube" version="5.3.12"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
- <summary lang="en">TMOS Podcasts and Live Stream</summary>
- <description lang="en">Streams The Mike O'Meara Show (TMOS) podcasts on YouTube and the Live Ustream.</description>
+ <summary lang="en">TMOS Podcasts and Live Streams</summary>
+ <description lang="en">Streams The Mike O'Meara Show (TMOS) podcasts from YouTube, 24-7 Audio and Ustream.</description>
+ <news>v1.0.6 (26-03-2017)
+ - Update youtube version requirement, add 24-7 audio stream</news>
<platform>all</platform>
<language>en</language>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<source>https://github.com/jester-xbmc/plugin.video.tmos</source>
<forum>http://forum.kodi.tv/showthread.php?tid=215704</forum>
<website>http://mikeomearashow.com/</website>
+ <assets>
+ <icon>icon.png</icon>
+ <fanart>fanart.jpg</fanart>
+ </assets>
</extension>
</addon>
diff --git a/plugin.video.tmos/changelog.txt b/plugin.video.tmos/changelog.txt
index 7136a16..945141d 100644
--- a/plugin.video.tmos/changelog.txt
+++ b/plugin.video.tmos/changelog.txt
@@ -1,3 +1,6 @@
+v1.0.6 (26-03-2017)
+- Update youtube version requirement, add 24/7 audio stream
+
v1.0.5 (22-12-2016)
- Update python requirement for Krypton