summaryrefslogtreecommitdiff
path: root/plugin.video.tmos/addon.py
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/addon.py
parentc3f9279f8b0a7cbc31b7d017a55045195c5b43ab (diff)
[plugin.video.tmos] 1.0.6 (#1090)
Diffstat (limited to 'plugin.video.tmos/addon.py')
-rw-r--r--plugin.video.tmos/addon.py17
1 files changed, 12 insertions, 5 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)