Updated documentation.

This commit is contained in:
Con Kolivas 2011-04-22 19:10:06 +10:00
parent 30e990fbcf
commit c1c44352e0
2 changed files with 21 additions and 0 deletions

View file

@ -1,4 +1,14 @@
lrzip ChangeLog lrzip ChangeLog
APRIL 2011, version 0.603 Con Kolivas, George Makrydakis, Jari Aalto.
* lseek in stream.c wasn't being compiled to the lseek64 variant on Apple
due to missing includes, breaking >2GB files. Added includes.
* Detect when stdout is being redirected and automatically direct output to
stdout unless a filename is specified.
* Update lrztar to properly support -S -O and -o, and use new syntax not
requiring '-o -' for stdout.
* Update lrzip.conf to support encryption.
* Typo fixes.
APRIL 2011, version 0.602 Con Kolivas APRIL 2011, version 0.602 Con Kolivas
* Fixed the symlinks breaking package generation. * Fixed the symlinks breaking package generation.
* Made maximum chunk allocable on 32bits 2/3 of a GB again limiting total ram * Made maximum chunk allocable on 32bits 2/3 of a GB again limiting total ram

View file

@ -1,3 +1,14 @@
lrzip-0.603
lrzip now supports stdout without requiring the '-o -' option. It detects when
output is being redirected without a filename and will automatically output to
stdout so you can do:
lrunzip patch-2.6.38.4.lrz | patch -p1
Apple builds will not have errors on compressing files >2GB in size which
broke with 0.600.
lrztar will properly support -o, -O and -S.
lrzip.conf file now supports encryption.
lrzip-0.602 lrzip-0.602
Fixed wrong symlinks which broke some package generation. Fixed wrong symlinks which broke some package generation.