Skip to content

Commit

Permalink
v3.0.3- Minor bugfix for http/s sources (note to self - double check …
Browse files Browse the repository at this point in the history
…user submitted code!!)
  • Loading branch information
bossanova808 committed Nov 9, 2021
1 parent 84b4b2f commit b2b6be3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
11 changes: 3 additions & 8 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.2" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
<addon id="script.xbmc.unpausejumpback" name="Unpause Jumpback" version="3.0.3" provider-name="bossanova808,Memphiz,Lucleonhart,schumi2004,dkadioglu">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
Expand All @@ -24,13 +24,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.2
[fix] "XBMC is not playing any media file" errors
v3.0.1
[fix] minor bugfix for http/s sources (plugins)
[fix] Update for changes to Kodi Matrix logging functions
v3.0.0
[new] Update for Kodi Matrix / Python 3, make unpause on resume vs. pause a choice, bugfixes and tidy up.
<news>v3.0.3
- Minor bugfix for http/s sources
</news>
<assets>
<icon>icon.png</icon>
Expand Down
23 changes: 13 additions & 10 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,33 +1,36 @@
3.0.2
v3.0.3
- Minor bugfix for http/s sources

v3.0.2
- fix "Kodi is not playing any media file" when skipping beyond end of file

3.0.1
v3.0.1
- Minor bugfix with http/s sources (plugins)

3.0.0
v3.0.0
- Update for Matrix / Python3 (work borrowed from https://github.com/dkadioglu/script.xbmc.unpausejumpback)
- Add setting for jump back occurring at time of un-pause vs. at time of pause
- Bug fixes & tidy-ups

2.3.3
v2.3.3
- fixed format of authors tag in addon.xml
- removed the XBMC from the name

2.3.2
v2.3.2
- jump back "in the background" when paused (i.e. while still paused instead of upon resuming)

2.3.1
v2.3.1
- revert jumpback after playback started due to XBMC video timer bug - can not add this until xbmc properly reports the playback position immediately on playback start

2.3.0
v2.3.0
- add jumpback after playback started from non zero starting time (needs gotham for working properly!)

2.2.0
v2.2.0
- add exclude settings
- add jumpback/forward after fwd or rwd based on the fwd/rwd speed (can be adjusted for each speed separately for fwd and rwd).

2.1.0
v2.1.0
- add setting for specifying the minimum pause time before jumping back

2.0.0
v2.0.0
- initial commit for frodo
2 changes: 1 addition & 1 deletion resources/lib/unpause_jumpback.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def is_excluded(self, full_path):
log("Video is playing via Live TV, which is set as an excluded location.")
return True

if (full_path.find("http://") > -1) or (full_path.find("https://") > -1) and self.exclude_http:
if ((full_path.find("http://") > -1) or (full_path.find("https://") > -1)) and self.exclude_http:
log("Video is playing via HTTP source, which is set as an excluded location.")
return True

Expand Down

0 comments on commit b2b6be3

Please sign in to comment.