The branch, frodo has been updated
via 0f5fc8367473bd48a286ee41b5ca8e3bff1dd972 (commit)
via 587c24ec7dec6f97a4ea676dcff6a2a8b4a879e3 (commit)
via 9d3f56f5c7f83ce3c7ac39290d9c8d981bcb4a3a (commit)
via 408889f234ee66ff4233d5f48f34598ec3aa1b8c (commit)
from bdef3ad92d3f6c279a5ff04768eb50b5016dbacb (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=0f5fc8367473bd48a286ee41b5ca8e3bff1dd972
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=587c24ec7dec6f97a4ea676dcff6a2a8b4a879e3
commit 587c24ec7dec6f97a4ea676dcff6a2a8b4a879e3
Author: Martijn Kaijser <[email protected]>
Date: Sun Apr 20 09:59:49 2014 +0200
[plugin.video.mlslive] 1.0.8
diff --git a/plugin.video.mlslive/addon.xml b/plugin.video.mlslive/addon.xml
index 8c4c274..80eff2d 100644
--- a/plugin.video.mlslive/addon.xml
+++ b/plugin.video.mlslive/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.mlslive" name="MLS Live" version="1.0.7"
provider-name="Micah Galizia">
+<addon id="plugin.video.mlslive" name="MLS Live" version="1.0.8"
provider-name="Micah Galizia">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
diff --git a/plugin.video.mlslive/changelog.txt
b/plugin.video.mlslive/changelog.txt
index 95edfaa..1301cc3 100644
--- a/plugin.video.mlslive/changelog.txt
+++ b/plugin.video.mlslive/changelog.txt
@@ -1,3 +1,7 @@
+[B]Version 1.0.8[/B]
+
+- don't simplify m3u8 URL because it causes problems with authentication
+
[B]Version 1.0.7[/B]
- fix early week roll-over in timezones larger than GMT-5 (eg: Australia)
diff --git a/plugin.video.mlslive/mlslive.py b/plugin.video.mlslive/mlslive.py
index 4546be1..53e1918 100644
--- a/plugin.video.mlslive/mlslive.py
+++ b/plugin.video.mlslive/mlslive.py
@@ -382,7 +382,7 @@ class MLSLive:
path_node = result_node.getElementsByTagName('path')[0]
stream_url = path_node.firstChild.nodeValue
- return stream_url.split('?')[0]
+ return stream_url
def getVideoChannels(self):
diff --git a/plugin.video.mlslive/test.py b/plugin.video.mlslive/test.py
index 0312989..2ca3e87 100755
--- a/plugin.video.mlslive/test.py
+++ b/plugin.video.mlslive/test.py
@@ -53,13 +53,15 @@ if options.week != None:
print week_url
games = my_mls.getGames(week_url)
for game in games:
- print game
+ print game['gameID'] + " " + my_mls.getGameString(game, "vs")
sys.exit()
elif options.channel == None:
print "Video Channels:"
+ """
channels = my_mls.getVideoChannels()
for channel in channels:
print '\t' + channel['channelID'] + ') ' + channel['name']
+ """
else:
videos = my_mls.getChannelVideos(options.channel)
for video in videos:
@@ -69,6 +71,9 @@ else:
if options.game != None:
# get the games again :( (in the plugin we don't actually do this)
+ print my_mls.getGameLiveStream(options.game)
+ sys.exit(0)
+ """
games = my_mls.getGames(options.offset)
game = None
for g in games:
@@ -93,8 +98,9 @@ if options.game != None:
print "Game is still upcoming"
sys.exit(0)
-
-games = my_mls.getGames(my_mls.getCurrentWeekURI())
+ """
+week_uri = my_mls.getCurrentWeekURI()
+games = my_mls.getGames(week_uri)
teams = my_mls.getTeams()
for game in games:
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=9d3f56f5c7f83ce3c7ac39290d9c8d981bcb4a3a
commit 9d3f56f5c7f83ce3c7ac39290d9c8d981bcb4a3a
Author: Martijn Kaijser <[email protected]>
Date: Sun Apr 20 09:58:52 2014 +0200
[plugin.video.tagesschau] 2.0.3
diff --git a/plugin.video.tagesschau/addon.xml
b/plugin.video.tagesschau/addon.xml
index 4f4a442..a21da22 100644
--- a/plugin.video.tagesschau/addon.xml
+++ b/plugin.video.tagesschau/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="plugin.video.tagesschau"
- version="2.0.2"
+ version="2.0.3"
name="Tagesschau"
provider-name="Jörn Schumacher, Henning Saul">
<requires>
diff --git a/plugin.video.tagesschau/changelog.txt
b/plugin.video.tagesschau/changelog.txt
index 0b1de8b..4603d7b 100644
--- a/plugin.video.tagesschau/changelog.txt
+++ b/plugin.video.tagesschau/changelog.txt
@@ -1,3 +1,6 @@
+version 2.0.3
+ * Fixed: RTSP stream no longer available
+
version 2.0.1
* Fixed: InfoLabels were not correctly casted to str/unicode
* Renamed the plugin to "Tagesschau" again (instead of "tagesschau")
diff --git a/plugin.video.tagesschau/tagesschau_json_api.py
b/plugin.video.tagesschau/tagesschau_json_api.py
index 71aae05..accfaf4 100644
--- a/plugin.video.tagesschau/tagesschau_json_api.py
+++ b/plugin.video.tagesschau/tagesschau_json_api.py
@@ -67,12 +67,16 @@ class VideoContent(object):
if quality == 'L':
videourl = self._videourls.get("h264l")
+ if not videourl:
+ videourl = self._videourls.get("http_tab_high")
if quality == 'M' or not videourl:
videourl = self._videourls.get("h264m")
+ if not videourl:
+ videourl = self._videourls.get("http_tab_normal")
if quality == 'S' or not videourl:
videourl = self._videourls.get("h264s")
- if not videourl:
- videourl = self._videourls.get("rtsp_high")
+ if not videourl:
+ videourl = self._videourls.get("http_tab_normal")
return videourl
def image_url(self):
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=408889f234ee66ff4233d5f48f34598ec3aa1b8c
-----------------------------------------------------------------------
Summary of changes:
plugin.audio.nectarine/LICENSE.txt | 21 +
plugin.audio.nectarine/README.md | 4 +
plugin.audio.nectarine/addon.xml | 23 +
plugin.audio.nectarine/changelog.txt | 10 +
plugin.audio.nectarine/config.ini | 7 +
plugin.audio.nectarine/default.py | 191 ++++++
.../httpcomm.py | 0
plugin.audio.nectarine/icon.png | Bin 0 -> 37518 bytes
.../resources/language/English/strings.xml | 11 +
plugin.audio.nectarine/resources/settings.xml | 2 +
plugin.video.gameone/LICENSE.txt | 621 ++++++++++++++++++++
plugin.video.gameone/addon.xml | 20 +
plugin.video.gameone/changelog.txt | 31 +
plugin.video.gameone/default.py | 366 ++++++++++++
plugin.video.gameone/icon.png | Bin 0 -> 75267 bytes
.../resources/language/English/strings.xml | 25 +
.../resources/language/German/strings.xml | 26 +
plugin.video.gameone/resources/settings.xml | 8 +
plugin.video.mlslive/addon.xml | 2 +-
plugin.video.mlslive/changelog.txt | 4 +
plugin.video.mlslive/mlslive.py | 2 +-
plugin.video.mlslive/test.py | 12 +-
plugin.video.tagesschau/addon.xml | 2 +-
plugin.video.tagesschau/changelog.txt | 3 +
plugin.video.tagesschau/parserss.py | 137 -----
plugin.video.tagesschau/tagesschau_json_api.py | 8 +-
26 files changed, 1391 insertions(+), 145 deletions(-)
create mode 100644 plugin.audio.nectarine/LICENSE.txt
create mode 100644 plugin.audio.nectarine/README.md
create mode 100644 plugin.audio.nectarine/addon.xml
create mode 100644 plugin.audio.nectarine/changelog.txt
create mode 100644 plugin.audio.nectarine/config.ini
create mode 100644 plugin.audio.nectarine/default.py
copy {plugin.audio.di.fm => plugin.audio.nectarine}/httpcomm.py (100%)
create mode 100644 plugin.audio.nectarine/icon.png
create mode 100644
plugin.audio.nectarine/resources/language/English/strings.xml
create mode 100644 plugin.audio.nectarine/resources/settings.xml
create mode 100644 plugin.video.gameone/LICENSE.txt
create mode 100644 plugin.video.gameone/addon.xml
create mode 100644 plugin.video.gameone/changelog.txt
create mode 100644 plugin.video.gameone/default.py
create mode 100644 plugin.video.gameone/icon.png
create mode 100644 plugin.video.gameone/resources/language/English/strings.xml
create mode 100644 plugin.video.gameone/resources/language/German/strings.xml
create mode 100644 plugin.video.gameone/resources/settings.xml
delete mode 100644 plugin.video.tagesschau/parserss.py
hooks/post-receive
--
Plugins
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons