-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
136 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
lrzip-next features file. | ||
|
||
Last updated 6-February 2023 | ||
|
||
Many new changes, not in the lrzip, including: | ||
* latest LZMA and ZPAQ libraries (**ABI Compatible** with earlier versions. No need to re-compress files). | ||
* more helpful usage messages. | ||
* filters for x86 and other processors, and delta. | ||
* ASM LZMA DeCompressor (up to 40% faster. x86_64 only). | ||
* ASM LZMA Match Finder (x86_64 only). | ||
* ability to set rzip pre-compression level independently of compression level. | ||
* variable compressibility threshold testing. | ||
* ability to set specific LZMA Dictionary Size. | ||
* improved info reporting, column alignment, improved formatting, thousands separator. | ||
* improved memory management favoring large chunk and dictionary sizes over maxmizing number of threads. | ||
* improved ZPAQ processing by analyzing data prior to sending to compressor. | ||
* many bug fixes including validating a file prior to decompression (prevents corrupt file decompression before it starts!). | ||
* use of git describe to present current version without changing configure.ac. | ||
* lz4 Threshold testing (replaces lzo). | ||
* File info `lrzip-next -i` will now fetch info from encrypted files. | ||
* `lrzip-next -i` will not print percent info when file size is not known. | ||
* `lrzip-next -i` will format data with thousands separators. | ||
* Substitute libgcrypt functions for separate sources for **md5** and **sha512** hash functions, and **aes 128 bit** encryption.\ | ||
(This will allow for future bug fixes and possibly using different encryption methods through a standard library.) | ||
* SCRYPT (Bitcoin style) Key Derivation. | ||
* lzma match finder x86_64 Assembler module. | ||
* ZPAQ 7.15 library (Levels 3-5, random and text modes only. Binary mode (e8e9) covered by lzma-next filters). | ||
* ZPAQ compression settings stored in magic header. Will show in INFO output. | ||
* ZPAQ Compression Block Size can be independently set from 2MB to 2GB. | ||
* 13 Hash options (see CURRENT_HASHES) | ||
* 2 Encryption options (see CURRENT_ENCMETHODS) | ||
* Configurable with `lrzip.conf` file | ||
* Configurable LOCALE settings via lrzip.conf | ||
* Update autofoo to remove obsolete macros | ||
* REMOVE 32-BIT Architecture support | ||
* REMOVE support for `lrzip` versions < 0.6 | ||
* All filenames and symlinks and manpages now distinct from `lrzip` | ||
* Remove -r Recursive option | ||
* Remove gzip option compatibility and symlink `lrzn`. `lrzip-next` options prevail. | ||
* Users can add Comments with -C|--comment option | ||
* Magic header will store compression level used. | ||
* BSD Support. | ||
* /tmp is now default temporary dir. Set TMP to override. | ||
* BZIP3 Support - Kamila Szewczyk | ||
* add --enable-debug switch to configure. | ||
* when setting dictsize, zpaqbs, bzip3bs, do not change size. Reduce threads as required or fail! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
|
||
Major: 0 | ||
Minor: 10 | ||
Micro: 1 | ||
Micro: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters