Skip to content

Commit

Permalink
Version Bump to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrieseberg committed Oct 21, 2014
1 parent 8264c53 commit 14dbd31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "Ghost-Updater-Azure",
"version": "0.6.0",
"version": "0.6.1",
"private": false,
"main": "index.html",
"maintainers": [
Expand Down
13 changes: 8 additions & 5 deletions updater_client/backup.js
Expand Up @@ -123,11 +123,14 @@ UpdaterClient.backup = {
self.backupFinished = true;

setTimeout(function() {
UpdaterClient.updater.startInstallation();
self.scriptLogTitle.hide();
self.bScriptLogArea.hide();
self.bScriptLog.empty();
$('#backupOutputArea').empty();
UpdaterClient.updater.startInstallation();
self.bScriptLogArea.hide();
self.scriptLogTitle.hide();
self.bScriptLog.empty();
clearTimeout(self.timerYellow);
clearTimeout(self.timerRed);
UpdaterClient.utils.timerButton('grey');
$('#backupOutputArea').empty();
}, 300);
}

Expand Down
3 changes: 3 additions & 0 deletions updater_client/updater.js
Expand Up @@ -125,6 +125,9 @@ UpdaterClient.updater = {
self.scriptLogArea.hide();
self.scriptLogTitle.hide();
self.scriptLog.empty();
UpdaterClient.utils.timerButton('grey');
clearTimeout(self.timerYellow);
clearTimeout(self.timerRed);
self.appendLog('All done, your blog has been updated!', false);
self.updateFinished = true;

Expand Down

0 comments on commit 14dbd31

Please sign in to comment.