Updater config
This commit is contained in:
@@ -11,17 +11,17 @@ config = [{
|
||||
'name': 'updater',
|
||||
'label': 'Updater',
|
||||
'git_only': True,
|
||||
'description': 'Enable periodic update checking',
|
||||
'options': [
|
||||
{
|
||||
'name': 'enabled',
|
||||
'default': True,
|
||||
'type': 'enabler',
|
||||
'description': 'Enable periodic update checking',
|
||||
},
|
||||
{
|
||||
'name': 'automatic',
|
||||
'default': False,
|
||||
'type': 'enabler',
|
||||
'default': True,
|
||||
'type': 'bool',
|
||||
'description': 'Automaticly update when update is available',
|
||||
},
|
||||
],
|
||||
|
||||
@@ -53,7 +53,7 @@ class Updater(Plugin):
|
||||
local = self.repo.getHead()
|
||||
remote = branch.getHead()
|
||||
|
||||
if local.getDate() < remote.getDate():
|
||||
if local.getDate() < remote.getDate():
|
||||
if self.conf('automatic') and not self.updateFailed:
|
||||
self.doUpdate()
|
||||
else:
|
||||
@@ -76,4 +76,3 @@ class Updater(Plugin):
|
||||
|
||||
def isEnabled(self):
|
||||
return Plugin.isEnabled(self) and Env.get('uses_git')
|
||||
|
||||
Reference in New Issue
Block a user