home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume8 / unzip_gs / unzip.doc < prev   
Text File  |  1989-09-23  |  3KB  |  104 lines

  1.   
  2.                                    UnZip
  3.   
  4.                            Version 2.0.1, 09-16-89
  5.   
  6.                            Zipfile Extract Utility
  7.   
  8.           Copyright (C) 1989 Samuel H. Smith;  ALL RIGHTS RESERVED
  9.   
  10.   
  11. 'UnZip' is a small Zipfile extract utility.   It is written to be as
  12. small and portable as possible -- ideal as a starting point for handling
  13. .ZIP files in non-IBM environments.
  14.  
  15. Source code is provided in C and Turbo Pascal.  If you port this program
  16. to a non-IBM system, I would appreciate a copy of the ported source and
  17. exec files.
  18.  
  19.  
  20. Usage
  21. -----
  22.    unz filename[.zip]           ;pascal language version
  23.    unzip filename[.zip]         ;C language version
  24.  
  25.  
  26. Revision history
  27. ----------------
  28.  
  29. 3-3-89
  30.    Initial alpha test release.
  31.  
  32. 3-5-89
  33.    First fully operational release.  Does not implement CRC verification,
  34.    but should correctly unzip all compression methods.
  35.  
  36. 3-6-89
  37.    Corrected end-of-file detection in both shrink and reduce expanders.
  38.    Resulting files should now always have the correct size.  Added ".ZIP"
  39.    default to unzip.c to match calling conventions of unz.pas.
  40.  
  41. 3-8-89
  42.    Moved machine and operating-system specific code to a block starting
  43.    around line 180.  Added code to swap bytes on host machines that
  44.    store the high order bytes in lower address locations than the low
  45.    order bytes.
  46.  
  47. 3-15-89
  48.    Added CRC checking in UNZIP.C.  Speeded operation by about 150%.
  49.  
  50.    I'm spending my time on the C version now and don't plan to do any
  51.    further work on the pascal.  If you're using the pascal version
  52.    please contact me.
  53.  
  54. 9-9-89
  55.    Addition of new "un-implode" logic to handle new compression format
  56.    included with PKZ101.
  57.  
  58. 9-16-89
  59.    Portable version created by George M. Sipe (rebel!george).  Should
  60.    now more easily be ported to other systems and compilers.
  61.  
  62.  
  63.  
  64. LICENSE
  65. =======
  66.  
  67. You may copy and distribute this program freely, provided that:
  68.     1)   No fee is charged for such copying and distribution, and
  69.     2)   It is distributed ONLY in its original, unmodified state.
  70.  
  71. If you wish to distribute a modified version of this program, you MUST
  72. include the source code.
  73.  
  74. If you modify this program, I would appreciate a copy of the new source
  75. code.  I am holding the copyright on the source code, so please don't
  76. delete my name from the program files or from the documentation.
  77.  
  78.  
  79. SUPPORT
  80. =======
  81.  
  82. I work very hard to produce a software package of the highest quality
  83. and functionality.  I try to look into all reported bugs, and will
  84. generally fix reported problems within a few days.
  85.  
  86. IN NO EVENT WILL I BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING ANY LOST
  87. PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES
  88. ARISING OUT OF YOUR USE OR INABILITY TO USE THE PROGRAM, OR FOR ANY
  89. CLAIM BY ANY OTHER PARTY.
  90.  
  91. If you have any questions, bugs, or suggestions, please contact me at:
  92.  
  93.                   The Tool Shop BBS
  94.                   (602) 279-2673 (FREE LINE, USR 2400)
  95.                   (602) 264-3969 (HST 9600)
  96.                   (602) 270-0239 (HAYES 9600)
  97.  
  98. The latest version is always available for downloading.  (Except
  99. possibly this portable version.)
  100.  
  101. Enjoy!     Samuel H. Smith
  102.            Author and Sysop of The Tool Shop.
  103.    
  104.