-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon.xml
More file actions
25 lines (21 loc) · 787 Bytes
/
addon.xml
File metadata and controls
25 lines (21 loc) · 787 Bytes
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.auto_remove_empty_shows"
name="Remove Empty TV Shows"
version="1.0.0"
provider-name="ankurmittal"
type="script">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<assets>
<icon>icon.png</icon>
</assets>
<extension point="xbmc.addon.metadata">
<summary>Removes TV shows with zero episodes</summary>
<description>This add-on removes all TV shows from your Kodi library that have no episodes left.</description>
<platform>all</platform>
</extension>
</addon>