-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathaddon.xml
19 lines (19 loc) · 943 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.simplecache" name="Simple Cache Module" version="2.0.0" provider-name="sualfred,marcelveldt">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Provides a simple file- and memory based cache for Kodi addons</summary>
<description lang="en_GB">Provides a simple file- and memory based cache for Kodi addons</description>
<news>v2.0.0 Py3 only version for Matrix. Py2 compatibility dropped.</news>
<platform>all</platform>
<license>Apache 2.0</license>
<forum/>
<source>https://github.com/kodi-community-addons/script.module.simplecache</source>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>