diff --git a/README.md b/README.md
index 0ed4e80..8b9aa47 100644
--- a/README.md
+++ b/README.md
@@ -26,5 +26,3 @@ This library is maintained by CodeDead. You can find more about us using the fol
* [Twitter](https://twitter.com/C0DEDEAD)
* [Facebook](https://facebook.com/deadlinecodedead)
* [Reddit](https://reddit.com/r/CodeDead/)
-
-We would also like to thank JetBrains for the open source license that they granted us to work with wonderful tools such as [WebStorm](https://jetbrains.com/webstorm) and [Resharper](https://jetbrains.com/resharper).
diff --git a/package.json b/package.json
index bbcabcb..591a1d2 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "deadhash",
- "version": "2.0.1",
- "description": "Hash calculator",
+ "version": "2.0.2",
+ "description": "File and text hash calculator",
"homepage": "./",
"private": true,
"author": {
@@ -35,19 +35,19 @@
},
"main": "public/electron.js",
"dependencies": {
- "@material-ui/core": "^4.9.0",
- "@material-ui/icons": "^4.5.1",
+ "@material-ui/core": "^4.9.9",
+ "@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
- "cross-env": "^6.0.3",
- "crypto-js": "^3.1.9-1",
- "electron-is-dev": "^1.1.0",
- "react": "^16.12.0",
+ "cross-env": "^7.0.2",
+ "crypto-js": "^4.0.0",
+ "electron-is-dev": "^1.2.0",
+ "react": "^16.13.1",
"react-contexify": "^4.1.1",
- "react-dom": "^16.12.0",
- "react-redux": "^7.1.3",
+ "react-dom": "^16.13.1",
+ "react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
- "react-scripts": "3.3.0",
+ "react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-actions": "^2.6.5"
},
@@ -77,9 +77,9 @@
]
},
"devDependencies": {
- "concurrently": "^5.0.2",
- "electron": "^7.1.10",
- "electron-builder": "^22.2.0",
- "wait-on": "^4.0.0"
+ "concurrently": "^5.1.0",
+ "electron": "^8.2.0",
+ "electron-builder": "^22.4.1",
+ "wait-on": "^4.0.1"
}
}
diff --git a/public/electron.js b/public/electron.js
index 35462be..d118e04 100644
--- a/public/electron.js
+++ b/public/electron.js
@@ -5,7 +5,7 @@ const path = require("path");
const isDev = require("electron-is-dev");
let mainWindow;
-function createWindow() {
+const createWindow = () => {
mainWindow = new BrowserWindow({
webPreferences: {
nodeIntegration: true
@@ -34,7 +34,7 @@ function createWindow() {
event.preventDefault();
electron.shell.openExternal(arg);
});
-}
+};
app.on("ready", createWindow);
diff --git a/public/index.html b/public/index.html
index 4060bce..3153bcd 100644
--- a/public/index.html
+++ b/public/index.html
@@ -7,7 +7,7 @@