Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions script.xbmc.unpausejumpback/addon.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.5" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.6" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.bossanova808" version="1.0.0"/>
<import addon="script.module.bossanova808" version="1.0.2"/>
</requires>
<extension point="xbmc.service" library="default.py"></extension>
<extension point="xbmc.addon.metadata">
Expand All @@ -25,8 +25,8 @@
<source>https://github.com/bossanova808/script.xbmc.unpausejumpback/</source>
<forum>https://forum.kodi.tv/showthread.php?tid=355778</forum>
<email>[email protected]</email>
<news>v3.0.5
- fix for more possibles instances of "Kodi is not playing any media file" when skipping beyond end of file
<news>v3.0.6
- Minor updates for Piers (use new module Logger functions)
</news>
<assets>
<icon>icon.png</icon>
Expand Down
3 changes: 3 additions & 0 deletions script.xbmc.unpausejumpback/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v3.0.6
- Minor updates for Piers (use new module Logger functions)

v3.0.5
- fix for more possibles instances of "Kodi is not playing any media file" when skipping beyond end of file

Expand Down
10 changes: 9 additions & 1 deletion script.xbmc.unpausejumpback/default.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
"""
Entry point for the Unpause Jumpback Kodi Add-on.

This script serves as the main entry point when the add-on is executed by Kodi.
It wraps the main functionality with exception logging to ensure any errors
are properly captured and logged for debugging purposes.
"""

from bossanova808 import exception_logger
from resources.lib import unpause_jumpback

if __name__ == "__main__":
with exception_logger.log_exception():
unpause_jumpback.run()
unpause_jumpback.run()
Loading