Skip to content

Commit 1b1862f

Browse files
committed
[script.module.xbmcswift2] 13.0.4 - Add container.refresh
1 parent 8d02da4 commit 1b1862f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

addon.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<addon id="script.module.xbmcswift2" name="xbmcswift2" provider-name="Jonathan Beluch (jbel), enen92" version="13.0.3">
1+
<addon id="script.module.xbmcswift2" name="xbmcswift2" provider-name="Jonathan Beluch (jbel), enen92" version="13.0.4">
22
<requires>
33
<import addon="xbmc.python" version="2.14.0" />
44
</requires>

changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
CHANGES
22
=======
3+
Version 13.0.4 (3/10/2021)
4+
-------------
5+
- Add plugin.container_refresh (builtin Container.Refresh)
6+
37
Version 13.0.3 (15/12/2020)
48
- Remove offscreen support (only supported in leia++)
59

lib/xbmcswift2/plugin.py

+4
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,7 @@ def run(self, test=False):
349349
storage.close()
350350

351351
return items
352+
353+
354+
def refresh_container(self):
355+
xbmc.executebuiltin('Container.Refresh')

0 commit comments

Comments
 (0)