history.txt 5.6 KB

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