kodi.plugin.video.peertube/addon.xml

63 lines
2.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.peertube" name="PeerTube" version="0.3.1.1" provider-name="Cyrille Bollu">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.addon.signals" version="0.0.3"/>
<import addon="script.module.requests" version="2.22.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="peertube.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Plugin for PeerTube</summary>
<description lang="en_GB">PeerTube is a federated open source alternative to YouTube</description>
<disclaimer lang="en_GB"></disclaimer>
<language></language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<forum></forum>
<website>https://joinpeertube.org</website>
<email>cyrille.bollu2@gmail.com</email>
<source>https://github.com/StCyr/plugin.video.peertube</source>
<news>
0.3.1.1
Add local videos only browsing
2018-07-31 22:49:22 +02:00
0.3.1
Fixed some bugs
The 'change current instance" functionality currently doesn't work because
the addon exits after every screen displayed. I must persist this value on
disk.
2018-07-31 16:52:45 +02:00
0.3.0
Implemented the 'Browse instances' functionality
2018-07-31 15:28:42 +02:00
0.2.2
2018-07-31 16:52:45 +02:00
Implemented the 'video sort method' functionality
2018-07-30 21:06:50 +02:00
0.2.1
Fixed some bugs
2018-07-30 21:06:50 +02:00
Added a 'video sort method' setting (functionality not implemented yet though)
0.2.0
Implemented 'browse selected instance' functionality
2018-07-30 12:02:23 +02:00
Implemented 'search videos on selected instance' functionality
0.1.1
4th PoC.
First functional PoC with background download
2018-07-27 10:58:27 +02:00
0.1.0
Third PoC (download in background should work. Needs testing though)
Downloader uses torrent files exclusively; magnet links don't work
2018-07-27 07:40:45 +02:00
0.0.3
Second PoC (download in background is almost there)
0.0.2
First PoC (download not in background)
0.0.1
Hello world
</news>
<assets>
2018-07-26 21:46:03 +02:00
<icon>icon.png</icon>
<fanart></fanart>
<banner></banner>
<clearlogo></clearlogo>
<screenshot></screenshot>
</assets>
</extension>
</addon>