Adding upstream version 1.7.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
abd87c79b1
commit
96fff67cb2
20 changed files with 841 additions and 444 deletions
33
ChangeLog
33
ChangeLog
|
@ -1,3 +1,24 @@
|
|||
2018-02-07 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.7 released.
|
||||
* compress.cc: Use 'LZ_compress_restart_member' and replace input
|
||||
packet queue by a circular buffer to reduce memory fragmentation.
|
||||
* compress.cc: Return one empty packet at a time to reduce mem use.
|
||||
* main.cc: Reduce threads on 32 bit systems to use under 2.22 GiB.
|
||||
* main.cc: Added new option '--loose-trailing'.
|
||||
* Improved corrupt header detection to HD=3 on seekable files.
|
||||
(On all files with lzlib 1.10 or newer).
|
||||
* Replaced 'bits/byte' with inverse compression ratio in output.
|
||||
* Show progress of decompression at verbosity level 2 (-vv).
|
||||
* Show progress of (de)compression only if stderr is a terminal.
|
||||
* main.cc: Do not add a second .lz extension to the arg of -o.
|
||||
* Show dictionary size at verbosity level 4 (-vvvv).
|
||||
* main.cc (cleanup_and_fail): Suppress messages from other threads.
|
||||
* list.cc: Added missing '#include <pthread.h>'.
|
||||
* plzip.texi: Added chapter 'Output'.
|
||||
* plzip.texi (Memory requirements): Added table.
|
||||
* plzip.texi (Program design): Added a block diagram.
|
||||
|
||||
2017-04-12 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.6 released.
|
||||
|
@ -13,11 +34,11 @@
|
|||
* main.cc: Added new option '-a, --trailing-error'.
|
||||
* main.cc (main): Delete '--output' file if infd is a terminal.
|
||||
* main.cc (main): Don't use stdin more than once.
|
||||
* lzip.texi: Added chapters 'Trailing data' and 'Examples'.
|
||||
* plzip.texi: Added chapters 'Trailing data' and 'Examples'.
|
||||
* configure: Avoid warning on some shells when testing for g++.
|
||||
* Makefile.in: Detect the existence of install-info.
|
||||
* testsuite/check.sh: A POSIX shell is required to run the tests.
|
||||
* testsuite/check.sh: Don't check error messages.
|
||||
* check.sh: A POSIX shell is required to run the tests.
|
||||
* check.sh: Don't check error messages.
|
||||
|
||||
2015-07-09 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
|
@ -30,7 +51,7 @@
|
|||
* dec_stream.cc: Don't use output packets or muxer when testing.
|
||||
* Make '-dvvv' and '-tvvv' show dictionary size like lzip.
|
||||
* lzip.h: Added missing 'const' to the declaration of 'compress'.
|
||||
* lzip.texi: Added chapters 'Memory requirements' and
|
||||
* plzip.texi: Added chapters 'Memory requirements' and
|
||||
'Minimum file sizes'.
|
||||
* Makefile.in: Added new targets 'install*-compress'.
|
||||
|
||||
|
@ -99,7 +120,7 @@
|
|||
|
||||
* Version 0.6 released.
|
||||
* Small portability fixes.
|
||||
* lzip.texinfo: Added chapter 'Program Design' and description
|
||||
* plzip.texinfo: Added chapter 'Program Design' and description
|
||||
of option '--threads'.
|
||||
* Debug stats have been fixed.
|
||||
|
||||
|
@ -148,7 +169,7 @@
|
|||
until something better appears on the net.
|
||||
|
||||
|
||||
Copyright (C) 2009-2017 Antonio Diaz Diaz.
|
||||
Copyright (C) 2009-2018 Antonio Diaz Diaz.
|
||||
|
||||
This file is a collection of facts, and thus it is not copyrightable,
|
||||
but just in case, you have unlimited permission to copy, distribute and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue