From b599bc384bb2e4675ec7d2dce48138416493365c Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 26 Aug 2012 14:23:14 +0200 Subject: [PATCH] Add updater type to about page --- couchpotato/static/scripts/page/about.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/couchpotato/static/scripts/page/about.js b/couchpotato/static/scripts/page/about.js index 0a966672..8ac38ba6 100644 --- a/couchpotato/static/scripts/page/about.js +++ b/couchpotato/static/scripts/page/about.js @@ -58,6 +58,8 @@ var AboutSettingTab = new Class({ } } }), + new Element('dt[text=Updater]'), + self.updater_type = new Element('dd.updater'), new Element('dt[text=ID]'), new Element('dd', {'text': App.getOption('pid')}), new Element('dt[text=Directories]'), @@ -115,6 +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 + ' ('+date.toUTCString()+')'); + self.updater_type.set('text', json.version.type); } });