Prepare to release 1.0.0

This commit is contained in:
2015-02-06 03:32:52 +00:00
parent f4776e6164
commit 12c51fd309
3 changed files with 2 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ Features
* Calculates CRC16-IBM (same as old archivers), CRC32-ANSI (same as Zip) and CRC64-ECMA (same as Xz) using entirely managed code, without static tables. * Calculates CRC16-IBM (same as old archivers), CRC32-ANSI (same as Zip) and CRC64-ECMA (same as Xz) using entirely managed code, without static tables.
* Calculates Adler-32, Fletcher-16 and Fletcher-32 using entirely managed code. * Calculates Adler-32, Fletcher-16 and Fletcher-32 using entirely managed code.
* Calculates SpamSum (fuzzy hashing, from ssdeep), using entirely managed code manually converted from ssdeep's C source. * Calculates SpamSum (fuzzy hashing, from ssdeep), using entirely managed code manually converted from ssdeep's C source.
* Calculates SHA3-512 using jdluzen's library
* And if file (from magic) is found in path, uses it to get a format description, Apple CREATOR/TYPE OSType pair, MIME type and MIME encoding. * And if file (from magic) is found in path, uses it to get a format description, Apple CREATOR/TYPE OSType pair, MIME type and MIME encoding.
To-Do To-Do

View File

@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and revision, // The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision. // and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0")]
// The following attributes are used to specify the signing key for the assembly, // The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing. // if desired. See the Mono documentation for more information about signing.

1
TODO
View File

@@ -1,5 +1,4 @@
--- Check Fletcher-16 and Fletcher-32 --- Check Fletcher-16 and Fletcher-32
--- Implement Fletcher-64 --- Implement Fletcher-64
--- Implement other hashes --- Implement other hashes
--- Check why SHA3 is not working