Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick <patrick@westberliner.net>2017-03-26 21:38:44 +0300
committerPatrick <patrick@westberliner.net>2017-03-26 21:38:44 +0300
commiteeae274621553d55e08221f86bd3d91930fe7b60 (patch)
treefee4477e46031eebd31e3a9c3d1c5417b0d7ded6
parent5d38617f30d5956532257d8fc142937f155adc2d (diff)
added sha384v0.3.3
-rw-r--r--Changelog.md3
-rw-r--r--README.md2
-rw-r--r--appinfo/info.xml2
-rw-r--r--js/checksum.tabview.js1
-rw-r--r--lib/Controller/ChecksumController.php1
5 files changed, 7 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md
index df4aacc..53ba31e 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,6 +1,9 @@
Changelog
=========
+**0.3.3**
+- added sha384
+
**0.3.2**
- updated readme
- added changelog
diff --git a/README.md b/README.md
index cd20df7..ae61346 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ Usage
Just open the details view of the file (Sidebar). There should be a new tab called "Checksum". Select a algorithm and it will try to generate a hash. If you want an other algorithm, just click on the reload button.
-Possible algorithms are md5, sha1, sha256, sha512 and crc32.
+Possible algorithms are md5, sha1, sha256, sha384, sha512 and crc32.
Compatibility
-------------
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 337feff..6b10580 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,7 +5,7 @@
<name>Checksum</name>
<summary>Creating a hash checksum of a file.</summary>
<description>Creating a hash checksum of a file.</description>
- <version>0.3.1</version>
+ <version>0.3.3</version>
<licence>agpl</licence>
<author>westberliner</author>
<types>
diff --git a/js/checksum.tabview.js b/js/checksum.tabview.js
index 8748be9..710e0b1 100644
--- a/js/checksum.tabview.js
+++ b/js/checksum.tabview.js
@@ -35,6 +35,7 @@
+ '<option value="md5">MD5</option>'
+ '<option value="sha1">SHA1</option>'
+ '<option value="sha256">SHA256</option>'
+ + '<option value="sha384">SHA384</option>'
+ '<option value="sha512">SHA512</option>'
+ '<option value="crc32">CRC32</option>'
+ '</select></div>'
diff --git a/lib/Controller/ChecksumController.php b/lib/Controller/ChecksumController.php
index f562bd8..8784c57 100644
--- a/lib/Controller/ChecksumController.php
+++ b/lib/Controller/ChecksumController.php
@@ -73,6 +73,7 @@ class ChecksumController extends Controller {
'md5',
'sha1',
'sha256',
+ 'sha384',
'sha512',
'crc32'
);