From 46257f162680cd07a4105fa77ec379a1f71b3fc3 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Tue, 20 Aug 2019 09:41:30 -0500 Subject: [PATCH] jarvis icon.png needs to be in root directory --- addon.xml | 4 ---- resources/media/icon.png => icon.png | Bin resources/lib/utils.py | 2 +- 3 files changed, 1 insertion(+), 5 deletions(-) rename resources/media/icon.png => icon.png (100%) diff --git a/addon.xml b/addon.xml index 9c4cdf7..4c64ab0 100644 --- a/addon.xml +++ b/addon.xml @@ -87,10 +87,6 @@ The MIT License https://forum.kodi.tv/showthread.php?tid=129499 https://github.com/robweber/xbmcbackup - - - resources/media/icon.png - Version 1.1.4 - added file chunk support for dropbox uploads - fixed settings duplicate ids, thanks aster-anto diff --git a/resources/media/icon.png b/icon.png similarity index 100% rename from resources/media/icon.png rename to icon.png diff --git a/resources/lib/utils.py b/resources/lib/utils.py index f3d0993..07f2551 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -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)