-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
43 lines (40 loc) · 2.31 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.switchback" name="Switchback" version="1.0.0" provider-name="bossanova808">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.bossanova808" version="1.0.0"/>
<import addon="script.module.infotagger" version="0.0.7" />
</requires>
<!-- A service entrypoint to keep track of playbacks -->
<extension point="xbmc.service" library="service.py" />
<!-- ...and a plugin entrypoint to handle presenting and playing media from the switchback playlist -->
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>video audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Utility for fast switching between recently played media.</summary>
<description lang="en_GB">
Kodi utility for fast switching between recently played media.
Keeps a list of recently played media - supports Kodi library episodes, movies, PVR channels, songs and non-library files. Does not (yet?) support add-ons or PVR recordings.
The primary intended use is to make for super easy Switchback between two in progress videos (by binding a remote key to Switchback, see Wiki/Forum thread for info).
Consider this scenario:
- You are watching 'video A' with your partner. You are interrupted and your partner needs to tend to the kids/howl at the moon.
- You navigate to 'video B' and watch some of that.
- Your partner comes back.
- You hit your one button 'Switchback' and 'video A' starts playing again, no need for tedious navigation etc.
- You are interrupted again - the moon is so very bright tonight - hit your 'Switchback' to resume 'video B' immediately, again with one magic button and no tedious navigation.
</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<website>https://github.com/bossanova808/plugin.switchback/</website>
<source>https://github.com/bossanova808/plugin.switchback/</source>
<forum>https://forum.kodi.tv/showthread.php?tid=379330</forum>
<email>bossanova808@gmail.com</email>
<news>
v1.0.0 Initial release
</news>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>