forked from pieh/pieh-xbmc-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddons.xml
88 lines (84 loc) · 3 KB
/
addons.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
<addon id="script.ExtraMusicInfo"
name="Extra Music Info"
version="0.0.2"
provider-name="pieh">
<requires>
<import addon="xbmc.python" version="1.0"/>
<import addon="xbmc.gui" version="2.11"/>
</requires>
<extension point="xbmc.python.library"
library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="script.ImageCacher"
name="Image Cacher"
version="0.0.1"
provider-name="pieh">
<requires>
<import addon="xbmc.python" version="1.0"/>
<import addon="xbmc.gui" version="2.11"/>
</requires>
<extension point="xbmc.python.library"
library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en"></summary>
<description lang="en"></description>
<platform>all</platform>
</extension>
</addon>
<addon id="script.module.rssengine" name="RSS Engine Addon"
version="1.0.4"
provider-name="pieh">
<requires>
<import addon="xbmc.python" version="1.0"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
</extension>
</addon>
<addon id="script.rssclient"
name="RSS Client Background"
version="1.0.4"
provider-name="pieh">
<requires>
<import addon="xbmc.python" version="1.0"/>
<import addon="xbmc.gui" version="2.11"/>
<import addon="script.rss.editor" version="1.6.1"/>
<import addon="plugin.video.youtube" version="2.0.3"/>
<import addon="script.module.rssengine" version="1.0.1" />
</requires>
<extension point="xbmc.python.library"
library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">RSS Client Background</summary>
<description lang="en">For skinners to attach RSS feeds into the skins. Read more in howto.md attached to addon or on https://github.com/pieh/pieh-xbmc-addons/blob/master/script.rssclient/howto.md</description>
<platform>all</platform>
</extension>
</addon>
<addon id="script.rssclient-standalone"
name="RSS Client"
version="1.0.5"
provider-name="pieh">
<requires>
<import addon="xbmc.python" version="1.0"/>
<import addon="xbmc.gui" version="2.11"/>
<import addon="script.rss.editor" version="1.6.1"/>
<import addon="plugin.video.youtube" version="2.0.3"/>
<import addon="script.module.rssengine" version="1.0.2" />
</requires>
<extension point="xbmc.python.script"
library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en">RSS Client</summary>
<description lang="en">Script allows to navigate through RSS feeds and read them. Able of displaying attached media: single images, multiple images (as slideshow) and videos.</description>
<platform>all</platform>
</extension>
</addon>
</addons>