forked from arnesongit/plugin.audio.tidal2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
54 lines (52 loc) · 2.8 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
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.audio.tidal2" name="TIDAL2" version="2.1.5.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"/>
<import addon="script.module.pyaes"/>
<import addon="inputstream.adaptive"/>
<import addon="inputstream.ffmpegdirect"/>
</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.1.5 (2024-10-03)
- Removed the parameter 'manifest_type' for playback with the inputstream.adaptive addon for Kodi >= 21,
because the parameter is obsolete now.
- Fix in add_playlist_entries and remove_all_playlist_entries to handle more than 500 entries.
- Show TIDAL2 addon fanart when an artist has no fanart picture to avoid 404 errors in the kodi.log file.
- Removed MQA and Sony 360 from the UI
- Try to detect HiRes and Atmos playback capability from the user session information if the device type doesn't
contains "Hi Res" or "Atmos" in its name.
</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>