From c1c44352e0069b7a1372d2e6fb17cbacc053229e Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 22 Apr 2011 19:10:06 +1000 Subject: [PATCH] Updated documentation. --- ChangeLog | 10 ++++++++++ WHATS-NEW | 11 +++++++++++ 2 files changed, 21 insertions(+) diff --git a/ChangeLog b/ChangeLog index bfe804b..e2ccefc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,14 @@ 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 * Fixed the symlinks breaking package generation. * Made maximum chunk allocable on 32bits 2/3 of a GB again limiting total ram diff --git a/WHATS-NEW b/WHATS-NEW index a3eac1a..ed36d32 100644 --- a/WHATS-NEW +++ b/WHATS-NEW @@ -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 Fixed wrong symlinks which broke some package generation.