-
Notifications
You must be signed in to change notification settings - Fork 3
/
addon.xml
33 lines (32 loc) · 1.54 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" standalone="yes"?>
<addon id="script.module.tulip" name="Tulip Library" version="3.1.2" provider-name="Twilight0">
<requires>
<import addon="xbmc.addon" version="16.1.000"/>
<import addon="script.module.kodi-six" version="0.0.2"/>
<import addon="script.module.certifi" />
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Tulip library with helper functions for Kodi and its forks</summary>
<description lang="en">Tulip library combines the best elements from Lambda's "lamlib" and tknorris's shared modules. Also includes various enhancements, newer and improved functions and Python 3 compatibility, though the latter is largely untested. Can also be as standalone utils</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<source>https://github.com/Twilight0/script.module.tulip</source>
<news>[B]3.1.X[/B]
- Update user agent strings
- Added a few more utilities
- Add offscreen boolean parameter for ListItem
- Bug fixes
[B]3.0.X[/B]
- Utilize certifi for net module
- Add ability to save locally unencrypted m3u8 ts video content
- Update user agent strings
- Change the way kodi version is obtained
- Add limit and username/password auth to net module
- Convert url bytes object to string (python 3 only)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>