forked from Tecko71/plugin.audio.tidal2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
47 lines (45 loc) · 2.22 KB
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.audio.tidal2" name="TIDAL2" version="2.0.1" provider-name="arneson">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests"/>
<import addon="script.module.routing"/>
<import addon="script.module.m3u8"/>
<import addon="script.module.kodi-six"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.python.module" library="resources/lib"/>
<extension point="xbmc.service" library="service.py" start="login"/>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<language>de en</language>
<summary lang="en_GB">Extended version of the TIDAL music add-on</summary>
<summary lang="de_DE">Erweiterte Version des TIDAL Music-Addons</summary>
<description lang="en_GB">Play music and video from TIDAL music streaming service.
Requires subscription. Visit tidal.com for details.</description>
<description lang="de_DE">Spielt Music und Videos vom Streaming-Dienst TIDAL.
Es wird ein Abbonement benötigt. Siehe tidal.com für Details.</description>
<disclaimer lang="en_GB">This is an unofficial client and is not supported nor endorsed by TIDAL.</disclaimer>
<disclaimer lang="de_DE">Dies ist eine inoffizieller Client, der von TIDAL nicht unterstützt wird.</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<forum>http://forum.xbmc.org/showthread.php?tid=200555</forum>
<source>https://github.com/arnesongit/plugin.audio.tidal2</source>
<news>
v2.0.1 (2021-04-08)
- First working version for Kodi 19
- Base code ist still compatible with Kodi 18
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot000.jpg</screenshot>
<screenshot>resources/screenshot001.jpg</screenshot>
<screenshot>resources/screenshot002.jpg</screenshot>
<screenshot>resources/screenshot003.jpg</screenshot>
<screenshot>resources/screenshot004.jpg</screenshot>
<screenshot>resources/screenshot005.jpg</screenshot>
</assets>
</extension>
</addon>