Skip to content

Commit 2a41852

Browse files
committed
* Version bump
* Added readme information
1 parent 47166ef commit 2a41852

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

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

@@ -16,6 +16,10 @@ DeadHash is a free and open-source utility to calculate file and text hashes and
1616
* SHA-384
1717
* SHA-512
1818
* RIPEMD-160
19+
* CRC1
20+
* CRC8
21+
* CRC16
22+
* CRC24
1923
* CRC32
2024

2125
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) and built using [Electron](https://electronjs.org/).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deadhash",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "File and text hash calculator",
55
"homepage": "./",
66
"private": true,

public/workers/FileWorker/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@
149149
}
150150

151151
if (newHashes.length === 0) newHashes = null;
152-
153152
return resolve(newHashes);
154153
});
155154

public/workers/TextWorker/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@
125125
}
126126

127127
if (newHashes.length === 0) newHashes = null;
128-
129128
return resolve(newHashes);
130129
} catch (ex) {
131130
return reject(ex);

src/utils/Updater/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Updater = (os) => {
3333
version: null,
3434
};
3535

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

0 commit comments

Comments
 (0)