diff --git a/ChangeLog b/ChangeLog index 2bc2056..86188ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,17 @@ 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 * Updated lzma library to version 920. * Fixed a rare unable-to-decompress corner case. diff --git a/WHATS-NEW b/WHATS-NEW index b09c30d..65cb75a 100644 --- a/WHATS-NEW +++ b/WHATS-NEW @@ -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 A rare case of not being able to decompress archives was fixed.