-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
029b44e
commit f82afa1
Showing
2 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<addon id="plugin.video.viaplay" | ||
version="2.0.1" | ||
name="Viaplay" | ||
provider-name="emilsvennesson"> | ||
<requires> | ||
<import addon="xbmc.python" version="2.25.0"/> | ||
<import addon="script.module.requests" version="2.9.1"/> | ||
<import addon="script.module.iso8601" version="0.1.11"/> | ||
<import addon="script.module.inputstreamhelper" version="0.3.3"/> | ||
<import addon="script.module.routing" version="0.2.0"/> | ||
</requires> | ||
<extension point="xbmc.python.pluginsource" library="default.py"> | ||
<provides>video</provides> | ||
</extension> | ||
<extension point="xbmc.addon.metadata"> | ||
<description lang="en_GB">Watch content from Viaplay.</description> | ||
<description lang="sv_SE">Titta på innehåll från Viaplay.</description> | ||
<news>2017.12.27 v2.0.1 | ||
+ New dependency: script.module.inputstreamhelper | ||
+ Switch to registration code activation | ||
+ Finally replace HLS with MPEG-DASH (Widevine DRM is now required) | ||
+ Channels support (previously Viasat TV To Go) | ||
+ Implement dynamically acquired 'theme pages' in addition to browsing through categories | ||
+ Starred, Watched and Purchased pages now work | ||
+ Open add-on settings on first run | ||
+ Major rewrite and cleanup of the code | ||
+ Big improvements all-around and a massively enhanced experience | ||
</news> | ||
<platform>all</platform> | ||
<language>sv dk no fi en</language> | ||
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license> | ||
<source>https://github.com/emilsvennesson/kodi-viaplay</source> | ||
<forum>http://forum.kodi.tv/showthread.php?tid=286387</forum> | ||
<disclaimer>This add-on requires you to have a subscription to Viaplay.[CR]This add-on is completely unofficial and is not endorsed by Viaplay in any way.</disclaimer> | ||
<assets> | ||
<icon>resources/art/icon.png</icon> | ||
<fanart>resources/art/fanart.jpg</fanart> | ||
</assets> | ||
</extension> | ||
<addon id="plugin.video.viaplay" version="2.1.0" name="Viaplay" provider-name="emilsvennesson"> | ||
<requires> | ||
<import addon="xbmc.python" version="2.25.0" /> | ||
<import addon="script.module.requests" version="2.9.1" /> | ||
<import addon="script.module.iso8601" version="0.1.11" /> | ||
<import addon="script.module.inputstreamhelper" version="0.3.3" /> | ||
<import addon="script.module.routing" version="0.2.0" /> | ||
</requires> | ||
<extension point="xbmc.python.pluginsource" library="default.py"> | ||
<provides>video</provides> | ||
</extension> | ||
<extension point="xbmc.addon.metadata"> | ||
<description lang="en_GB">Watch content from Viaplay.</description> | ||
<description lang="sv_SE">Titta på innehåll från Viaplay.</description> | ||
<news>2018.02.21 v2.1.0 | ||
+ New dependency: script.module.routing | ||
+ Support for 4K streams and 5.1 audio | ||
+ Fix audio bug on some sports streams (requires Kodi v18 Leia) | ||
+ Channels section improvements | ||
+ Code cleanup | ||
</news> | ||
<platform>all</platform> | ||
<language>sv dk no fi en</language> | ||
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license> | ||
<source>https://github.com/emilsvennesson/kodi-viaplay</source> | ||
<forum>http://forum.kodi.tv/showthread.php?tid=286387</forum> | ||
<disclaimer>This add-on requires you to have a subscription to Viaplay.[CR]This add-on is completely unofficial and is not endorsed by Viaplay in any way.</disclaimer> | ||
<assets> | ||
<icon>resources/art/icon.png</icon> | ||
<fanart>resources/art/fanart.jpg</fanart> | ||
</assets> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters