diff options
author | 2014-11-20 02:34:31 +0100 | |
---|---|---|
committer | 2014-11-20 02:34:31 +0100 | |
commit | 6d4fbe6b3e18f75110e0420215ba5df3e0d9d7b3 (patch) | |
tree | d9b209d2627bdb3aa58094c814c235cc1b764f3e /pyload/plugins/addon/WindowsPhoneToastNotify.py | |
parent | Import threading instead thread + thread cleanup (diff) | |
download | pyload-6d4fbe6b3e18f75110e0420215ba5df3e0d9d7b3.tar.xz |
__config__ cleanup for addons
Diffstat (limited to 'pyload/plugins/addon/WindowsPhoneToastNotify.py')
-rw-r--r-- | pyload/plugins/addon/WindowsPhoneToastNotify.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pyload/plugins/addon/WindowsPhoneToastNotify.py b/pyload/plugins/addon/WindowsPhoneToastNotify.py index 4c57ff72c..5b62c49a8 100644 --- a/pyload/plugins/addon/WindowsPhoneToastNotify.py +++ b/pyload/plugins/addon/WindowsPhoneToastNotify.py @@ -11,10 +11,11 @@ class WindowsPhoneToastNotify(Addon): __type__ = "addon" __version__ = "0.02" - __config__ = [("force", "bool", "Force even if client is connected", False), - ("pushId", "str", "pushId", ""), - ("pushUrl", "str", "pushUrl", ""), - ("pushTimeout", "int", "Timeout between notifications in seconds", 0)] + __config__ = [("activated" , "bool", "Activated" , False), + ("force" , "bool", "Force even if client is connected" , False), + ("pushId" , "str" , "pushId" , "" ), + ("pushUrl" , "str" , "pushUrl" , "" ), + ("pushTimeout", "int" , "Timeout between notifications in seconds", 0 )] __description__ = """Send push notifications to Windows Phone""" __license__ = "GPLv3" |