Skip to content

Commit

Permalink
File validation and small text and metadata changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Simeonov committed Nov 29, 2021
1 parent 400f8b8 commit 6cfa3db
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![CryptoAPIs](./src/resources/images/logo.svg?raw=true)
![Crypto APIs](./src/resources/images/logo.svg?raw=true)

# CryptoAPIs Wallet Recovery tool
# Crypto APIs Wallet Recovery tool

#### Tool for recovering private key from wallet recovery data

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cryptoapis-wallet-recovery-tool",
"author": "Crypto APIs <[email protected]>",
"description": "Tool for recovering private key from wallet recovery data",
"version": "0.1.1",
"version": "0.1.2",
"main": "./src/main.js",
"license": "MIT",
"homepage": "https://bitbucket.org/menadev/cryptoapis-recovery-tool-lib#readme",
Expand Down Expand Up @@ -34,8 +34,12 @@
"electron-builder": "^22.10.5"
},
"build": {
"productName": "cryptoapis-wallet-recovery-tool",
"productName": "Crypto APIs Wallet Recovery Tool",
"appId": "io.cryptoapis.app",
"artifactName": "cryptoapis-wallet-recovery-tool-v${version}.${ext}",
"extraMetadata": {
"name": "Crypto APIs Wallet Recovery Tool"
},
"directories": {
"output": "dist"
},
Expand Down
8 changes: 4 additions & 4 deletions src/services/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class FileService extends BaseService {
status = false;
}
}
}

this.mainWindow.webContents.send("status:recovery-data", status);
this.mainWindow.webContents.send("status:recovery-data", status);
}

return fileData;
}
Expand All @@ -57,9 +57,9 @@ class FileService extends BaseService {
status = false;
}
}
}

this.mainWindow.webContents.send("status:rsa-key", status);
this.mainWindow.webContents.send("status:rsa-key", status);
}

return fileData;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<link href="../resources/css/bootstrap.min.css" rel="stylesheet">
<link href="../resources/css/styles.css" rel="stylesheet">
<title>Crypto APIs WaaS Emergency Recovery Tool</title>
<title>Crypto APIs Wallet Recovery Tool</title>
</head>
<body>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/views/password-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<link href="../resources/css/bootstrap.min.css" rel="stylesheet">
<link href="../resources/css/styles.css" rel="stylesheet">
<title>Crypto APIs WaaS Emergency Recovery Tool</title>
<title>Crypto APIs Wallet Recovery Tool</title>
</head>
<body>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/views/recover-cryptoapis-provided.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<link href="../resources/css/bootstrap.min.css" rel="stylesheet">
<link href="../resources/css/styles.css" rel="stylesheet">
<title>Crypto APIs WaaS Emergency Recovery Tool</title>
<title>Crypto APIs Wallet Recovery Tool</title>
</head>
<body>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/views/recover-self-provided.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<link href="../resources/css/bootstrap.min.css" rel="stylesheet">
<link href="../resources/css/styles.css" rel="stylesheet">
<title>Crypto APIs WaaS Emergency Recovery Tool</title>
<title>Crypto APIs Wallet Recovery Tool</title>
</head>
<body>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/views/rsa-key-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<link href="../resources/css/bootstrap.min.css" rel="stylesheet">
<link href="../resources/css/styles.css" rel="stylesheet">
<title>Crypto APIs WaaS Emergency Recovery Tool</title>
<title>Crypto APIs Wallet Recovery Tool</title>
</head>
<body>
<div class="row">
Expand Down

0 comments on commit 6cfa3db

Please sign in to comment.