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