forked from patrick-klein/script.library.integration.tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
70 lines (62 loc) · 2.83 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
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.library.integration.tool" name="Library Integration Tool" version="0.4.1" provider-name="patrick-klein">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="xbmc.addon" version="12.0.0"/>
<import addon="script.module.beautifulsoup4" version="1.0.0"/>
<import addon="script.module.simplejson" version="1.0.0"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="context.py">
<label>32000</label>
<visible>String.StartsWith(ListItem.Path,plugin) + !Container.Content(addons)</visible>
</item>
<item library="context2.py">
<label>32001</label>
<visible>String.StartsWith(ListItem.Path,plugin) + !Container.Content(addons)</visible>
</item>
</menu>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">Allows video add-on content to be integrated into your library.</summary>
<description lang="en">
Provides options in the context menu that lets you add any movie or TV show from video plugins into your library. These videos will show up in your library and play just like any other local file.
You can also sync all of the videos from plugins with a single click, so new videos are automatically available to your library, and old videos are removed.
This tool gives you complete control over any custom metadata you want to use for your videos added from plugins.
See the README for a full tutorial.
</description>
<disclaimer lang="en">Must run addon after version updates</disclaimer>
<language></language>
<platform>all</platform>
<license>GPL v2.0</license>
<forum>https://forum.kodi.tv/showthread.php?tid=327514</forum>
<website></website>
<source>https://github.com/patrick-klein/script.library.integration.tool</source>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/media/screenshot-01.jpg</screenshot>
<screenshot>resources/media/screenshot-02.jpg</screenshot>
<screenshot>resources/media/screenshot-03.jpg</screenshot>
</assets>
<news>v0.4.1 (2018-8-12)
- Fix xml parsing issue
v0.4.0 (2018-8-12)
- Allow directories to be loaded recursively
- Added recursion limit in settings
- Updating synced directories moved to background
- Added percentage to all progress windows
- Option to update only movies or tv shows
- Option to remove unused movie metadata stubs
- Option to read metadata to get episode id
- Option to skip staging for items
- Use addon folder as default managed folder
- Added setting to use custom metadata folder
- Cleaned and refactored project
</news>
</extension>
</addon>