Skip to content

Commit 6a0ce15

Browse files
committed
Matrix SF Version 2.2.3
1 parent cec1b73 commit 6a0ce15

4 files changed

Lines changed: 14 additions & 6 deletions

File tree

addon.xml

Lines changed: 5 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.2" provider-name="jmooremcc, spoyser">
2+
<addon id="plugin.program.super.favourites" name="Super Favourites" version="2.2.3" 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,10 @@
3434
</assets>
3535

3636
<news>
37+
2.2.3 February 2022
38+
- Fix folder lock
39+
- Fix name colorization
40+
3741
2.2.1 February 2022
3842
- Minor Bug Fix
3943

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
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.3 February 2022[/COLOR]
5+
- Fix folder lock
6+
- Fix name colorization
7+
48
[COLOR chartreuse]2.2.1 February 2022[/COLOR]
59
- Minor Bug Fix
610

default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -928,8 +928,8 @@ def getColour():
928928

929929

930930
#option = menus.selectMenu(GETTEXT(30086), menu)
931-
932-
if option < 0:
931+
932+
if type(option)== int and option < 0:
933933
return None
934934

935935
return option

utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def outputDict(params, title=None):
168168

169169
def DialogOK(line1, line2='', line3=''):
170170
d = xbmcgui.Dialog()
171-
d.ok(TITLE + ' - ' + VERSION, line1, line2 , line3)
171+
d.ok(TITLE + ' - ' + VERSION, line1)
172172

173173

174174
def DialogYesNo(line1, line2='', line3='', noLabel=None, yesLabel=None):
@@ -192,13 +192,13 @@ def generateMD5(text):
192192

193193
try:
194194
import hashlib
195-
return hashlib.md5(text.lower()).hexdigest()
195+
return hashlib.md5(text.lower().encode()).hexdigest()
196196
except:
197197
pass
198198

199199
try:
200200
import md5
201-
return md5.new(text).hexdigest()
201+
return md5.new(text.encode()).hexdigest()
202202
except:
203203
pass
204204

0 commit comments

Comments
 (0)