-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
24 lines (24 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.lastviewed" name="Last viewed" version="0.0.2" provider-name="Kruemel">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup">
<platform>all</platform>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="de">Zuletzt gesehene</summary>
<summary lang="en">last viewed</summary>
<language>de</language>
<description lang="de">Liste mit den zuletzt gesehenen Videos</description>
<description lang="en">List with the last viewed videos</description>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/nix</source>
<email>keine</email>
<website>keine</website>
</extension>
</addon>