Skip to content

Commit

Permalink
ADD: Validator password page (#307)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
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 <[email protected]>
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 <[email protected]>
Date:   Sat May 21 11:38:55 2022 +0200

    Upgrade electron builder because of electron-userland/electron-builder#3559

commit 94075ceb94ae687fb0e0d7dd7db886b2b776ef09
Author: Michael Ferjancic <[email protected]>
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 <[email protected]>
Date:   Fri May 20 13:31:19 2022 +0200

    Change to 2.0.3-beta

commit 4bef8fdde1d6bca4635d174a29a61540f07fa8ee
Author: Michael Ferjancic <[email protected]>
Date:   Fri May 20 13:30:14 2022 +0200

    Change to 2.0.0-beta

commit ac171669ae9e28c0fdc37ace85c533daf5ebfef6
Author: gbayasgalan <[email protected]>
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 <[email protected]>
    Co-authored-by: stefa2k <[email protected]>
    Co-authored-by: stefa2k <[email protected]>

commit 35e55d7c051384f28bc78f68b9c0296f1c2e93ff
Author: NeoPlays <[email protected]>
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 <[email protected]>
    Co-authored-by: stefa2k <[email protected]>

commit a297e0e22774dd2f0afe2eb057ccd79176155021
Author: Michael Ferjancic <[email protected]>
Date:   Fri May 20 12:44:41 2022 +0200

    Trigger build to test artifact upload in github

commit 66c78664a7ae219e437a17446a5b5c31579ad056
Author: Michael Ferjancic <[email protected]>
Date:   Fri May 20 12:27:16 2022 +0200

    Just an electron builder error?

commit 6e5f0121bd42cc25d3311b68be13def9af449c95
Author: Michael Ferjancic <[email protected]>
Date:   Fri May 20 12:24:53 2022 +0200

    Just an electron builder error?

commit 95ad36dfb97c1475e60c6a277c70656a1d653701
Author: Michael Ferjancic <[email protected]>
Date:   Fri May 20 12:08:06 2022 +0200

    Trying an automated version bump

* ADD:validator password routing

Co-authored-by: Automated Version Bump <[email protected]>
  • Loading branch information
Nimbus1102 and Automated Version Bump committed May 23, 2022
1 parent f59d2de commit 3e1132b
Show file tree
Hide file tree
Showing 5 changed files with 302 additions and 127 deletions.
16 changes: 1 addition & 15 deletions launcher/src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions launcher/src/components/UI/the-staking/DropZone.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<template>

</template>
<script>
export default {
props: ["keyFiles"],
data() {
return {};
},
methods: {},
};
</script>
<style scoped>
</style>
Loading

0 comments on commit 3e1132b

Please sign in to comment.