Skip to content

Commit

Permalink
v.0.5.7h
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunatixz committed Jan 4, 2025
1 parent ec3ec83 commit 5bb015d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion addons.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
<addon id="plugin.video.pseudotv.live" version="0.5.7g" name="PseudoTV Live" provider-name="Lunatixz">
<addon id="plugin.video.pseudotv.live" version="0.5.7h" name="PseudoTV Live" provider-name="Lunatixz">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="pvr.iptvsimple" version="21.8.0"/>
Expand Down
2 changes: 1 addition & 1 deletion addons.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c1bd007f980f53f6825629ca0339c158
23c80fd2d9399033bbe4c23fba5ccf04
2 changes: 1 addition & 1 deletion plugin.video.pseudotv.live/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.pseudotv.live" version="0.5.7g" name="PseudoTV Live" provider-name="Lunatixz">
<addon id="plugin.video.pseudotv.live" version="0.5.7h" name="PseudoTV Live" provider-name="Lunatixz">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="pvr.iptvsimple" version="21.8.0"/>
Expand Down
6 changes: 3 additions & 3 deletions plugin.video.pseudotv.live/resources/lib/overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,9 @@ def _getWait(state, remaining):
self.log('toggleBug, logo = %s, setColorDiffuse = %s, POSXY (%s,%s))'%(logo, self.channelBugColor, self.channelBugX, self.channelBugY))

elif not state and self._hasControl(self.channelBug):
self._cancelBug() #cancel any leftover threads (overkill)
self.channelBug.setImage(' ')
self._setVisible(self.channelBug,False)
self._cancelBug() #cancel any leftover threads (overkill)

self.log('toggleBug, state %s wait %s to new state %s'%(state,wait,nstate))
self._bugThread = Timer(wait, self.toggleBug, [nstate])
Expand Down Expand Up @@ -466,7 +466,6 @@ def __getOnNextInterval(interval, remaining, displayTime):
timerit(playSFX)(0.1,[BING_WAV])

elif not state:
self._cancelOnNext() #cancel any leftover threads (overkill)
if self.onNextMode in [1,2]:
if self._hasControl(self.onNext_Text):
self.onNext_Text.reset()
Expand All @@ -478,7 +477,8 @@ def __getOnNextInterval(interval, remaining, displayTime):
if self._hasControl(self.onNext_Artwork):
self.onNext_Artwork.setImage(' ')
self._setVisible(self.onNext_Artwork,False)

self._cancelOnNext() #cancel any leftover threads (overkill)

self.log('toggleOnNext, state %s wait %s to new state %s'%(state,wait,nstate))
self._onNextThread = Timer(wait, self.toggleOnNext, [nstate])
self._onNextThread.name = "onNextThread"
Expand Down
Binary file not shown.

0 comments on commit 5bb015d

Please sign in to comment.