forked from bossanova808/script.service.playbackresumer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon.xml
More file actions
32 lines (30 loc) · 1.62 KB
/
addon.xml
File metadata and controls
32 lines (30 loc) · 1.62 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.service.playbackresumer" name="Kodi Playback Resumer" version="2.0.3" provider-name="bossanova808, bradvido88">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.service" library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Periodically sets the resume point of videos and can automatically resume last played video if Kodi crashes.</summary>
<description lang="en_GB">
Runs as a service and will periodically update the resume point while videos are playing, so you can re-start from where you were in the event of a crash. It can also automatically resume a video if Kodi was shutdown while playing it. See setting to configure how often the resume point is set, and whether to automatically resume.
</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<website>https://github.com/bossanova808/script.service.playbackresumer</website>
<source>https://github.com/bossanova808/script.service.playbackresumer</source>
<forum>https://forum.kodi.tv/showthread.php?tid=355383</forum>
<email>bossanova808@gmail.com</email>
<news>v2.0.3
- Bug fix for playing non-library videos
- Use common code, better logging
v2.0.2
- Complete re-write into more modular, modern Python 3
- Add support for advancedsettings ignoresecondsatstart and ignorepercentatend
- Handle player seeking past end of file more gracefully
</news>
<assets>
<icon>icon.png</icon>
</assets>
</extension>
</addon>