home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lzo100.zip / lzo-1.00 / NEWS < prev    next >
Text File  |  1997-07-13  |  5KB  |  131 lines

  1. ============================================================================
  2. User visible changes for LZO -- a real-time data compression library
  3. ============================================================================
  4.  
  5. Changes in 1.00 (13 Jul 1997)
  6.   * added miniLZO - can be easily included in your project
  7.   * improved documentation, added LZO.FAQ
  8.   * added build scripts for many systems where Autoconf is not available:
  9.     Windows 3.1 (LIB+DLL), Windows 95/NT (LIB+DLL), DOS (16+32 bit), OS/2
  10.   * adapted for Automake 1.2 and libtool 1.0
  11.  
  12. Changes in 0.90 (27 Jun 1997): never released
  13.   * LZO now uses GNU Automake 1.0 - lots of configuration changes
  14.   * added LZO1X-1(11): this version needs only 8kB for compression
  15.   * implemented LZO1Y-1
  16.   * added i386 assembler decompressors for MASM/TASM/WASM
  17.   * the name of some assembler functions changed
  18.   * the numeric value of some error codes changed
  19.   * portability fixes
  20.  
  21. Changes in 0.29 (04 May 1997)
  22.   * Linux ELF shared library support
  23.   * workaround for gcc 2.7.2 optimizer bug under AIX
  24.   * added lzo_crc32() checksum
  25.  
  26. Changes in 0.28 (22 Feb 1997)
  27.   * new algorithm LZO1Y: LZO1Y-999 and LZO1Y decompressor
  28.   * added lzo1x_optimize() and lzo1y_optimize()
  29.   * minor speedup in assembler decompressors (i386+gcc)
  30.   * lzo_test.c rewritten
  31.  
  32. Changes in 0.27 (19 Jan 1997)
  33.   * fixed a bug in LZO1B-999 and LZO1C-999 that could produce
  34.     invalid compressed data in very rare cases
  35.  
  36. Changes in 0.26 (18 Jan 1997): never released
  37.   * LZO is now distributed under the GNU General Public License (GPL)
  38.   * implemented LZO1B-999
  39.   * renamed LZO1D to LZO2A (also updated all docs)
  40.   * some cleanups
  41.  
  42. Changes in 0.25 (28 Dec 1996): never released
  43.   * some portability fixes (LZO now works on my old Atari ST :-)
  44.   * adapted for Autoconf 2.12
  45.  
  46. Changes in 0.24 (30 Nov 1996): never released
  47.   * improved Pentium performance of LZO1X assembler decompressor (i386+gcc)
  48.  
  49. Changes in 0.23 (23 Nov 1996)
  50.   * added LZO1C, LZO1F and LZO1X decompressors in assembler (i386+gcc)
  51.   * added corresponding LZO_PUBLIC to all LZO_EXTERN functions
  52.   * added support for Microsoft C 7.0 (16 bit MSDOS)
  53.   * introduced lzo_uint32. This could prove useful for a strict 16 bit
  54.     version that doesn't use 'huge' pointers.
  55.   * all algorithms use incremental hashing now
  56.   * some cleanups and portability fixes
  57.  
  58. Changes in 0.22 (19 Sep 1996)
  59.   * LZO1X: minor decompressor speedup, added some checks in safe decompressor
  60.   * Autoconf: added detection of gcc strength-reduction bug
  61.   * Makefile changes
  62.  
  63. Changes in 0.21 (08 Sep 1996)
  64.   * LZO now uses GNU Autoconf 2.10 - lots of configuration changes
  65.   * a few cosmetical changes
  66.   * added 'official' LZO benchmark (see util/bench.sh)
  67.  
  68. Changes in 0.20 (11 Aug 1996)
  69.   * new algorithm LZO1X: LZO1X-1, LZO1X-999 and LZO1X decompressor
  70.   * significantly speeded up LZO1B, LZO1C and LZO1F decompressors
  71.     on CPUs which allow unaligned memory access (e.g. Intel 80x86)
  72.   * greatly speeded up LZO2A-999 compressor at the cost of some memory
  73.   * some cleanups, portability fixes and minor speedups
  74.  
  75. Changes in 0.16 (22 Jul 1996)
  76.   * speeded up LZO1F decompressor a little bit
  77.   * improved LZO1F-999 compression ratio
  78.   * removed contrib directory
  79.  
  80. Changes in 0.15 (10 Jul 1996)
  81.   * new algorithm LZO1F: LZO1F-1, LZO1F-999 and LZO1F decompressor
  82.   * improved LZO2A-999 compression ratio
  83.   * removed LZO1E as it is dominated by LZO1F
  84.  
  85. Changes in 0.14 (06 Jul 1996): never released
  86.   * experimental algorithms: LZO1E and LZO1F
  87.   * added LZO_EXTERN to all prototypes. Useful when building a DLL.
  88.   * improved LZO1C-999 and LZO2A-999 compression ratio a little bit
  89.   * fixed progress indicator callback (it was called only once)
  90.  
  91. Changes in 0.13 (20 Jun 1996)
  92.   * LZO2A compressed data format changed from v0.12
  93.   * some speed improvements in LZO1C-999 and LZO2A-999
  94.  
  95. Changes in 0.12 (18 Jun 1996): never released
  96.   * added standalone version of LZO1C-1 compressor and LZO1C decompressor
  97.     in the ./extra directory for easy inclusion in applications
  98.   * added LZO1C-999, a slow but nearly optimal compressor
  99.     intended for generating pre-compressed data
  100.   * added tests for lookbehind-overrun in all safe decompressors
  101.   * source tree completely rearranged, some filenames changed
  102.   * extensions changed: a .ch file is a C source code that is included
  103.     for reasons of code sharing
  104.   * new algorithm LZO2A: LZO2A-999 and LZO2A decompressor. There is
  105.     no fast compressor yet.
  106.   * some cleanups
  107.  
  108. Changes in 0.11 (29 May 1996)
  109.   * source tree rearranged
  110.   * LZO now compiles fine as a C++ library (interface still has C linkage)
  111.   * improved overall compression ratio a little bit
  112.   * LZO1B-99/LZO1C-99 now search for longer matches (MATCH_IP_END)
  113.   * LZO_HASH_LZO_INCREMENTAL is working, it's a little bit faster
  114.   * added unused_dict_entries in statistics
  115.   * Makefile changed
  116.   * fixed a typo in COPY_M2X
  117.   * added lzo_uint and lzo_sizeof in some places
  118.   * split LZO1B compressor into even more include-files
  119.  
  120. Changes in 0.10 (20 May 1996): first public release of the LZO library
  121.   * includes LZO1, LZO1A, LZO1B and LZO1C algorithms
  122.     (compression levels 1-9 and 99)
  123.  
  124. 14 Mar 1996:
  125.   * release of the LZO1A algorithm in the Internet newsgroups
  126.     comp.compression and comp.compression.research
  127.  
  128. 04 Mar 1996:
  129.   * release of the LZO1 algorithm in the Internet newsgroups
  130.     comp.compression and comp.compression.research
  131.