From 3e1132b86d61e2a42c5fe76b361351b5083e070b Mon Sep 17 00:00:00 2001 From: NimbusEngine523 Date: Mon, 23 May 2022 08:06:11 +0200 Subject: [PATCH] ADD: Validator password page (#307) * bump to 2.0.2 [skip ci] * bump to 2.0.2 [skip ci] * ADD:enter password to keyStore * bump to 2.0.3 [skip ci] * ADD: Validator key confirm password * bump to 2.0.4 [skip ci] * Squashed commit of the following: commit 00ad10013c1b09088beade3daf2a6fb07a66b21c Author: Automated Version Bump Date: Fri May 20 10:13:14 2022 +0000 bump to 2.0.2 [skip ci] * Squashed commit of the following: commit 956cabd6922a6cc73d0988a4e3804a1eb3784357 Author: Michael Ferjancic Date: Sat May 21 11:55:06 2022 +0200 Releasing just onTag - github sends a 422 when overwriting artifacts, waiting until electron-builder finds a solution commit 6b1ce53acc7d561e5c4534fb5485631da51db976 Author: Michael Ferjancic Date: Sat May 21 11:38:55 2022 +0200 Upgrade electron builder because of https://github.com/electron-userland/electron-builder/issues/3559 commit 94075ceb94ae687fb0e0d7dd7db886b2b776ef09 Author: Michael Ferjancic Date: Sat May 21 10:44:46 2022 +0200 AppImage target for linux until we support snap commit 8a4d2fb979d65a495fe181bc4afaabd7c684e4d8 Merge: 4bef8fd ac17166 Author: Michael Ferjancic Date: Fri May 20 13:31:19 2022 +0200 Change to 2.0.3-beta commit 4bef8fdde1d6bca4635d174a29a61540f07fa8ee Author: Michael Ferjancic Date: Fri May 20 13:30:14 2022 +0200 Change to 2.0.0-beta commit ac171669ae9e28c0fdc37ace85c533daf5ebfef6 Author: gbayasgalan <73820006+gbayasgalan@users.noreply.github.com> Date: Fri May 20 13:19:48 2022 +0200 FIX: replace stereum/* docker images (#303) * EDIT: replace stereum/lighthouse image * bump to 2.0.2 [skip ci] * EDIT: replace stereum/nimbus image * EDIT: comment out * bump to 2.0.3 [skip ci] Co-authored-by: Automated Version Bump Co-authored-by: stefa2k <54934211+stefa2k@users.noreply.github.com> Co-authored-by: stefa2k commit 35e55d7c051384f28bc78f68b9c0296f1c2e93ff Author: NeoPlays <80448387+NeoPlays@users.noreply.github.com> Date: Fri May 20 13:10:01 2022 +0200 ADD: CPU usage monitoring command (#304) * ADD: CPU usage monitoring command * bump to v2.0.2 [skip ci] Co-authored-by: Automated Version Bump Co-authored-by: stefa2k <54934211+stefa2k@users.noreply.github.com> commit a297e0e22774dd2f0afe2eb057ccd79176155021 Author: Michael Ferjancic Date: Fri May 20 12:44:41 2022 +0200 Trigger build to test artifact upload in github commit 66c78664a7ae219e437a17446a5b5c31579ad056 Author: Michael Ferjancic Date: Fri May 20 12:27:16 2022 +0200 Just an electron builder error? commit 6e5f0121bd42cc25d3311b68be13def9af449c95 Author: Michael Ferjancic Date: Fri May 20 12:24:53 2022 +0200 Just an electron builder error? commit 95ad36dfb97c1475e60c6a277c70656a1d653701 Author: Michael Ferjancic Date: Fri May 20 12:08:06 2022 +0200 Trying an automated version bump * ADD:validator password routing Co-authored-by: Automated Version Bump --- launcher/src/background.js | 16 +- .../components/UI/the-staking/DropZone.vue | 15 + .../components/UI/the-staking/KeyTable.vue | 346 ++++++++++++------ .../src/components/UI/the-staking/ShowKey.vue | 49 +++ .../components/UI/the-staking/TheUpload.vue | 3 - 5 files changed, 302 insertions(+), 127 deletions(-) create mode 100644 launcher/src/components/UI/the-staking/DropZone.vue create mode 100644 launcher/src/components/UI/the-staking/ShowKey.vue delete mode 100644 launcher/src/components/UI/the-staking/TheUpload.vue diff --git a/launcher/src/background.js b/launcher/src/background.js index 89ff6fd7..cc715f06 100644 --- a/launcher/src/background.js +++ b/launcher/src/background.js @@ -151,21 +151,7 @@ app.on("activate", () => { if (BrowserWindow.getAllWindows().length === 0) createWindow(); }); -// //electron drag&drop codes -// promiseIpc.on('ondragstart', (event, filePath) => { -// readFile(filePath); -// function readFile(filepath) { -// fs.readFile(filepath, 'utf-8', (err, data) => { -// if(err){ -// alert("An error ocurred reading the file :" + err.message) -// return -// } -// // handle the file content -// event.sender.send('fileData', data) -// }) -// } - -// }) + app.on("web-contents-created", (event, contents) => { // open every new window in the OS's default browser instead of a diff --git a/launcher/src/components/UI/the-staking/DropZone.vue b/launcher/src/components/UI/the-staking/DropZone.vue new file mode 100644 index 00000000..586babae --- /dev/null +++ b/launcher/src/components/UI/the-staking/DropZone.vue @@ -0,0 +1,15 @@ + + + diff --git a/launcher/src/components/UI/the-staking/KeyTable.vue b/launcher/src/components/UI/the-staking/KeyTable.vue index 7423d1e3..c727f1bf 100644 --- a/launcher/src/components/UI/the-staking/KeyTable.vue +++ b/launcher/src/components/UI/the-staking/KeyTable.vue @@ -2,7 +2,7 @@
-
+
NAME SERVICE ACTIVE SINCE @@ -12,9 +12,10 @@
- {{ item.pubkey }} - Max Behzadi + {{ item.name }} +
+
+ FILE NAME +
+
+
+ + {{ item.name }} +
+ icon +
+
+
-
+
icon -
+
+
+ icon + icon + icon +
+ + + ENTER PASSWORD & IMPORT +
+
+ diff --git a/launcher/src/components/UI/the-staking/TheUpload.vue b/launcher/src/components/UI/the-staking/TheUpload.vue deleted file mode 100644 index 27e0f695..00000000 --- a/launcher/src/components/UI/the-staking/TheUpload.vue +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file