Skip to content

Commit 1f28420

Browse files
committed
Matrix SF Version 2.2.5
1 parent 8a6f49e commit 1f28420

3 files changed

Lines changed: 9 additions & 13 deletions

File tree

addon.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="plugin.program.super.favourites" name="Super Favourites" version="2.2.4" provider-name="jmooremcc, spoyser">
2+
<addon id="plugin.program.super.favourites" name="Super Favourites" version="2.2.5" provider-name="jmooremcc, spoyser">
33
<requires>
44
<import addon="xbmc.python" version="3.0.0" />
55
<import addon="script.module.metahandler" optional="true" />
@@ -34,6 +34,9 @@
3434
</assets>
3535

3636
<news>
37+
2.2.5 February 2022
38+
- Generic Fix for activateWindowCommand
39+
3740
2.2.4 February 2022
3841
- Fix URL Playback
3942

changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[B][COLOR chartreuse]This file contains ALOT of useful information regarding the functionality of Super Favourites[CR]
22
PLEASE READ IT!![/COLOR][/B]
33

4+
[COLOR chartreuse]2.2.5 February 2022[/COLOR]
5+
- Generic Fix for activateWindowCommand
6+
47
[COLOR chartreuse]2.2.4 February 2022[/COLOR]
58
- Fix URL Playback
69

player.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -165,18 +165,8 @@ def activateWindowCommand(cmd):
165165
if plugin and not pluginArgs is None:
166166
utils.log("Plugin With Args Called...")
167167
try:
168-
if "2Fcategories" in cmd:
169-
utils.log("xbmc.executebuiltin(cmd)")
170-
xbmc.executebuiltin(cmd)
171-
elif 'mode=' in plugin.lower():
172-
utils.log("xbmc.executebuiltin(cmd)")
173-
xbmc.executebuiltin(cmd)
174-
elif 'action=' in plugin.lower():
175-
utils.log("xbmc.executebuiltin(cmd)")
176-
xbmc.executebuiltin(cmd)
177-
else:
178-
utils.log("xbmc.executebuiltin('RunPlugin(%s)' % plugin)")
179-
xbmc.executebuiltin('RunPlugin(%s)' % plugin)
168+
utils.log("xbmc.executebuiltin(cmd)")
169+
xbmc.executebuiltin(cmd)
180170
except Exception as e:
181171
utils.log(str(e))
182172

0 commit comments

Comments
 (0)