Updater config

This commit is contained in:
Ruud
2011-08-20 21:21:44 +02:00
parent 298888bb48
commit ca4ec4311b
2 changed files with 4 additions and 5 deletions
+3 -3
View File
@@ -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',
},
],
+1 -2
View File
@@ -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')