From 14dbd31ab7df86d17c0e551f25e16066a10a45dc Mon Sep 17 00:00:00 2001 From: Felix Rieseberg Date: Tue, 21 Oct 2014 13:19:50 -0700 Subject: [PATCH] Version Bump to 0.6.1 --- package.json | 2 +- updater_client/backup.js | 13 ++++++++----- updater_client/updater.js | 3 +++ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 3614e6f..5d40150 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Ghost-Updater-Azure", - "version": "0.6.0", + "version": "0.6.1", "private": false, "main": "index.html", "maintainers": [ diff --git a/updater_client/backup.js b/updater_client/backup.js index 0595ff6..a17a92e 100644 --- a/updater_client/backup.js +++ b/updater_client/backup.js @@ -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); } diff --git a/updater_client/updater.js b/updater_client/updater.js index ec220ec..88b23bb 100644 --- a/updater_client/updater.js +++ b/updater_client/updater.js @@ -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;