forked from kodi-community-addons/plugin.audio.spotify
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaddon.xml
33 lines (33 loc) · 2.01 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
<?xml version='1.0' encoding='utf-8'?>
<addon id="plugin.audio.spotify" version="1.3.13" name="Spotify" provider-name="glk1001">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="xbmc.addon" version="18.9.701" />
<import addon="script.module.certifi" version="2023.5.7" />
<import addon="script.module.chardet" version="5.1.0" />
<import addon="script.module.idna" version="3.4.0" />
<import addon="script.module.requests" version="2.31.0" />
<import addon="script.module.urllib3" version="1.26.16" />
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>audio</provides>
</extension>
<extension library="service.py" point="xbmc.service" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">Unofficial Spotify music plugin for Kodi</summary>
<description lang="en_GB">Allows you to use your Spotify premium account to connect and play Spotify through Kodi.</description>
<disclaimer lang="en_GB">This product uses the SPOTIFY WEB API but is not endorsed, certified or otherwise approved in any way by Spotify. Spotify is the registered trademark of Spotify AB.</disclaimer>
<source>https://github.com/glk1001/plugin.audio.spotify</source>
<website>https://github.com/glk1001/glk1001.github.io</website>
<news>v1.3.13-test (2025-01-09)
Changed default album retrieval for 'artists' to just albums and singles instead of everything. And added more logging to figure how many cached/non-cached things the plugin is retrieving.
1.3.12: Added a workaround setting "problem_with_terminate_streaming" to not terminate streaming early. Added for Raspberry Pi devices.
1.3.11: Fixed 'all albums' for artist menu. Added extra artist track options. Cleaned menus.
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>