forked from b-jesch/script.module.pvr.artwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
32 lines (32 loc) · 1.79 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
32
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.pvr.artwork" name="PVR Artwork Module" version="2.1.2" provider-name="PvD">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.simplecache" version="2.0.2"/>
<import addon="script.module.requests" version="2.22.0+matrix" />
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.python.script" library="service.py" />
<extension point="xbmc.service" library="main.py" />
<extension point="kodi.context.item" library="addevent.py">
<menu id="kodi.core.main">
<item library="service.py" args="call_contextmenu">
<label>32065</label>
<visible>System.HasAddon(script.module.pvr.artwork) + Skin.HasSetting(Skin_enablePvrArtwork) + [Window.IsActive(MyPVRChannels.xml) | Window.IsActive(MyPVRGuide.xml) | Window.IsActive(MyPVRRecordings.xml) | Window.IsActive(MyPVRTimers.xml) | Window.IsActive(MyPVRSearch.xml)]</visible>
</item>
</menu>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Fetch PVR artwork from folders, libraries and TMDB</summary>
<description lang="en">The PVR artwork module for Kodi provides artwork for PVR related content by scraping (and caching) this information from local folders, libraries and TMDB. This module uses the TMDb API but is not certified by TMDb.</description>
<news/>
<license>GNU GPL Version 3, 29 June 2007</license>
<forum/>
<source>https://github.com/b-jesch/script.module.pvr.artwork</source>
<platform>all</platform>
<assets>
<icon>resources/icon.png</icon>
<fanart/>
</assets>
</extension>
</addon>