From 64b500f4141e2cee2bfa62dbd6c01f4ce4b54639 Mon Sep 17 00:00:00 2001 From: s2 Date: Sun, 7 Jun 2020 20:03:57 +0200 Subject: [PATCH] update node modules --- app/js/index.js | 4 ++++ package-lock.json | 12 ++++++------ package.json | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/app/js/index.js b/app/js/index.js index 3a12ae8a..687e0bd9 100644 --- a/app/js/index.js +++ b/app/js/index.js @@ -12,6 +12,7 @@ ipcRenderer.on('update', (event, state) => { if (state.event === 'updateAvailable') { $('.js-updatenotice').text(`New version ${state.version} available. Downloading...`); + $('.js-updatenotice').prop('disabled', true); $('.js-updatenotice').show(); } @@ -25,6 +26,9 @@ $(document).on('click', '.js-updatenotice', (ev) => { ev.preventDefault(); + if ($('.js-updatenotice').prop('disabled')) { + return; + } $('.js-updatenotice').prop('disabled', true); $('.js-updatenotice').text(`Launching installer...`); ipcRenderer.send('installUpdate', $('.js-updatenotice').data('file')); diff --git a/package-lock.json b/package-lock.json index bb10ed27..7d841d57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -264,9 +264,9 @@ } }, "bootstrap": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.4.1.tgz", - "integrity": "sha512-tbx5cHubwE6e2ZG7nqM3g/FZ5PQEDMWmMGNrCUBVRPHXTJaH7CBDdsLeu3eCh3B1tzAxTnAbtmrzvWEvT2NNEA==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.0.tgz", + "integrity": "sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA==" }, "boxen": { "version": "3.2.0", @@ -1166,9 +1166,9 @@ } }, "github-app-updater": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/github-app-updater/-/github-app-updater-1.0.0.tgz", - "integrity": "sha512-GwWnHfJxqL+d/IdMyVLFqvP3NG8JFwBnd6obdAjjxl4YkWonRR/bK3WaCc+RnyMoUQUT63mz/cqTGpA4d7nOPQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/github-app-updater/-/github-app-updater-1.0.1.tgz", + "integrity": "sha512-gQ+DngMWmBRTP5wI6uuy2+m0ROfMphdUsrchN4kSmEc+9uAM67/xf7hluCnUL0dbrLaX7nxJ3VTTm7rZnQliOA==", "requires": { "node-fetch": "^2.6.0", "semver": "^7.3.2" diff --git a/package.json b/package.json index 6c2bc619..75930e65 100644 --- a/package.json +++ b/package.json @@ -28,12 +28,12 @@ }, "dependencies": { "animate.css": "^3.5.2", - "bootstrap": "^4.4.1", + "bootstrap": "^4.5.0", "ejs": "^2.7.4", "ejs-render-remote": "^1.0.13", "electron-find": "^1.0.6", "electron-localshortcut": "^3.2.1", - "github-app-updater": "^1.0.0", + "github-app-updater": "^1.0.1", "jquery": "^3.5.1", "material-design-icons": "^3.0.1", "minimist": "^1.2.5",