Skip to content

Commit 018a31f

Browse files
authored
[script.xbmc.unpausejumpback] 3.0.6 (#2769)
1 parent ffa873b commit 018a31f

File tree

4 files changed

+280
-129
lines changed

4 files changed

+280
-129
lines changed

script.xbmc.unpausejumpback/addon.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.5" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
2+
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.6" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
33
<requires>
44
<import addon="xbmc.python" version="3.0.0"/>
5-
<import addon="script.module.bossanova808" version="1.0.0"/>
5+
<import addon="script.module.bossanova808" version="1.0.2"/>
66
</requires>
77
<extension point="xbmc.service" library="default.py"></extension>
88
<extension point="xbmc.addon.metadata">
@@ -25,8 +25,8 @@
2525
<source>https://github.com/bossanova808/script.xbmc.unpausejumpback/</source>
2626
<forum>https://forum.kodi.tv/showthread.php?tid=355778</forum>
2727
<email>[email protected]</email>
28-
<news>v3.0.5
29-
- fix for more possibles instances of "Kodi is not playing any media file" when skipping beyond end of file
28+
<news>v3.0.6
29+
- Minor updates for Piers (use new module Logger functions)
3030
</news>
3131
<assets>
3232
<icon>icon.png</icon>

script.xbmc.unpausejumpback/changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v3.0.6
2+
- Minor updates for Piers (use new module Logger functions)
3+
14
v3.0.5
25
- fix for more possibles instances of "Kodi is not playing any media file" when skipping beyond end of file
36

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1+
"""
2+
Entry point for the Unpause Jumpback Kodi Add-on.
3+
4+
This script serves as the main entry point when the add-on is executed by Kodi.
5+
It wraps the main functionality with exception logging to ensure any errors
6+
are properly captured and logged for debugging purposes.
7+
"""
8+
19
from bossanova808 import exception_logger
210
from resources.lib import unpause_jumpback
311

412
if __name__ == "__main__":
513
with exception_logger.log_exception():
6-
unpause_jumpback.run()
14+
unpause_jumpback.run()

0 commit comments

Comments
 (0)