-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaddon.xml
32 lines (32 loc) · 1.88 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
<?xml version="1.0" encoding="UTF-8"?>
<addon id="script.libreelec.devupdater"
name="LibreELEC Dev Updater"
version="5.1.2"
provider-name="Leopold">
<requires>
<import addon="xbmc.python" version="2.13.0"/>
<import addon="os.libreelec.tv" version="7.0" optional="false"/>
<import addon="script.module.beautifulsoup4" version="4.3.2" optional="false"/>
<import addon="script.module.html5lib" version="0.999.0" optional="false"/>
<import addon="script.module.requests" version="2.3.0" optional="false"/>
<import addon="script.module.html2text" version="2015.6.21" optional="false"/>
<import addon="script.xbmcbackup" version="0.5.2" optional="false"/>
</requires>
<extension point="xbmc.python.script" library="default.py"/>
<extension point="xbmc.service" library="service.py" start="startup"/>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary>LibreELEC development build updater</summary>
<description>This add-on downloads LibreELEC update files ready to be installed on the next reboot. Select a predefined source or a custom source defined in the add-on settings, then choose from a list of available builds. Some sources provide full build details which can be viewed by pressing 'Info'.</description>
<disclaimer>Development builds often have major bugs and crashes can happen quite often. Always backup your userdata folder when installing development builds.</disclaimer>
<website>http://devupdater.leopold.me.uk</website>
<source>http://github.com/LS80/script.libreelec.devupdater.git</source>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<assets>
<icon>icon.png</icon>
<screenshot>screenshots/builds.png</screenshot>
<screenshot>screenshots/build_details.png</screenshot>
</assets>
<news>Fixed Milhouse build information</news>
</extension>
</addon>