history.txt 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. HISTORY of the LZMA SDK
  2. -----------------------
  3. 4.65 2009-02-03
  4. -------------------------
  5. - Some minor fixes
  6. 4.63 2008-12-31
  7. -------------------------
  8. - Some minor fixes
  9. 4.61 beta 2008-11-23
  10. -------------------------
  11. - The bug in ANSI-C LZMA Decoder was fixed:
  12. If encoded stream was corrupted, decoder could access memory
  13. outside of allocated range.
  14. - Some changes in ANSI-C 7z Decoder interfaces.
  15. - LZMA SDK is placed in the public domain.
  16. 4.60 beta 2008-08-19
  17. -------------------------
  18. - Some minor fixes.
  19. 4.59 beta 2008-08-13
  20. -------------------------
  21. - The bug was fixed:
  22. LZMA Encoder in fast compression mode could access memory outside of
  23. allocated range in some rare cases.
  24. 4.58 beta 2008-05-05
  25. -------------------------
  26. - ANSI-C LZMA Decoder was rewritten for speed optimizations.
  27. - ANSI-C LZMA Encoder was included to LZMA SDK.
  28. - C++ LZMA code now is just wrapper over ANSI-C code.
  29. 4.57 2007-12-12
  30. -------------------------
  31. - Speed optimizations in Ñ++ LZMA Decoder.
  32. - Small changes for more compatibility with some C/C++ compilers.
  33. 4.49 beta 2007-07-05
  34. -------------------------
  35. - .7z ANSI-C Decoder:
  36. - now it supports BCJ and BCJ2 filters
  37. - now it supports files larger than 4 GB.
  38. - now it supports "Last Write Time" field for files.
  39. - C++ code for .7z archives compressing/decompressing from 7-zip
  40. was included to LZMA SDK.
  41. 4.43 2006-06-04
  42. -------------------------
  43. - Small changes for more compatibility with some C/C++ compilers.
  44. 4.42 2006-05-15
  45. -------------------------
  46. - Small changes in .h files in ANSI-C version.
  47. 4.39 beta 2006-04-14
  48. -------------------------
  49. - The bug in versions 4.33b:4.38b was fixed:
  50. C++ version of LZMA encoder could not correctly compress
  51. files larger than 2 GB with HC4 match finder (-mfhc4).
  52. 4.37 beta 2005-04-06
  53. -------------------------
  54. - Fixes in C++ code: code could no be compiled if _NO_EXCEPTIONS was defined.
  55. 4.35 beta 2005-03-02
  56. -------------------------
  57. - The bug was fixed in C++ version of LZMA Decoder:
  58. If encoded stream was corrupted, decoder could access memory
  59. outside of allocated range.
  60. 4.34 beta 2006-02-27
  61. -------------------------
  62. - Compressing speed and memory requirements for compressing were increased
  63. - LZMA now can use only these match finders: HC4, BT2, BT3, BT4
  64. 4.32 2005-12-09
  65. -------------------------
  66. - Java version of LZMA SDK was included
  67. 4.30 2005-11-20
  68. -------------------------
  69. - Compression ratio was improved in -a2 mode
  70. - Speed optimizations for compressing in -a2 mode
  71. - -fb switch now supports values up to 273
  72. - The bug in 7z_C (7zIn.c) was fixed:
  73. It used Alloc/Free functions from different memory pools.
  74. So if program used two memory pools, it worked incorrectly.
  75. - 7z_C: .7z format supporting was improved
  76. - LZMA# SDK (C#.NET version) was included
  77. 4.27 (Updated) 2005-09-21
  78. -------------------------
  79. - Some GUIDs/interfaces in C++ were changed.
  80. IStream.h:
  81. ISequentialInStream::Read now works as old ReadPart
  82. ISequentialOutStream::Write now works as old WritePart
  83. 4.27 2005-08-07
  84. -------------------------
  85. - The bug in LzmaDecodeSize.c was fixed:
  86. if _LZMA_IN_CB and _LZMA_OUT_READ were defined,
  87. decompressing worked incorrectly.
  88. 4.26 2005-08-05
  89. -------------------------
  90. - Fixes in 7z_C code and LzmaTest.c:
  91. previous versions could work incorrectly,
  92. if malloc(0) returns 0
  93. 4.23 2005-06-29
  94. -------------------------
  95. - Small fixes in C++ code
  96. 4.22 2005-06-10
  97. -------------------------
  98. - Small fixes
  99. 4.21 2005-06-08
  100. -------------------------
  101. - Interfaces for ANSI-C LZMA Decoder (LzmaDecode.c) were changed
  102. - New additional version of ANSI-C LZMA Decoder with zlib-like interface:
  103. - LzmaStateDecode.h
  104. - LzmaStateDecode.c
  105. - LzmaStateTest.c
  106. - ANSI-C LZMA Decoder now can decompress files larger than 4 GB
  107. 4.17 2005-04-18
  108. -------------------------
  109. - New example for RAM->RAM compressing/decompressing:
  110. LZMA + BCJ (filter for x86 code):
  111. - LzmaRam.h
  112. - LzmaRam.cpp
  113. - LzmaRamDecode.h
  114. - LzmaRamDecode.c
  115. - -f86 switch for lzma.exe
  116. 4.16 2005-03-29
  117. -------------------------
  118. - The bug was fixed in LzmaDecode.c (ANSI-C LZMA Decoder):
  119. If _LZMA_OUT_READ was defined, and if encoded stream was corrupted,
  120. decoder could access memory outside of allocated range.
  121. - Speed optimization of ANSI-C LZMA Decoder (now it's about 20% faster).
  122. Old version of LZMA Decoder now is in file LzmaDecodeSize.c.
  123. LzmaDecodeSize.c can provide slightly smaller code than LzmaDecode.c
  124. - Small speed optimization in LZMA C++ code
  125. - filter for SPARC's code was added
  126. - Simplified version of .7z ANSI-C Decoder was included
  127. 4.06 2004-09-05
  128. -------------------------
  129. - The bug in v4.05 was fixed:
  130. LZMA-Encoder didn't release output stream in some cases.
  131. 4.05 2004-08-25
  132. -------------------------
  133. - Source code of filters for x86, IA-64, ARM, ARM-Thumb
  134. and PowerPC code was included to SDK
  135. - Some internal minor changes
  136. 4.04 2004-07-28
  137. -------------------------
  138. - More compatibility with some C++ compilers
  139. 4.03 2004-06-18
  140. -------------------------
  141. - "Benchmark" command was added. It measures compressing
  142. and decompressing speed and shows rating values.
  143. Also it checks hardware errors.
  144. 4.02 2004-06-10
  145. -------------------------
  146. - C++ LZMA Encoder/Decoder code now is more portable
  147. and it can be compiled by GCC on Linux.
  148. 4.01 2004-02-15
  149. -------------------------
  150. - Some detection of data corruption was enabled.
  151. LzmaDecode.c / RangeDecoderReadByte
  152. .....
  153. {
  154. rd->ExtraBytes = 1;
  155. return 0xFF;
  156. }
  157. 4.00 2004-02-13
  158. -------------------------
  159. - Original version of LZMA SDK
  160. HISTORY of the LZMA
  161. -------------------
  162. 2001-2008: Improvements to LZMA compressing/decompressing code,
  163. keeping compatibility with original LZMA format
  164. 1996-2001: Development of LZMA compression format
  165. Some milestones:
  166. 2001-08-30: LZMA compression was added to 7-Zip
  167. 1999-01-02: First version of 7-Zip was released
  168. End of document