Skip to content

Commit

Permalink
[script.xbmc.unpausejumpback] 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bossanova808 committed Oct 16, 2024
1 parent afe0a48 commit ad11040
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 230 deletions.
7 changes: 4 additions & 3 deletions script.xbmc.unpausejumpback/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.3" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.4" 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"/>
</requires>
<extension point="xbmc.service" library="default.py"></extension>
<extension point="xbmc.addon.metadata">
Expand All @@ -24,8 +25,8 @@
<source>https://github.com/bossanova808/script.xbmc.unpausejumpback/</source>
<forum>https://forum.kodi.tv/showthread.php?tid=355778</forum>
<email>bossonav808@gmail.com</email>
<news>v3.0.3
- Minor bugfix for http/s sources
<news>v3.0.4
- Remove old common code, use new module
</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.4
- Remove old common code, use new module

v3.0.3
- Minor bugfix for http/s sources

Expand Down
6 changes: 3 additions & 3 deletions script.xbmc.unpausejumpback/default.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

from bossanova808 import exception_logger
from resources.lib import unpause_jumpback

if __name__ == "__main__":
unpause_jumpback.run()
with exception_logger.log_exception():
unpause_jumpback.run()
188 changes: 0 additions & 188 deletions script.xbmc.unpausejumpback/resources/lib/common.py

This file was deleted.

Loading

0 comments on commit ad11040

Please sign in to comment.