Show branch on about page

This commit is contained in:
Ruud
2012-10-26 22:14:48 +02:00
parent a86522a810
commit 7420785eaf
2 changed files with 2 additions and 2 deletions

View File

@@ -406,7 +406,7 @@ class DesktopUpdater(BaseUpdater):
'last_check': self.last_check,
'update_version': self.update_version,
'version': self.getVersion(),
'branch': 'desktop_build',
'branch': self.branch,
}
def check(self):

View File

@@ -117,7 +117,7 @@ var AboutSettingTab = new Class({
var self = this;
var date = new Date(json.version.date * 1000);
self.version_text.set('text', json.version.hash + (json.version.date ? ' ('+date.toLocaleString()+')' : ''));
self.updater_type.set('text', json.version.type);
self.updater_type.set('text', json.version.type + ', ' + json.branch);
}
});