mirror of
https://github.com/robweber/xbmcbackup.git
synced 2026-01-03 14:15:12 +01:00
Compare commits
3 Commits
matrix-1.7
...
jarvis-1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
67cd5ae069 | ||
|
|
46257f1626 | ||
|
|
36f094a258 |
@@ -1,5 +1,7 @@
|
||||
# Backup Addon
|
||||
|
||||
__Kodi Version Compatibility:__ Kodi 16.x (Jarvis) and greater
|
||||
|
||||
## About
|
||||
|
||||
I've had to recover my database, thumbnails, and source configuration enough times that I just wanted a quick easy way to back them up. That is what this addon is meant to do.
|
||||
|
||||
@@ -87,10 +87,6 @@
|
||||
<license>The MIT License</license>
|
||||
<forum>https://forum.kodi.tv/showthread.php?tid=129499</forum>
|
||||
<source>https://github.com/robweber/xbmcbackup</source>
|
||||
<email></email>
|
||||
<assets>
|
||||
<icon>resources/media/icon.png</icon>
|
||||
</assets>
|
||||
<news>Version 1.1.4
|
||||
- added file chunk support for dropbox uploads
|
||||
- fixed settings duplicate ids, thanks aster-anto
|
||||
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
@@ -18,7 +18,7 @@ def log(message,loglevel=xbmc.LOGNOTICE):
|
||||
xbmc.log(encode(__addon_id__ + "-" + __Addon.getAddonInfo('version') + ": " + message),level=loglevel)
|
||||
|
||||
def showNotification(message):
|
||||
xbmcgui.Dialog().notification(encode(getString(30010)),encode(message),time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/resources/media/icon.png"))
|
||||
xbmcgui.Dialog().notification(encode(getString(30010)),encode(message),time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/icon.png"))
|
||||
|
||||
def getSetting(name):
|
||||
return __Addon.getSetting(name)
|
||||
|
||||
Reference in New Issue
Block a user