kodi.plugin.video.peertube/addon.xml

44 lines
2.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2021-04-30 22:15:33 +02:00
<addon id="plugin.video.peertube" name="PeerTube" version="1.1.0" provider-name="Cyrille B. + Thomas B.">
<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"/>
<import addon="script.module.libtorrent" version="1.2.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="main.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="de_DE">Add-on für PeerTube</summary>
<description lang="de_DE">PeerTube ist eine kostenlose, dezentralisierte und föderierte Alternative zu anderen Videoplattformen (wie YouTube).</description>
<disclaimer lang="de_DE">Dieses Add-on wird nicht vom PeerTube-Team entwickelt.</disclaimer>
<summary lang="en_GB">Add-on for PeerTube</summary>
<description lang="en_GB">PeerTube is a free, decentralized and federated alternative to other video platforms (like YouTube).</description>
<disclaimer lang="en_GB">This add-on is not developed by PeerTube team.</disclaimer>
2021-04-22 23:02:40 +02:00
<summary lang="fr_FR">Extension pour PeerTube</summary>
<description lang="fr_FR">PeerTube est une alternative libre, décentralisée et fédérée aux autres plateformes vidéo (comme YouTube).</description>
2021-04-30 22:15:33 +02:00
<disclaimer lang="fr_FR">Cette extension n'est pas développée par l'équipe de PeerTube.</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<website>https://joinpeertube.org</website>
2021-04-08 23:04:46 +02:00
<source>https://framagit.org/StCyr/plugin.video.peertube</source>
2021-04-30 22:15:33 +02:00
<news>Version 1.1.0 (30th April 2021)
2021-04-30 22:15:33 +02:00
New features:
* Support live stream
* Translate the add-on into French (thank you @DavidHenryThoreau)
* Add the description of each video and each instance in the UI
* Display a notification when the service has started to let the user know the videos can be played (may be useful on slow devices). The notification can be disabled in the settings.
* Display a notification when the download of the video starts
* Add the total number of pages in the "Next page" item
* Rearrange the settings and make some names more explicit
* The video filter from the settings (local/all-local) is now also used when searching videos
</news>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>