diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,10 +1,22 @@ | |||
1 | ChangeLog file for zlib | 1 | ChangeLog file for zlib |
2 | 2 | ||
3 | Changes in 0.9 (1 May 95) | ||
4 | - don't assume that zalloc clears the allocated memory (the TurboC bug | ||
5 | was Mark's bug after all :) | ||
6 | - let again gzread copy uncompressed data unchanged (was working in 0.71) | ||
7 | - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented | ||
8 | - added a test of inflateSync in example.c | ||
9 | - moved MAX_WBITS to zconf.h because users might want to change that. | ||
10 | - document explicitly that zalloc(64K) on MSDOS must return a normalized | ||
11 | pointer (zero offset) | ||
12 | - added Makefiles for Microsoft C, Turbo C, Borland C++ | ||
13 | |||
3 | Changes in 0.8 (29 April 95) | 14 | Changes in 0.8 (29 April 95) |
4 | - added fast inflate (inffast.c) | 15 | - added fast inflate (inffast.c) |
5 | - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this | 16 | - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this |
6 | is incompatible with previous versions of zlib which returned Z_OK. | 17 | is incompatible with previous versions of zlib which returned Z_OK. |
7 | - work around a TurboC compiler bug (bad code for b << 0, see infutil.h) | 18 | - work around a TurboC compiler bug (bad code for b << 0, see infutil.h) |
19 | (actually that was not a compiler bug, see 0.81 above) | ||
8 | - gzread no longer reads one extra byte in certain cases | 20 | - gzread no longer reads one extra byte in certain cases |
9 | - In gzio destroy(), don't reference a freed structure | 21 | - In gzio destroy(), don't reference a freed structure |
10 | - avoid many warnings for MSDOS | 22 | - avoid many warnings for MSDOS |