mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Update changelogs.
This commit is contained in:
parent
cf8567e314
commit
e915595bef
2
AUTHORS
2
AUTHORS
|
|
@ -16,7 +16,7 @@ Jukka Laurila for newer Darwin support
|
||||||
George Makrydakis for lrztar, lrzuntar
|
George Makrydakis for lrztar, lrzuntar
|
||||||
Jari Aalto for documentation and typos and git help
|
Jari Aalto for documentation and typos and git help
|
||||||
Jon Tibble for nasm tests & Solaris support
|
Jon Tibble for nasm tests & Solaris support
|
||||||
Michael Blumenkrantz for updated autotools
|
Michael Blumenkrantz for updated autotools and liblrzip!
|
||||||
Serge Belyshev for encryption help and code
|
Serge Belyshev for encryption help and code
|
||||||
Ulrich Drepper for MD5 implementation
|
Ulrich Drepper for MD5 implementation
|
||||||
PolarSSL authors for sha512 + aes128 implementation
|
PolarSSL authors for sha512 + aes128 implementation
|
||||||
|
|
|
||||||
15
ChangeLog
15
ChangeLog
|
|
@ -1,4 +1,19 @@
|
||||||
lrzip ChangeLog
|
lrzip ChangeLog
|
||||||
|
MARCH 2012, version 0.610 Con Kolivas, Michael Blumenkrantz
|
||||||
|
* Implement complete set of liblrzip libraries, documentation and example uses
|
||||||
|
with support for simple lrzip_compress() and lrzip_decompress() or complete
|
||||||
|
fine-grained control over all compression and decompression options.
|
||||||
|
* Use as much of the low buffer as possible with a single memcopy before going
|
||||||
|
fine grained byte by byte.
|
||||||
|
* Preserve the compressed time on decompression where suitable.
|
||||||
|
* Store a copy of the control struct to be reused on subsequent files to prevent
|
||||||
|
variables being modified in the control struct on the first file that corrupt
|
||||||
|
compression/decompression of the 2nd file.
|
||||||
|
* Explicitly select C99 to avoid certain warnings.
|
||||||
|
* Generic modifications to silence -Wextra warnings.
|
||||||
|
* Fix typos.
|
||||||
|
|
||||||
|
|
||||||
SEPTEMBER 2011, version 0.608 Con Kolivas
|
SEPTEMBER 2011, version 0.608 Con Kolivas
|
||||||
* get_sb only allows accessing one byte at a time, yet we don't need that
|
* get_sb only allows accessing one byte at a time, yet we don't need that
|
||||||
functionality when sliding mmap is not in use. Use different versions of the
|
functionality when sliding mmap is not in use. Use different versions of the
|
||||||
|
|
|
||||||
14
WHATS-NEW
14
WHATS-NEW
|
|
@ -1,3 +1,17 @@
|
||||||
|
lrzip-0.610
|
||||||
|
|
||||||
|
The new liblrzip library allows you to add lrzip compression and decompression
|
||||||
|
to other applications with either simple lrzip_compress and lrzip_decompress
|
||||||
|
functions or fine control over all the options with low level functions.
|
||||||
|
Faster rzip stage when files are large enough to require the sliding mmap
|
||||||
|
feature (usually >1/3 of ram) and in unlimited mode.
|
||||||
|
A bug where multiple files being compressed or decompressed from the one
|
||||||
|
command line could have gotten corrupted was fixed.
|
||||||
|
Modification date of the decompressed file is now set to that of the lrzip
|
||||||
|
archive (support for storing the original file's date would require modifying
|
||||||
|
the archive format again).
|
||||||
|
Compilation warning fixes.
|
||||||
|
|
||||||
lrzip-0.608
|
lrzip-0.608
|
||||||
|
|
||||||
Faster rzip stage through use of a selective get_sb function.
|
Faster rzip stage through use of a selective get_sb function.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue