Adding upstream version 1.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
f0061db313
commit
8d95be3bd8
23 changed files with 710 additions and 380 deletions
35
ChangeLog
35
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2011-01-03 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
* Version 1.1 released.
|
||||
* Compression time has been reduced by 2%.
|
||||
* All declarations not belonging to the API have been
|
||||
encapsulated in the namespace `Lzlib'.
|
||||
* testsuite: `test1' renamed to `test.txt'. Added new tests.
|
||||
* Match length limits set by options -1 to -9 of minilzip have
|
||||
been changed to match those of lzip 1.11.
|
||||
* main.cc: Set stdin/stdout in binary mode on OS2.
|
||||
* bbexample.cc: New file containing example functions for
|
||||
buffer-to-buffer compression/decompression.
|
||||
|
||||
2010-05-08 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
* Version 1.0 released.
|
||||
|
@ -5,7 +18,7 @@
|
|||
* Added new function LZ_decompress_member_version.
|
||||
* Added new function LZ_decompress_dictionary_size.
|
||||
* Added new function LZ_decompress_data_crc.
|
||||
* Variables declared "extern" have been encapsulated in a
|
||||
* Variables declared `extern' have been encapsulated in a
|
||||
namespace.
|
||||
* main.cc: Fixed warning about fchown's return value being ignored.
|
||||
* decoder.h: Input_buffer integrated in Range_decoder.
|
||||
|
@ -14,7 +27,7 @@
|
|||
|
||||
* Version 0.9 released.
|
||||
* Compression time has been reduced by 8%.
|
||||
* main.cc: New constant "o_binary".
|
||||
* main.cc: New constant `o_binary'.
|
||||
|
||||
2010-01-17 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
|
@ -23,18 +36,18 @@
|
|||
* Added new function LZ_decompress_sync_to_member.
|
||||
* Added new function LZ_decompress_write_size.
|
||||
* Added new function LZ_strerror.
|
||||
* lzlib.h: API change. Replaced "enum" with functions for values
|
||||
* lzlib.h: API change. Replaced `enum' with functions for values
|
||||
of dictionary size limits to make interface names consistent.
|
||||
* lzlib.h: API change. "LZ_errno" replaced with "LZ_Errno".
|
||||
* lzlib.h: API change. Replaced "void *" with "struct LZ_Encoder *"
|
||||
and "struct LZ_Decoder *" to make interface type safe.
|
||||
* lzlib.h: API change. `LZ_errno' replaced with `LZ_Errno'.
|
||||
* lzlib.h: API change. Replaced `void *' with `struct LZ_Encoder *'
|
||||
and `struct LZ_Decoder *' to make interface type safe.
|
||||
* decoder.cc: Truncated member trailer is now correctly detected.
|
||||
* encoder.cc: Matchfinder::reset now also clears at_stream_end_,
|
||||
allowing LZ_compress_restart_member to restart a finished stream.
|
||||
* lzlib.cc: Accept only query or close operations after a fatal
|
||||
error has occurred.
|
||||
* Shared version of lzlib is no more built by default.
|
||||
* testsuite/check.sh: Use "test1" instead of "COPYING" for testing.
|
||||
* testsuite/check.sh: Use `test1' instead of `COPYING' for testing.
|
||||
|
||||
2009-10-20 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
|
@ -60,7 +73,7 @@
|
|||
* Added new function LZ_compress_sync_flush.
|
||||
* Added new function LZ_compress_write_size.
|
||||
* Decompression speed has been improved.
|
||||
* Added chapter "Buffering" to the manual.
|
||||
* Added chapter `Buffering' to the manual.
|
||||
|
||||
2009-05-03 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
|
@ -78,8 +91,8 @@
|
|||
* Version 0.1 released.
|
||||
|
||||
|
||||
Copyright (C) 2009, 2010 Antonio Diaz Diaz.
|
||||
Copyright (C) 2009, 2010, 2011 Antonio Diaz Diaz.
|
||||
|
||||
This file is a collection of facts, and thus it is not copyrightable,
|
||||
but just in case, I give you unlimited permission to copy, distribute
|
||||
and modify it.
|
||||
but just in case, you have unlimited permission to copy, distribute and
|
||||
modify it.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue