From 3954c503290ddd91aafb61aa69d46b355ce97846 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Thu, 4 Jun 2015 05:10:49 -0500 Subject: [PATCH] Added a welcome message Instead of server online, added a welcome message with the name of the user. --- service.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/service.py b/service.py index 10e61c37..73145f50 100644 --- a/service.py +++ b/service.py @@ -36,6 +36,7 @@ class Service(): WINDOW = xbmcgui.Window(10000) warn_auth = True + welcome_msg = True server_online = True def __init__(self, *args ): @@ -90,7 +91,12 @@ class Service(): if WINDOW.getProperty('Server_online') == "true": # Server is online if (user.currUser != None) and (user.HasAccess == True): - self.warn_auth = True + + if self.welcome_msg: + # Reset authentication warnings + self.welcome_msg = False + self.warn_auth = True + xbmcgui.Dialog().notification("Emby server", "Welcome %s!" % user.currUser, sound=False) # Correctly launch the websocket, if user manually launches the add-on if (self.newWebSocketThread == None): @@ -184,7 +190,7 @@ class Service(): # Abort was requested while waiting. break xbmcgui.Dialog().notification("Connection successful", "%s Server is online." % self.addonName, time=2000, sound=False) - + self.server_online = True self.logMsg("Server is online and ready.", 1) WINDOW.setProperty("Server_online", "true")