]> git.lizzy.rs Git - zlib.git/blob - ChangeLog
zlib 0.93
[zlib.git] / ChangeLog
1                 ChangeLog file for zlib
2
3 Changes in 0.93 (25 June 95)
4 - temporarily disable inline functions
5 - make deflate deterministic
6 - give enough lookahead for PARTIAL_FLUSH
7 - Set binary mode for stdin/stdout in minigzip.c for OS/2
8 - don't even use signed char in inflate (not portable enough)
9 - fix inflate memory leak for segmented architectures
10
11 Changes in 0.92 (3 May 95)
12 - don't assume that char is signed (problem on SGI)
13 - Clear bit buffer when starting a stored block
14 - no memcpy on Pyramid
15 - suppressed inftest.c
16 - optimized fill_window, put longest_match inline for gcc
17 - optimized inflate on stored blocks.
18 - untabify all sources to simplify patches
19
20 Changes in 0.91 (2 May 95)
21 - Default MEM_LEVEL is 8 (not 9 for Unix) as documented in zlib.h
22 - Document the memory requirements in zconf.h
23 - added "make install"
24 - fix sync search logic in inflateSync
25 - deflate(Z_FULL_FLUSH) now works even if output buffer too short
26 - after inflateSync, don't scare people with just "lo world"
27 - added support for DJGPP
28
29 Changes in 0.9 (1 May 95)
30 - don't assume that zalloc clears the allocated memory (the TurboC bug
31   was Mark's bug after all :)
32 - let again gzread copy uncompressed data unchanged (was working in 0.71)
33 - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
34 - added a test of inflateSync in example.c
35 - moved MAX_WBITS to zconf.h because users might want to change that.
36 - document explicitly that zalloc(64K) on MSDOS must return a normalized
37   pointer (zero offset)
38 - added Makefiles for Microsoft C, Turbo C, Borland C++
39 - faster crc32()
40
41 Changes in 0.8 (29 April 95)
42 - added fast inflate (inffast.c)
43 - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
44   is incompatible with previous versions of zlib which returned Z_OK.
45 - work around a TurboC compiler bug (bad code for b << 0, see infutil.h)
46   (actually that was not a compiler bug, see 0.81 above)
47 - gzread no longer reads one extra byte in certain cases
48 - In gzio destroy(), don't reference a freed structure
49 - avoid many warnings for MSDOS
50 - avoid the ERROR symbol which is used by MS Windows
51
52 Changes in 0.71 (14 April 95)
53 - Fixed more MSDOS compilation problems :( There is still a bug with
54   TurboC large model.
55
56 Changes in 0.7 (14 April 95)
57 - Added full inflate support.
58 - Simplified the crc32() interface. The pre- and post-conditioning
59   (one's complement) is now done inside crc32(). WARNING: this is
60   incompatible with previous versions; see zlib.h for the new usage.
61
62 Changes in 0.61 (12 April 95)
63 - workaround for a bug in TurboC. example and minigzip now work on MSDOS.
64
65 Changes in 0.6 (11 April 95)
66 - added minigzip.c
67 - added gzdopen to reopen a file descriptor as gzFile
68 - added transparent reading of non-gziped files in gzread.
69 - fixed bug in gzread (don't read crc as data)
70 - fixed bug in destroy (gzio.c) (don't return Z_STREAM_END for gzclose).
71 - don't allocate big arrays in the stack (for MSDOS)
72 - fix some MSDOS compilation problems
73
74 Changes in 0.5:
75 - do real compression in deflate.c. Z_PARTIAL_FLUSH is supported but
76   not yet Z_FULL_FLUSH.
77 - support decompression but only in a single step (forced Z_FINISH)
78 - added opaque object for zalloc and zfree.
79 - added deflateReset and inflateReset
80 - added a variable zlib_version for consistency checking.
81 - renamed the 'filter' parameter of deflateInit2 as 'strategy'.
82   Added Z_FILTERED and Z_HUFFMAN_ONLY constants.
83
84 Changes in 0.4:
85 - avoid "zip" everywhere, use zlib instead of ziplib.
86 - suppress Z_BLOCK_FLUSH, interpret Z_PARTIAL_FLUSH as block flush
87   if compression method == 8.
88 - added adler32 and crc32
89 - renamed deflateOptions as deflateInit2, call one or the other but not both
90 - added the method parameter for deflateInit2.
91 - added inflateInit2
92 - simplied considerably deflateInit and inflateInit by not supporting
93   user-provided history buffer. This is supported only in deflateInit2
94   and inflateInit2.
95
96 Changes in 0.3:
97 - prefix all macro names with Z_
98 - use Z_FINISH instead of deflateEnd to finish compression.
99 - added Z_HUFFMAN_ONLY
100 - added gzerror()