fix software update panel (layout, text)
This commit is contained in:
parent
ed42b46383
commit
326bd4c13d
1 changed files with 27 additions and 5 deletions
|
@ -44,9 +44,21 @@ oml.ui.appDialog = function() {
|
||||||
oml.api.getVersion(function(response) {
|
oml.api.getVersion(function(response) {
|
||||||
if (response.data.update) {
|
if (response.data.update) {
|
||||||
if (response.data.current == 'git') {
|
if (response.data.current == 'git') {
|
||||||
$update.html(Ox._('A new version of Open Media Library is available in git.<br>To update run: <code>./ctl update</code>'));
|
$update.html(
|
||||||
|
'<p>'
|
||||||
|
+ Ox._('A new version of Open Media Library is available in git.')
|
||||||
|
+ '<br><br>'
|
||||||
|
+ Ox._('To update run:')
|
||||||
|
+ ' <code>./ctl update</code>')
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
$update.html(Ox._('A new version of Open Media Library is available'));
|
$update.html(
|
||||||
|
'<p>'
|
||||||
|
+ Ox._('You are running Version {0}.', [response.data.current])
|
||||||
|
+ '<br><br>'
|
||||||
|
+ Ox._('A new version of Open Media Library is available.')
|
||||||
|
+ '</p>'
|
||||||
|
);
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
id: 'update',
|
id: 'update',
|
||||||
title: Ox._('Install Now')
|
title: Ox._('Install Now')
|
||||||
|
@ -54,7 +66,7 @@ oml.ui.appDialog = function() {
|
||||||
click: function() {
|
click: function() {
|
||||||
this.options({
|
this.options({
|
||||||
disabled: true,
|
disabled: true,
|
||||||
title: 'Installing...'
|
title: Ox._('Installing...')
|
||||||
});
|
});
|
||||||
oml.api.restart({update: true},function(response) {
|
oml.api.restart({update: true},function(response) {
|
||||||
if (response.status.code == 200) {
|
if (response.status.code == 200) {
|
||||||
|
@ -66,9 +78,19 @@ oml.ui.appDialog = function() {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (response.data.current == 'git') {
|
if (response.data.current == 'git') {
|
||||||
$update.html(Ox._('You\'re up to date'));
|
$update.html(
|
||||||
|
'<p>'
|
||||||
|
+ Ox._('You are up to date.')
|
||||||
|
+ '</p>'
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
$update.html(Ox._('You are running Version {0}. You\'re up to date.', [response.data.current]));
|
$update.html(
|
||||||
|
'<p>'
|
||||||
|
+ Ox._('You are running Version {0}.', [response.data.current])
|
||||||
|
+ '<br><br>'
|
||||||
|
+ Ox._('You are up to date.')
|
||||||
|
+ '</p>'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue