Update documentation.

This commit is contained in:
Con Kolivas 2011-09-26 09:21:38 +10:00
parent cc51b676f0
commit b359909b29
2 changed files with 20 additions and 0 deletions

View file

@ -1,4 +1,17 @@
lrzip ChangeLog lrzip ChangeLog
SEPTEMBER 2011, version 0.608 Con Kolivas
* 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
function and the larger memcpys depending on whether sliding mmap is in use or
not. This affords a substantial speedup in the rzip phase of files not requiring
sliding mmap.
* A small optimisation of moving the check for remapping the low buffer also
speeds up the sliding mmap version slightly.
* Installation of the included bash completion script was disabled to avoid
conflict with distribution bash completion packages.
* Minor cleanup of sha4.h
* Make mremap use the fake mremap on all platforms not linux.
SEPTEMBER 2011, version 0.607 Con Kolivas SEPTEMBER 2011, version 0.607 Con Kolivas
* Updated lzma library to version 920. * Updated lzma library to version 920.
* Fixed a rare unable-to-decompress corner case. * Fixed a rare unable-to-decompress corner case.

View file

@ -1,3 +1,10 @@
lrzip-0.608
Faster rzip stage through use of a selective get_sb function.
The bash completion script is no longer installed by default to not conflict
with distribution bash completion packages.
More compilation fixes for non-linux platforms.
lrzip-0.607 lrzip-0.607
A rare case of not being able to decompress archives was fixed. A rare case of not being able to decompress archives was fixed.