diff options
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/HotFolder.py | 4 | ||||
-rw-r--r-- | module/plugins/hooks/UpdateManager.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/HotFolder.py b/module/plugins/hooks/HotFolder.py index 26217c0f8..752b9dc5f 100644 --- a/module/plugins/hooks/HotFolder.py +++ b/module/plugins/hooks/HotFolder.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import encode, fsjoin, move_tree class HotFolder(Addon): __name__ = "HotFolder" __type__ = "hook" - __version__ = "0.21" + __version__ = "0.22" __status__ = "testing" __config__ = [("activated", "bool", "Activated" , False ), @@ -27,7 +27,7 @@ class HotFolder(Addon): def activate(self): - self.periodical.start(30, threaded=True) + self.periodical.start(60, threaded=True) def periodical_task(self): diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index cf36a6d40..817990b0f 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -15,11 +15,11 @@ from module.plugins.internal.misc import encode, exists, fsjoin class UpdateManager(Addon): __name__ = "UpdateManager" __type__ = "hook" - __version__ = "1.05" + __version__ = "1.06" __status__ = "testing" __config__ = [("activated" , "bool", "Activated" , True ), - ("checkinterval", "int" , "Check interval in hours" , 8 ), + ("checkinterval", "int" , "Check interval in hours" , 6 ), ("autorestart" , "bool", "Auto-restart pyLoad when required" , True ), ("checkonstart" , "bool", "Check for updates on startup" , True ), ("checkperiod" , "bool", "Check for updates periodically" , True ), |