Skip to content

Commit

Permalink
* Version bump
Browse files Browse the repository at this point in the history
* Added readme information
  • Loading branch information
CodeDead committed Feb 11, 2021
1 parent 47166ef commit 2a41852
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![GitHub package.json version](https://img.shields.io/github/package-json/v/CodeDead/DeadHash-js)
![GitHub](https://img.shields.io/github/license/CodeDead/DeadHash-Js)
![GitHub Releases (by Release)](https://img.shields.io/github/downloads/CodeDead/DeadHash-js/2.1.1/total)
![GitHub Releases (by Release)](https://img.shields.io/github/downloads/CodeDead/DeadHash-js/2.1.2/total)

DeadHash is a free and open-source utility to calculate file and text hashes and checksums. The following calculations are supported:

Expand All @@ -16,6 +16,10 @@ DeadHash is a free and open-source utility to calculate file and text hashes and
* SHA-384
* SHA-512
* RIPEMD-160
* CRC1
* CRC8
* CRC16
* CRC24
* CRC32

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) and built using [Electron](https://electronjs.org/).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "deadhash",
"version": "2.1.1",
"version": "2.1.2",
"description": "File and text hash calculator",
"homepage": "./",
"private": true,
Expand Down
1 change: 0 additions & 1 deletion public/workers/FileWorker/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@
}

if (newHashes.length === 0) newHashes = null;

return resolve(newHashes);
});

Expand Down
1 change: 0 additions & 1 deletion public/workers/TextWorker/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
}

if (newHashes.length === 0) newHashes = null;

return resolve(newHashes);
} catch (ex) {
return reject(ex);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Updater/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Updater = (os) => {
version: null,
};

if (isNewer('2.1.1', `${platform.version.majorVersion}.${platform.version.minorVersion}.${platform.version.buildVersion}.${platform.version.revisionVersion}`)) {
if (isNewer('2.1.2', `${platform.version.majorVersion}.${platform.version.minorVersion}.${platform.version.buildVersion}.${platform.version.revisionVersion}`)) {
data.updateAvailable = true;
}

Expand Down

0 comments on commit 2a41852

Please sign in to comment.