home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckc190.zip / ckc190.ann < prev    next >
Text File  |  1994-11-12  |  21KB  |  460 lines

  1. last update: Sun Sep 18 14:46:20 1994
  2.  
  3. Date: Thu Aug 25 17:50:57 1994
  4. From: Frank da Cruz <fdc@columbia.edu>
  5. Subject: Announcing C-Kermit 5A(190) Beta
  6. Keywords: C-Kermit, UNIX C-Kermit, VMS C-Kermit, OS/2 C-Kermit
  7. Keywords: Stratus VOS C-Kermit, AOS/VS C-Kermit, OS-9 C-Kermit
  8. Keywords: QNX C-Kermit, RESEND, Recovery
  9.  
  10. This is to announce a Beta testing period for C-Kermit 5A(190), a new
  11. release of C-Kermit communications software for for UNIX, VMS, OS/2, AOS/VS,
  12. Aegis, OS-9, the Commodore Amiga, the Apple Macintosh, and now also Stratus
  13. VOS.
  14.  
  15. The major new feature of version 5A(190) is the ability to continue file
  16. transfers that failed.  This feature is available in the C-Kermit versions
  17. for:
  18.  
  19.  . UNIX (all versions except 2.xBSD)
  20.  . IBM OS/2 (the 16-bit and 32-bit versions)
  21.  . Digital Equipment Corporation VMS
  22.  . Data General AOS/VS
  23.  . Stratus VOS
  24.  . Commodore Amiga
  25.  
  26. It works only for binary-mode transfers.  For example, suppose you were
  27. transferring a huge binary file between UNIX C-Kermit and OS/2 C-Kermit over
  28. a slow dialup modem connection, and the phone call was disconnected.  Now
  29. you can reconnect and continue the transfer where it left off.  Suppose you
  30. were uploading or downloading a bunch of large ZIP files in binary mode and
  31. the same thing happened -- the new "resend" feature lets you reestablish the
  32. connection and "resend" the same files; the ones that were already
  33. transferred are not transferred again, the one that was partially
  34. transferred is continued where the transfer left off, and the ones that were
  35. not transferred are sent.  All the commands are the same, except you tell
  36. C-Kermit to RESEND instead of to SEND.  This feature will also be available
  37. in the next release of MS-DOS Kermit, 3.14, coming soon, and later maybe
  38. also other Kermit programs too.
  39.  
  40. Other highlights of version 5A(190) include:
  41.  
  42.  . An entirely new C-Kermit implementation for Stratus VOS.
  43.  . Execution of APC escape sequences while in CONNECT mode, just like MS-DOS
  44.     Kermit 3.13, for "auto-download", "auto-upload", and auto-anything-else
  45.     (UNIX, VMS, OS/2); 
  46.  . Macintosh Kermit now works under System 7.1 (on PowerMac, etc).
  47.  . Automatic directory creation for incoming files (UNIX, VMS, OS/2, VOS)
  48.  . Command retry and recall, typeahead now allowed in command mode.
  49.  . Improved transaction logging.
  50.  . MAJOR improvements in OS/2 C-Kermit (see below).
  51.  . A complete, full-featured port of C-Kermit to QNX 4.2.
  52.  . Numerous bug fixes and speedups in all departments, especially
  53.     script programming.
  54.  . Documentation now available in German.
  55.  
  56. And here is a more-detailed list of the changes:
  57.  
  58. NEW OR CHANGED COMMANDS
  59.  
  60. ASK & ASKQ
  61.   Now allow unquoted entry of backslash (\) and question mark (?) for
  62.   more convenient processing of DOS-like file specifications.
  63. DIAL <phone-number>
  64.   For the first time, DIAL is available in the Commodore Amiga version.
  65. FORWARD <label>
  66.   A forward-only GOTO (for speeding up command-file execution).
  67. GETC <variable> <prompt>
  68.   Like ASK, but gets a single character from the keyboard.
  69. IF DIRECTORY <name> <command>
  70.   Execute the <command> if <name> is a directory.
  71. IF NEWER <file1> <file2> <command>
  72.   Execute the <command> if <file1> is newer than <file2>.
  73. INPUT & OUTPUT commands
  74.   Are now buffered for speed.
  75. MINPUT <timeout> <list-of-strings>
  76.   Like INPUT, but looks for multiple input strings simultaneously.
  77. OUTPUT <string>
  78.   String may now contain \N to output a NUL (0).
  79. PSEND <filespec> <position> [ <as-name> ]
  80.   Send a file starting at the given byte position (UNIX, OS/2, Amiga).
  81. REDIRECT command (OS/2, SunOS, AIX, NeXT, ULTRIX, OSF/1, Linux, ...)
  82.   For running external protocols via redirected standard i/o,
  83.   or for use with "term" (mainly UNIX).
  84. REMOTE PWD
  85.   Display remote server's current directory.
  86. REMOTE ASSIGN <name> [ <value> ]
  87.   Client assigns a value to a variable in the remote server's namespace.
  88. REMOTE QUERY { KERMIT, SYSTEM, USER } <name>
  89.   Client retrieves the value of a variable in the remote server's
  90.   namespace, displays it, and makes its value available in the local
  91.   \v(query) variable.
  92. REMOTE SET FILE TYPE { TEXT, BINARY, LABELED }
  93.   LABELED added for VMS, OS/2.
  94. RESEND <filespec> [ <as-name> ]
  95.   Continue a binary-mode transfer from where it was interrupted
  96.   (UNIX, OS/2, AOS/VS, Amiga).
  97. SCRIPT <script-string>
  98.   For the first time, SCRIPT is available in the Commodore Amiga version.
  99. SET COMMAND QUOTING { ON, OFF }
  100.   Turn ON/OFF special processing of \ and ? during command entry (turn it
  101.   off to allow easier entry of DOS-style file specifications).
  102. SET EXIT WARNING { ON, OFF }
  103.   Require confirmation before EXIT or SET HOST/LINE if a connection is
  104.   active.
  105. SET { FILE, TERMINAL } CHARACTER-SET HP-ROMAN8
  106.   New support for the Hewlett-Packard Roman8 character set.
  107. SET TELNET NEWLINE-MODE { ON, OFF, RAW }
  108.   RAW added - send CR as bare CR, rather than CRLF or CR-NUL.
  109. SET TERMINAL APC { ON, OFF, UNCHECKED }
  110.   Whether and how to allow execution of APC escape sequences
  111.   (UNIX, VMS, OS/2).
  112. WRITE-LINE (or WRITELN) <file> <text>
  113.   A system-independent way to write a line of text to a file.
  114.  
  115. GENERAL CHANGES
  116.  
  117. File transfer protocol fixes, speedups, and improvements:
  118.  . Recovery of failed (incomplete) binary-mode transfers.
  119.  . Faster recovery from errors in non-windowed transfers.
  120.  . SET SEND PAUSE to overcome problems with HP-48s, etc.
  121.  . End-of-Attributes attribute (@) now emitted at end of attribute string.
  122.  . Maximum sliding window size increased from 31 to 32.
  123.  . Long G and Y packets now permitted.
  124.  . Improved recovery from echoed packets.
  125.  . Transfer status now indicates success if file refused due to date or name.
  126.  . A bug that made windowed transfers sometimes act like stop & wait, fixed.
  127.  . A bug that (very infrequently) resulted in corrupted files, fixed.
  128. RECEIVE command can be given a disk/directory name for incoming files.
  129. Ability to create directories for incoming files (UNIX, VMS, OS/2, VOS)
  130. File transfer display now includes a "percent done" thermometer graphic.
  131. File transfer display now includes a running display of chars per second.
  132. Repainting of fullscreen file-transfer display (UNIX, VMS).
  133. New command-line options:
  134.  -D n  Delay n seconds before sending
  135.  -R    "remote-only" for faster startup with standard init file
  136.  -N n  NETBIOS adapter number (OS/2 only)
  137. BSEND and TSEND macros in CKERMIT.INI fixed to accept wildcards.
  138. PCGET macro now recovers from errors.
  139. KERMIT READY TO blah ... messages now issued consistently.
  140. Default cancellation sequence changed from 2 to 3 Ctrl-C's.
  141. Services directory now allows specification of host prompts.
  142. Many annoying pauses between commands removed.
  143. TRANSLATE command fixed for Latin-2 based character sets.
  144. Command retry, command history buffer, command recall.
  145. Typeahead is now permitted in interactive command mode.
  146. DIAL now uses no parity during dialing, selected parity after connection.
  147. Crashes during DIAL command (hopefully) all fixed.
  148. DIAL and SCRIPT commands added to Commodore Amiga version.
  149. END and RETURN commands now work from within FOR, WHILE, and XIF.
  150. CD commands in "application files" were broken, now fixed.
  151. Various commands now allow spaces in directory or filenames if enclosed in
  152.   braces.
  153.  
  154. NEW VARIABLES AND FUNCTIONS
  155.  
  156. \v(charset)      - local character set or code page.
  157. \v(cols)         - number of columns on (characters across) screen.
  158. \v(connection)   - connection type (serial, tcp/ip, etc).
  159. \v(cps)          - speed in characters-per-second of last file transfer.
  160. \v(dialstatus)   - completion code from DIAL command.
  161. \v(evaluate)     - result of most recent EVALUATE command.
  162. \v(keyboard)     - keyboard type (OS/2 only).
  163. \v(modem)        - current modem type.
  164. \v(newline)      - the system's line terminator.
  165. \v(parity)       - current parity setting.
  166. \v(query)        - result of most recent REMOTE QUERY.
  167. \v(rows)         - number of rows (lines) on screen.
  168. \v(space)        - free space on current storage device.
  169. \v(startup)      - Kermit's startup directory (OS/2 only).
  170. \v(sysid)        - Kermit code for system ID.
  171. \v(terminal)     - terminal type.
  172. \fdate(filename) - returns modification date/time of given file.
  173. \fsize(filename) - returns size of the given file.
  174.  
  175. UNIX IMPROVEMENTS
  176.  
  177. APC support during CONNECT sessions (for auto upload/download/anything-else).
  178. CONNECT-mode speedups, important when C-Kermit is "in the middle".
  179. Interfork-signaling in CONNECT module bulletproofed.
  180. POSIX signal handling now supported, for reliable signals.
  181. New makefile entries and/or systems supported:
  182.   Amdahl UTS + TCP/IP
  183.   Bull DPX/2 BOS/X
  184.   CONSENSYS System V R4 + TCP + curses
  185.   DECstation 5000 MIPS3 CPU    
  186.   FreeBSD
  187.   HP-UX: many variations, big improvements in functionality
  188.   Lynx
  189.   MachTen
  190.   OSF/1 2.0
  191.   QNX 4.2
  192.   Solaris 2.x
  193.   Solaris 2.x + SunLink X.25
  194.   UnixWare 1.1 + curses + TCP/IP
  195. System-wide initialization file is now an option.
  196. TELNET window (i.e. screen) size negotiation, SIGWINCH trapping.
  197. RTS/CTS flow control added for Linux, NetBSD, FreeBSD, OSF/1, SCO ODT 3.0,..
  198. Support for higher serial speeds added for Linux, HP-UX, QNX, etc.
  199. FIONREAD and select() support added for Linux.
  200. (Optional) FSSTND compliance for Linux.
  201. Correct handling of file date/time in 4.4BSD, BSDI, etc.
  202.  
  203. IMPROVEMENTS FOR VMS AND OPENVMS, VAX AND ALPHA AXP
  204.  
  205. APC support during CONNECT sessions (for auto upload/download/anything-else).
  206. Problems running from DCL procedures, SPAWN'd, in batch, etc - fixed.
  207. New support for CMU/Tektronix TCP/IP.
  208. Append-to-file operations now available.
  209. SET SPEED problems fixed.
  210. Console terminal flow-control fixed.
  211. Automatic compensation for systems SYSGEN'd with small MAXFUFs, etc.
  212. GNU CC and DEC C compatibility.
  213. TRANSMIT command fixed to handle VMS-specific file types sensibly.
  214. Session-log record format fixed.
  215. TELNET window (i.e. screen) size negotiation.
  216. New sensible completion codes for RUN, SPAWN, !, @, DIR, etc.
  217.  
  218. MACINTOSH KERMIT 0.991(190)
  219.  
  220. Now works with System 7.1 and later on Power Macs, etc:
  221.   downloads files without crashing.
  222. Many commands fixed or added that never worked before:
  223.   CD, PWD, DIRECTORY
  224.   OPEN READ / READ / CLOSE READ
  225.   LOG { SESSION, TRANSACTION, PACKETS }
  226.   Log files and other text files now in TeachText format
  227.   LOG DEBUG goes to a window.
  228.   SET FILE TYPE { TEXT, BINARY, MACBINARY }
  229. File transfer display improved:
  230.   Direction and mode shown correctly when transfer started from prompt.
  231.   Current directory is shown.
  232. Numerous bugs fixed.
  233. Mac-specific modules can now be compiled with Think C as well as MPW C.
  234.  
  235. OS/2 C-KERMIT IMPROVEMENTS
  236.  
  237. Numerous terminal-emulation improvements:
  238.  . VT220, ANSI, and VT100 emulations added (to VT102 and VT52);
  239.  . Mouse support added: mouse-directed cursor movement, copy-and-paste.
  240.  . Complete support for all VT220 PF, F, keypad, arrow, and editing keys.
  241.  . A big selection of keyboard verbs ("\Kverbs"), as in MS-DOS Kermit,
  242.      including a complete set of VT220 keyboard verbs and a
  243.      new keymap file, CKOVTK2.INI, to set them up for you, and
  244.      allowing the Num Lock key to be used as DEC PF1 (or anything else);
  245.  . Hebrew terminal emulation for use with ALEPH library software;
  246.  . Ability to assign user-defined macros to hot keys via \Kverbs;
  247.  . Executes APC escape sequences, just like MS-DOS Kermit, for
  248.      "auto-download", "auto-upload", and auto-anything-else;
  249.  . Improved colors, color control, new border color;
  250.  . Improved, context-sensitive popup help screens and status lines;
  251.  . Print/Dump screen;
  252.  . Many new host-controlled printer actions;
  253.  . Redirection of printer to file;
  254.  . New screen rollback options and features, increased rollback capacity;
  255.  . TELNET bugs fixed, TELNET screen-size negotiation added;
  256.  . Session debugging display, including graphic display of TELNET
  257.      options, control characters, and escape sequences;
  258.  . Compose Key for composing accented characters;
  259.  . New unique scan codes added for keypad period, Shift-Esc, Tab;
  260.  . Answerback string now includes C-Kermit version number and terminal type;
  261.  . Code page control.
  262.  . SET FLOW KEEP now leaves RTS alone instead of always turning it on.
  263.  
  264. OS/2 C-Kermit file transfer improvements:
  265.  . File transfer recovery.
  266.  . ".LONGNAME" attribute supported on FAT file systems.
  267.  . Automatic directory creation for incoming files.
  268.  . SET FILE TYPE LABELED, a file-transfer mode that transfers OS/2
  269.      files along with all their attributes (read-only, hidden, system,
  270.      and extended), similar to the same facility in VMS C-Kermit.
  271.  . Automatic parity detection during file transfer;
  272.  . Ability to transfer files with IBM mainframes thru non-transparent
  273.      3270 protocol converters;
  274.  . SET FILE COLLISION UPDATE really works now;
  275.  . Server's execution of REMOTE DIRECTORY, REMOTE TYPE, etc, fixed;
  276.  . Problems transferring with HP-48, CP/M, etc, fixed.
  277.  . New XSEND macro transfers entire directory trees intact.
  278.  . New macros for activating external protocols.
  279.  
  280. Other OS/2 C-Kermit improvements:
  281.  . TCP/IP support for IBM TCP/IP 1.2.1 was added in edit 189; edit 190 adds
  282.    native-mode support for IBM TCP/IP 2.0, Essex Systems TCP/2, FTP Software
  283.    PC/TCP, and IP-Switch Vantage.
  284.  . Support for the LAN Manager Named Pipe communication method.
  285.  . Support for peer-to-peer NETBIOS connections (e.g. to MS-DOS Kermit).
  286.  . NetBIOS and Named Pipe connections can be either established or received.
  287.  . A REXX programming interface, so C-Kermit scripts can contain REXX
  288.      commands, and REXX programs executed from within C-Kermit may contain
  289.      C-Kermit commands.  This also works, to a limited extent, with VX-REXX.
  290.  . Improved, more-flexible install procedure.
  291.  . HP-Roman8 character-set support.
  292.  . Hebrew text-file transfer.
  293.  . Task list adjusted to show current serial port or TELNET host.
  294.  . More accurate available-space checking for incoming files.
  295.  . Documentation for updates now in indexed VIEW/INFO format.
  296.  
  297. AMIGA C-KERMIT IMPROVEMENTS
  298.  
  299. File transfer recovery (RESEND)
  300. DIAL command added.
  301. SCRIPT command added.
  302. SHOW MODEM now shows modem signals.
  303. Date/time formats fixed.
  304. Timeouts fixed.
  305.  
  306. ATARI ST
  307.  
  308. The Atari ST version has not been updated from 5A(189) level.  Bruce J.
  309. Moore, who had previously cared for the Atari ST version, would like to
  310. turn over this responsibility to someone else who has more time and a
  311. bigger Atari ST system -- volunteers are needed.
  312.  
  313. ACKNOWLEDGEMENTS
  314.  
  315. Grateful acknowledgements for help with developing and testing edit 190 to:
  316.  
  317.   Ken Adelman, Jeffrey Altman, Ric Anderson, Ronald Antony, Steven Asher,
  318.   William Bader, Mark Berryman, John Chandler, Albert Crosby, Joe Doupnik,
  319.   Alex Dupuy, Max Evarts, Vincent Fatica, Mike Freeman, Christine Gianone,
  320.   Madhusudan Giyyarpuram, Bill Glass, Chuck Goodhart, Eugenia Harris, Russ
  321.   Herman, Dan Hildebrand, Tarjei Jensen, Hugo Jimenez, Mark Johnson, Terry
  322.   Kennedy, "Carlo Kid", Tom Kloos, John Kohl, Bo Kullmar, David Lane, Mike
  323.   Long, James Lummel, Scott Mace, Montserrat Mane, Mike O'Malley, Andy
  324.   Newcomb, Marc Pawliger, Paul Placeway, Jim Reisert, Kai Uwe Rommel,
  325.   Shinichi Sakata, Nick Sayer, Bill Schlesinger, Steven Schultz, Jason
  326.   Seaman, Olaf Seibert, Rick Sladkey, Marko Teittinen, Lee Tibbert, Bernie
  327.   Volz, Steve Walton, Jamie Watson, Rick Watson, Rob Weiner, Gerald Werner,
  328.   Steven Woolgar, and many others, and with apologies to everybody I missed.
  329.  
  330. Special thanks to Jeffrey Altman for huge amounts of work on OS/2 C-Kermit
  331. (REXX, .LONGNAME, Labeled-File transfer, mouse, Named Pipe, and NETBIOS
  332. support, multithreading in the CONNECT module, plus the installation script
  333. and much more), and also to Kai Uwe Rommel for much OS/2 work, to David Lane
  334. for the Stratus VOS support -- *all* of it, to Steve Walton for his
  335. continuing support of the Amiga, to Terry Kennedy for many services above
  336. and beyond the call of duty, to Mike O'Malley for not only the CMU/Tek
  337. TCP/IP support in C-Kermit but also for the CMU/Tek sockets library itself,
  338. and to Eduard Vopicka in Prague for his contributions to the UNIX CONNECT
  339. module.
  340.  
  341. TESTING
  342.  
  343. I have successfully compiled and tested edit 190 on the following platforms:
  344.  
  345.    Apple Macintosh with System 6.03 and MPW C 3.2
  346.    Apple PowerMac 7100 System 7.1.2
  347.    Apple Centris 660 AV System 7.1
  348.    Data General AViiON DG/UX 5.4
  349.    Data General MV 2500 with AOS/VS-II 2.20.00.39 and TCP/IP-II
  350.    DEC Alpha AXP with OSF/1 1.3 and 2.0
  351.    DEC Alpha AXP with OpenVMS 1.5 and 6.1
  352.    DEC MicroVAX-II with VMS 5.3 and VAX C 3.1 and TGV MultiNet TCP/IP
  353.    DEC VAXstation 3100 with VMS 5.5 and VAX C 3.2 and DEC TCP/IP
  354.    DECstation 5800 with Ultrix 4.2
  355.    HP-9000 Model 300 4.4BSD
  356.    HP-9000 Model 550 with HP-UX 5.21
  357.    HP-9000 Model 385 with HP-UX 8.00
  358.    HP-9000 Model 715 with HP-UX 9.03
  359.    HP-9000 Model 712 with HP-UX 9.05
  360.    IBM PS/2-70 with OS/2 2.00
  361.    IBM PS/VP with OS/2 2.01 and IBM TCP/IP 1.20 (16-bit and 32-bit)
  362.    IBM RS/6000 with AIX 3.2.1
  363.    NeXT with NeXTSTEP 3.1
  364.    PC 486/50 with Dell UNIX System V/386 R4
  365.    PC 486/50 with Linux 0.99.14
  366.    PC 486/50 with UnixWare 1.1.1
  367.    PC 486/xx with QNX 4.21 (16-bit and 32-bit)
  368.    PC 486/xx with NetBSD 1.0
  369.    Silicon Graphics Indigo R4000 with IRIX 5.2
  370.    Sun SPARC-10 with SunOS 4.1.3 in BSD and POSIX environments
  371.    Sun SPARC-10 with Solaris 2.3
  372.  
  373. Volunteer testers have reported success on numerous other platforms, listed
  374. at the end of the ckc190.upd file.
  375.  
  376. I'd like to find out every machine and operating system where this new version
  377. can be built and used successully.  Please report testing results, positive or
  378. negative, or just questions, to kermit@columbia.edu.  In your reports, please
  379. include:
  380.  
  381.  . The make and model of computer
  382.  . The operating system name and version
  383.  . The build procedure if any, e.g. which UNIX makefile entry you used
  384.  . The size of the resulting (stripped) executable.
  385.  
  386. For example:
  387.  
  388. MACHINE                 OS NAME     OS VERSION  MAKE ENTRY  DATE     SIZE
  389. DEC Alpha AXP 3000-800  VMS / TVG 3.3   6.1FT4  ckvker.mak  940820 819200
  390. Dell 433 DE             SCO UNIX       3.2v4.0  sco32v4     940820 344872
  391. IBM RS/6000 320         AIX             3.2.3E  rs6aix32c   940820 491445
  392. Harris Night Hawk       CX/UX              6.1  cx_ux       940820 626560
  393. Silicon Graphics Indigo IRIX            4.0.5F  irix40ypc   940820 606208
  394. Tandy Model 6000        Xenix              3.2  trs16       940820 435842
  395.  
  396. HOW TO GET IT
  397.  
  398. During the testing period, C-Kermit 5A(190) will be available via anonymous
  399. ftp from kermit.columbia.edu [128.59.39.2] in the following directories:
  400.  
  401.   kermit/test/text  -  Text files, ftp in text (ASCII) mode
  402.   kermit/test/bin   -  Binary files, ftp in binary (I) mode
  403.  
  404. In particular:
  405.  
  406. kermit/test/bin/cku190.tar.Z (or cku190.tar.gz for gunzip)
  407.   Compressed (or gzip'd) tar archive for the complete set of files
  408.   needed for UNIX C-Kermit.  C-Kermit must be built from the included
  409.   source code using the included makefile (but if you don't have a C
  410.   compiler, see below about selected binaries).  Read the comments at 
  411.   the top of the makefile for more detailed building instructions.
  412.  
  413. kermit/test/bin/cko190.zip
  414.   ZIP archive of the complete OS/2 C-Kermit distribution (no source code).
  415.   Includes both the 32- and 16-bit versions, all supporting files, and an
  416.   automated install script (INSTALL.CMD).
  417.  
  418. kermit/test/text/ckvaaa.hlp
  419.   A text file explaining exactly which files are needed for the VMS version.
  420.   Get this file, read it, then follow the instructions.
  421.  
  422. kermit/test/text/ckm*
  423.   ckm190.hqx - Macintosh Kermit 0.991(190) in BinHex 4.0 format.
  424.   ckmker.bwr - Macintosh Kermit "beware" file (up to date).
  425.   ckmaaa.hlp - Macintosh Kermit "read me" file (points to other files too).
  426.  
  427. kermit/test/text/ckd190.uue
  428.   uuencoded AOS/VS DUMP_II dumpfile containing the AOS/VS C-Kermit
  429.   executable and supporting text files.
  430.  
  431. kermit/test/bin/
  432.   Also contains selected C-Kermit executables for UNIX, VMS, AOS/VS, and
  433.   others.  See the READ.ME file in that directory for a list.
  434.  
  435. kermit/test/text/ckcker.upd
  436.   Documentation for all features new to edits 189 and 190.  Use this as
  437.   a supplement to the user manual, "Using C-Kermit" and/or "C-Kermit
  438.   Einfuehrung und Referenz".
  439.  
  440. kermit/test/text/ckc190.upd
  441.   Detailed edit history and test results.
  442.  
  443. kermit/test/text/ckaaaa.hlp
  444.   A text file describing all of the C-Kermit files and which ones are needed
  445.   for each type of system, including the sources files, which are all in the
  446.   the kermit/test/text directory.
  447.  
  448. Some of the binaries for this version might not be quite up to date, and in
  449. a few cases might be missing altogether.  The stragglers will be installed 
  450. as they arrive.  (If you are able to provide any of the missing our outdated
  451. ones, please let me know.)
  452.  
  453. The public Beta testing period should be relatively short because this
  454. version has already been tested thoroughly by a smaller (though still quite
  455. large) group.  Please send testing results to kermit@columbia.edu.
  456. Hopefully we can have the new release out of Beta quickly -- e.g. in time
  457. for the Fall semester.  Thanks.
  458.  
  459. - Frank
  460.