diff --git a/addon.xml b/addon.xml index 4de4d59..7e0f8f1 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + @@ -24,13 +24,8 @@ https://github.com/bossanova808/script.xbmc.unpausejumpback/ https://forum.kodi.tv/showthread.php?tid=355778 bossonav808@gmail.com - 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. + v3.0.3 + - Minor bugfix for http/s sources icon.png diff --git a/changelog.txt b/changelog.txt index d206906..fdaa2dd 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/resources/lib/unpause_jumpback.py b/resources/lib/unpause_jumpback.py index 5a4eb44..aa16758 100644 --- a/resources/lib/unpause_jumpback.py +++ b/resources/lib/unpause_jumpback.py @@ -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