forked from romanvm/plugin.video.example
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
26 lines (26 loc) · 1021 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.pt"
version="0.1.0"
name="Next Gen Peertube Addon"
provider-name="Haui111">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.addon.signals" version="0.0.6"/>
<import addon="script.module.requests" version="2.25.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="main.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Next Gen Peertube Addon</summary>
<description lang="en_GB">In lieu of a working peertube addon, I've decided to make a new one.</description>
<disclaimer lang="en_GB">Feel free to build and improve on this addon.</disclaimer>
<license>GPL-3.0-only</license>
<source>https://github.com/Haui1112/plugin.video.pt</source>
<assets>
<icon>resources/images/icon.png</icon>
<fanart>resources/images/fanart.jpg</fanart>
</assets>
<news>Finally watch peertube on kodi again!</news>
</extension>
</addon>