ChangeLog
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:5k
源码类别:

浏览器

开发平台:

Unix_Linux

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