home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / UNZ_OS2.ZIP / UNZIP2.DOC < prev    next >
Text File  |  1989-08-16  |  4KB  |  138 lines

  1.   
  2.   
  3.                                    UnZip
  4.   
  5.                            Version 1.1ß, 03-06-89
  6.   
  7.                            Zipfile Extract Utility
  8.   
  9.                                  UnZip11.ZIP
  10.   
  11.           Copyright (C) 1989 Samuel H. Smith;  ALL RIGHTS RESERVED
  12.   
  13.   
  14.                         This program is supported by:
  15.   
  16.                               The Tool Shop BBS
  17.                                  Phoenix, AZ
  18.                              (602) 264-3969 (HST)
  19.                           (602) 279-2673 (HAYES 9600)
  20.   
  21.   
  22. 'UnZip' is a small zipfile extract utility.   It is written to be as
  23. small portable as possible and is intended to be starting point for
  24. implementation of .ZIP files in non-IBM environments.
  25.  
  26. Source code is provided in C and Turbo Pascal.  If you port this program
  27. to a non-IBM system, I would appreciate a copy of the ported source and
  28. exe files.
  29.  
  30.  
  31. Usage
  32. -----
  33.    unzip filename               ;C version
  34.    unz filename                 ;pascal version
  35.    unzip filename               ;OS/2 version
  36.  
  37. Example
  38. -------
  39.    unzip test
  40.    unzip test.z
  41.  
  42.  
  43. Revision history
  44. ----------------
  45.  
  46. 3-3-89
  47.    Initial alpha test release.  The 'unshrink' procedure is now working
  48.    partially.  It stops when the 'partial clear' code is received (this
  49.    happens after about 30k of text has already been seen).  Look for a
  50.    fix to this last unshrink bug in the next week.
  51.  
  52. 3-5-89
  53.    First fully operational release.  Does not implement CRC verification,
  54.    but should correctly unzip all compression methods.
  55.  
  56. 3-6-89
  57.    Corrected end-of-file detection in both shrink and reduce expanders.
  58.    Resulting files should now always have the correct size.  Added ".ZIP"
  59.    default to unzip.c to match calling conventions of unz.pas.
  60.  
  61. 24-July-89
  62.    Malcolm Greenhalgh.
  63.    Modified the C source of UNZIP to work with OS/2 (MS c v5.1). It is
  64.    complied to run in standard OS/2 v1.0 and v1.1, and can be run within
  65.    a Presentation Manager test-window.
  66.    This version to be called UNZIP2 when distributed, however to keep
  67.    commonality, can be renamed to UNZIP when installed.
  68.  
  69.  
  70. LICENSE
  71. =======
  72.  
  73.    SourceWare: What is it?
  74.    -----------------------
  75.  
  76.    SourceWare is my name for a unique concept in user supported 
  77.    software. 
  78.    
  79.    Programs distributed under the SourceWare concept always offer
  80.    complete source code. 
  81.  
  82.    This package can be freely distributed so long as it is not 
  83.    modified or sold for profit.  If you find that this program is 
  84.    valuable,  you can send me a donation for what you think it is 
  85.    worth.  I suggest about $20. 
  86.  
  87.    Send your contributions to:
  88.       Samuel. H. Smith
  89.       5119 N. 11 ave 332
  90.       Phoenix, Az 85013
  91.  
  92.  
  93.    Why SourceWare?
  94.    ---------------
  95.  
  96.    Why do I include source code?  Why isn't the donation 
  97.    manditory?  The value of good software should be self-evident.  
  98.    The source code is the key to complete understanding of a 
  99.    program.  You can read it to find out how things are done.  You 
  100.    can also change it to suit your needs, so long as you do not 
  101.    distribute the modified version without my consent. 
  102.  
  103.  
  104.    Copyright
  105.    ---------
  106.  
  107.    If you modify this program, I would appreciate a copy of the 
  108.    new source code.   I am holding the copyright on the source 
  109.    code, so please don't delete my name from the program files or 
  110.    from the documentation. 
  111.  
  112.  
  113.  
  114.  
  115. SUPPORT
  116. =======
  117.  
  118.    I work very hard to produce a software package of the highest 
  119.    quality and functionality.  I try to look into all reported 
  120.    bugs, and will generally fix reported problems within a few 
  121.    days.  
  122.  
  123.    Since this is user supported software under the SourceWare 
  124.    concept,  I don't expect you to contribute if you don't like it 
  125.    or if it doesn't meet your needs. 
  126.  
  127.    If you have any questions, bugs, or suggestions, please contact 
  128.    me at: 
  129.        The Tool Shop BBS
  130.       (602) 264-3969 (HST 9600)
  131.       (602) 279-2673 (HAYES 9600)
  132.  
  133.    The latest version is always available for downloading. 
  134.  
  135.    Enjoy!     Samuel H. Smith
  136.               Author and Sysop of The Tool Shop.
  137.    
  138.