Skip to content

Commit

Permalink
[script.simkl] 3.2.2 (#2587)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekleop authored Feb 7, 2024
1 parent 9b05daa commit 8a36df0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion script.simkl/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.simkl"
name="Simkl TV Tracker"
version="3.2.0"
version="3.2.2"
provider-name="David Davó, Simkl">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
Expand All @@ -25,6 +25,8 @@
</assets>
<language>en</language>
<news>
v3.2.2 (05-01-24)
- fixed new pything isAlive fn
v3.2 (22-09-22)
- right click, mark as watched/unwatched added
v3.1 (21-07-13)
Expand Down
3 changes: 3 additions & 0 deletions script.simkl/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v 3.2.1
- is_live fixed

v 3.0
- Kodi v19+ support

Expand Down
2 changes: 1 addition & 1 deletion script.simkl/resources/lib/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def _stop_tracker(self):
if hasattr(self, '_playback_lock'): self._playback_lock.clear()
if not hasattr(self, '_tracker'): return
if self._tracker is None: return
if self._tracker.isAlive(): self._tracker.join()
if self._tracker.is_alive(): self._tracker.join()
self._tracker = None

def _thread_tracker(self):
Expand Down

0 comments on commit 8a36df0

Please sign in to comment.