Update context menu

Also add the option to disable the context menu within the add-on
settings >  extras
This commit is contained in:
angelblue05 2016-09-17 06:12:37 -05:00
parent 2a6ad7bd11
commit 89fe64d019
8 changed files with 213 additions and 11 deletions

View file

@ -60,6 +60,8 @@ class Service(object):
window('emby_logLevel', value=str(log_level))
window('emby_kodiProfile', value=xbmc.translatePath('special://profile'))
context_menu = "true" if settings('enableContext') == "true" else ""
window('emby_context', value=context_menu)
# Initial logging
log.warn("======== START %s ========", self.addon_name)