-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaddon.xml
31 lines (31 loc) · 1.5 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.media-ccc-de" name="media.ccc.de" version="0.3.0" provider-name="Tobias Gruetzmacher">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.22.0"/>
<import addon="script.module.routing" version="0.2.3"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Videos of Chaos Computer Club events.</summary>
<summary lang="de_DE">Videos von Chaos Computer Club Veranstaltungen.</summary>
<description lang="en_GB">This addon provides access to videos published on https://media.ccc.de/ (mostly lecture recordings of CCC events) </description>
<description lang="de_DE">Dieses Add-On ermöglicht den Zugriff auf Videos, die auf https://media.ccc.de/ veröffentlicht wurden (größtenteils Vortragsmitschnitte von CCC-Veranstaltungen)</description>
<news>v0.3.0 (2022-12-27)
- Add talk title to live streams (#35)
- Show Re-Live videos (#34)
- Test against modern Python versions</news>
<language>de en</language>
<platform>all</platform>
<license>MIT</license>
<website>https://media.ccc.de/</website>
<email>[email protected]</email>
<source>https://github.com/voc/plugin.video.media-ccc-de</source>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>