Skip to content

Commit

Permalink
v.0.5.3a
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunatixz committed Aug 19, 2024
1 parent 1427600 commit 5b9655c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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.3" name="PseudoTV Live" provider-name="Lunatixz">
<addon id="plugin.video.pseudotv.live" version="0.5.3a" 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 @@
62cb025d23213a6ef418fbe729cf0f84
d45de5df85efe8fbebeda04fa8a90ddc
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.3" name="PseudoTV Live" provider-name="Lunatixz">
<addon id="plugin.video.pseudotv.live" version="0.5.3a" 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
Original file line number Diff line number Diff line change
Expand Up @@ -1661,5 +1661,5 @@ msgid "Force Autotune to run."
msgstr ""

msgctxt "#33182"
msgid "When [COLOR=orange]Idle[/COLOR] click to begin beacon; Within 15mins start another Kodi instance w/PseudoTV Live installed\nThe two instances will pair, enabled in "Select Server" list."
msgid "When [COLOR=orange]Idle[/COLOR] click to begin beacon; Within 15mins start another Kodi instance w/PseudoTV Live installed\nThe two instances will pair, enabled in Select Server list."
msgstr ""
6 changes: 3 additions & 3 deletions plugin.video.pseudotv.live/resources/lib/multiroom.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def setDiscovery(self, servers={}):
def chkPVRservers(self):
changed = False
servers = self.getDiscovery()
for server in servers.values():
for server in list(servers.values()):
server['online'] = True if getURL('http://%s/%s'%(server.get('host'),M3UFLE)) else False
self.log('chkPVRservers, %s online = %s'%(server.get('name'),server['online']))
if SETTINGS.hasPVRInstance(server.get('name')):
Expand Down Expand Up @@ -163,7 +163,7 @@ def _build(payload):

with BUILTIN.busy_dialog():
servers = self.getDiscovery()
lizlst = poolit(_build)(servers.values())
lizlst = poolit(_build)(list(servers.values()))
selects = DIALOG.selectDialog(lizlst,LANGUAGE(32183))
if not selects is None:
[servers.pop(liz.getLabel()) for idx, liz in enumerate(lizlst) if idx in selects]
Expand All @@ -178,7 +178,7 @@ def _build(payload):

with BUILTIN.busy_dialog():
servers = self.getDiscovery()
lizlst = poolit(_build)(servers.values())
lizlst = poolit(_build)(list(servers.values()))
selects = DIALOG.selectDialog(lizlst,LANGUAGE(30130),preselect=[idx for idx, listitem in enumerate(lizlst) if loadJSON(listitem.getPath()).get('enabled',False)])
if not selects is None:
for idx, liz in enumerate(lizlst):
Expand Down
2 changes: 1 addition & 1 deletion plugin.video.pseudotv.live/resources/lib/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def setUserPath(self, old, new, overwrite=False):
fileItems = self.jsonRPC.walkListDirectory(old, depth=-1, appendPath=True)

cnt = 0
for dir, files in fileItems.items():
for dir, files in list(fileItems.items()):
ndir = dir.replace(old,new)
dia = DIALOG.progressDialog(int(((cnt)*100)//len(list(fileItems.keys()))), dia, message='%s\n%s'%(LANGUAGE(32051),ndir))
if ndir and not FileAccess.exists(os.path.join(ndir,'')):
Expand Down
Binary file not shown.

0 comments on commit 5b9655c

Please sign in to comment.