home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / ckc190.ann < prev    next >
Text File  |  2020-01-01  |  21KB  |  461 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, VMS, OS/2, AOS/VS, VOS, 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.   AIX 4.1
  183.   Amdahl UTS + TCP/IP
  184.   Bull DPX/2 BOS/X
  185.   CONSENSYS System V R4 + TCP + curses
  186.   DECstation 5000 MIPS3 CPU    
  187.   FreeBSD
  188.   HP-UX: many variations, big improvements in functionality
  189.   Lynx
  190.   MachTen
  191.   OSF/1 2.0
  192.   QNX 4.2
  193.   Solaris 2.x
  194.   Solaris 2.x + SunLink X.25
  195.   UnixWare 1.1 + curses + TCP/IP
  196. System-wide initialization file is now an option.
  197. TELNET window (i.e. screen) size negotiation, SIGWINCH trapping.
  198. RTS/CTS flow control added for Linux, NetBSD, FreeBSD, OSF/1, SCO ODT 3.0,..
  199. Support for higher serial speeds added for Linux, HP-UX, QNX, etc.
  200. FIONREAD and select() support added for Linux.
  201. (Optional) FSSTND compliance for Linux.
  202. Correct handling of file date/time in 4.4BSD, BSDI, etc.
  203.  
  204. IMPROVEMENTS FOR VMS AND OPENVMS, VAX AND ALPHA AXP
  205.  
  206. APC support during CONNECT sessions (for auto upload/download/anything-else).
  207. Problems running from DCL procedures, SPAWN'd, in batch, etc - fixed.
  208. New support for CMU/Tektronix TCP/IP.
  209. Append-to-file operations now available.
  210. SET SPEED problems fixed.
  211. Console terminal flow-control fixed.
  212. Automatic compensation for systems SYSGEN'd with small MAXFUFs, etc.
  213. GNU CC and DEC C compatibility.
  214. TRANSMIT command fixed to handle VMS-specific file types sensibly.
  215. Session-log record format fixed.
  216. TELNET window (i.e. screen) size negotiation.
  217. New sensible completion codes for RUN, SPAWN, !, @, DIR, etc.
  218.  
  219. MACINTOSH KERMIT 0.991(190)
  220.  
  221. Now works with System 7.1 and later on Power Macs, etc:
  222.   downloads files without crashing.
  223. Many commands fixed or added that never worked before:
  224.   CD, PWD, DIRECTORY
  225.   OPEN READ / READ / CLOSE READ
  226.   LOG { SESSION, TRANSACTION, PACKETS }
  227.   Log files and other text files now in TeachText format
  228.   LOG DEBUG goes to a window.
  229.   SET FILE TYPE { TEXT, BINARY, MACBINARY }
  230. File transfer display improved:
  231.   Direction and mode shown correctly when transfer started from prompt.
  232.   Current directory is shown.
  233. Numerous bugs fixed.
  234. Mac-specific modules can now be compiled with Think C as well as MPW C.
  235.  
  236. OS/2 C-KERMIT IMPROVEMENTS
  237.  
  238. Numerous terminal-emulation improvements:
  239.  . VT220, ANSI, and VT100 emulations added (to VT102 and VT52);
  240.  . Mouse support added: mouse-directed cursor movement, copy-and-paste.
  241.  . Complete support for all VT220 PF, F, keypad, arrow, and editing keys.
  242.  . A big selection of keyboard verbs ("\Kverbs"), as in MS-DOS Kermit,
  243.      including a complete set of VT220 keyboard verbs and a
  244.      new keymap file, CKOVTK2.INI, to set them up for you, and
  245.      allowing the Num Lock key to be used as DEC PF1 (or anything else);
  246.  . Hebrew terminal emulation for use with ALEPH library software;
  247.  . Ability to assign user-defined macros to hot keys via \Kverbs;
  248.  . Executes APC escape sequences, just like MS-DOS Kermit, for
  249.      "auto-download", "auto-upload", and auto-anything-else;
  250.  . Improved colors, color control, new border color;
  251.  . Improved, context-sensitive popup help screens and status lines;
  252.  . Print/Dump screen;
  253.  . Many new host-controlled printer actions;
  254.  . Redirection of printer to file;
  255.  . New screen rollback options and features, increased rollback capacity;
  256.  . TELNET bugs fixed, TELNET screen-size negotiation added;
  257.  . Session debugging display, including graphic display of TELNET
  258.      options, control characters, and escape sequences;
  259.  . Compose Key for composing accented characters;
  260.  . New unique scan codes added for keypad period, Shift-Esc, Tab;
  261.  . Answerback string now includes C-Kermit version number and terminal type;
  262.  . Code page control.
  263.  . SET FLOW KEEP now leaves RTS alone instead of always turning it on.
  264.  
  265. OS/2 C-Kermit file transfer improvements:
  266.  . File transfer recovery.
  267.  . ".LONGNAME" attribute supported on FAT file systems.
  268.  . Automatic directory creation for incoming files.
  269.  . SET FILE TYPE LABELED, a file-transfer mode that transfers OS/2
  270.      files along with all their attributes (read-only, hidden, system,
  271.      and extended), similar to the same facility in VMS C-Kermit.
  272.  . Automatic parity detection during file transfer;
  273.  . Ability to transfer files with IBM mainframes thru non-transparent
  274.      3270 protocol converters;
  275.  . SET FILE COLLISION UPDATE really works now;
  276.  . Server's execution of REMOTE DIRECTORY, REMOTE TYPE, etc, fixed;
  277.  . Problems transferring with HP-48, CP/M, etc, fixed.
  278.  . New XSEND macro transfers entire directory trees intact.
  279.  . New macros for activating external protocols.
  280.  
  281. Other OS/2 C-Kermit improvements:
  282.  . TCP/IP support for IBM TCP/IP 1.2.1 was added in edit 189; edit 190 adds
  283.    native-mode support for IBM TCP/IP 2.0, Essex Systems TCP/2, FTP Software
  284.    PC/TCP, and IP-Switch Vantage.
  285.  . Support for the LAN Manager Named Pipe communication method.
  286.  . Support for peer-to-peer NETBIOS connections (e.g. to MS-DOS Kermit).
  287.  . NetBIOS and Named Pipe connections can be either established or received.
  288.  . A REXX programming interface, so C-Kermit scripts can contain REXX
  289.      commands, and REXX programs executed from within C-Kermit may contain
  290.      C-Kermit commands.  This also works, to a limited extent, with VX-REXX.
  291.  . Improved, more-flexible install procedure.
  292.  . HP-Roman8 character-set support.
  293.  . Hebrew text-file transfer.
  294.  . Task list adjusted to show current serial port or TELNET host.
  295.  . More accurate available-space checking for incoming files.
  296.  . Documentation for updates now in indexed VIEW/INFO format.
  297.  
  298. AMIGA C-KERMIT IMPROVEMENTS
  299.  
  300. File transfer recovery (RESEND)
  301. DIAL command added.
  302. SCRIPT command added.
  303. SHOW MODEM now shows modem signals.
  304. Date/time formats fixed.
  305. Timeouts fixed.
  306.  
  307. ATARI ST
  308.  
  309. The Atari ST version has not been updated from 5A(189) level.  Bruce J.
  310. Moore, who had previously cared for the Atari ST version, would like to
  311. turn over this responsibility to someone else who has more time and a
  312. bigger Atari ST system -- volunteers are needed.
  313.  
  314. ACKNOWLEDGEMENTS
  315.  
  316. Grateful acknowledgements for help with developing and testing edit 190 to:
  317.  
  318.   Ken Adelman, Jeffrey Altman, Ric Anderson, Ronald Antony, Steven Asher,
  319.   William Bader, Mark Berryman, John Chandler, Albert Crosby, Joe Doupnik,
  320.   Alex Dupuy, Max Evarts, Vincent Fatica, Mike Freeman, Christine Gianone,
  321.   Madhusudan Giyyarpuram, Bill Glass, Chuck Goodhart, Eugenia Harris, Russ
  322.   Herman, Dan Hildebrand, Tarjei Jensen, Hugo Jimenez, Mark Johnson, Terry
  323.   Kennedy, "Carlo Kid", Tom Kloos, John Kohl, Bo Kullmar, David Lane, Mike
  324.   Long, James Lummel, Scott Mace, Montserrat Mane, Mike O'Malley, Andy
  325.   Newcomb, Marc Pawliger, Paul Placeway, Jim Reisert, Kai Uwe Rommel,
  326.   Shinichi Sakata, Nick Sayer, Bill Schlesinger, Steven Schultz, Jason
  327.   Seaman, Olaf Seibert, Rick Sladkey, Marko Teittinen, Lee Tibbert, Bernie
  328.   Volz, Steve Walton, Jamie Watson, Rick Watson, Rob Weiner, Gerald Werner,
  329.   Steven Woolgar, and many others, and with apologies to everybody I missed.
  330.  
  331. Special thanks to Jeffrey Altman for huge amounts of work on OS/2 C-Kermit
  332. (REXX, .LONGNAME, Labeled-File transfer, mouse, Named Pipe, and NETBIOS
  333. support, multithreading in the CONNECT module, plus the installation script
  334. and much more), and also to Kai Uwe Rommel for much OS/2 work, to David Lane
  335. for the Stratus VOS support -- *all* of it, to Steve Walton for his
  336. continuing support of the Amiga, to Terry Kennedy for many services above
  337. and beyond the call of duty, to Mike O'Malley for not only the CMU/Tek
  338. TCP/IP support in C-Kermit but also for the CMU/Tek sockets library itself,
  339. and to Eduard Vopicka in Prague for his contributions to the UNIX CONNECT
  340. module.
  341.  
  342. TESTING
  343.  
  344. I have successfully compiled and tested edit 190 on the following platforms:
  345.  
  346.    Apple Macintosh with System 6.03 and MPW C 3.2
  347.    Apple PowerMac 7100 System 7.1.2
  348.    Apple Centris 660 AV System 7.1
  349.    Data General AViiON DG/UX 5.4
  350.    Data General MV 2500 with AOS/VS-II 2.20.00.39 and TCP/IP-II
  351.    DEC Alpha AXP with OSF/1 1.3 and 2.0
  352.    DEC Alpha AXP with OpenVMS 1.5 and 6.1
  353.    DEC MicroVAX-II with VMS 5.3 and VAX C 3.1 and TGV MultiNet TCP/IP
  354.    DEC VAXstation 3100 with VMS 5.5 and VAX C 3.2 and DEC TCP/IP
  355.    DECstation 5800 with Ultrix 4.2
  356.    HP-9000 Model 300 4.4BSD
  357.    HP-9000 Model 550 with HP-UX 5.21
  358.    HP-9000 Model 385 with HP-UX 8.00
  359.    HP-9000 Model 715 with HP-UX 9.03
  360.    HP-9000 Model 712 with HP-UX 9.05
  361.    IBM PS/2-70 with OS/2 2.00
  362.    IBM PS/VP with OS/2 2.01 and IBM TCP/IP 1.20 (16-bit and 32-bit)
  363.    IBM RS/6000 with AIX 3.2.1
  364.    NeXT with NeXTSTEP 3.1
  365.    PC 486/50 with Dell UNIX System V/386 R4
  366.    PC 486/50 with Linux 0.99.14
  367.    PC 486/50 with UnixWare 1.1.1
  368.    PC 486/xx with QNX 4.21 (16-bit and 32-bit)
  369.    PC 486/xx with NetBSD 1.0
  370.    Silicon Graphics Indigo R4000 with IRIX 5.2
  371.    Sun SPARC-10 with SunOS 4.1.3 in BSD and POSIX environments
  372.    Sun SPARC-10 with Solaris 2.3
  373.  
  374. Volunteer testers have reported success on numerous other platforms, listed
  375. at the end of the ckc190.upd file.
  376.  
  377. I'd like to find out every machine and operating system where this new version
  378. can be built and used successully.  Please report testing results, positive or
  379. negative, or just questions, to kermit@columbia.edu.  In your reports, please
  380. include:
  381.  
  382.  . The make and model of computer
  383.  . The operating system name and version
  384.  . The build procedure if any, e.g. which UNIX makefile entry you used
  385.  . The size of the resulting (stripped) executable.
  386.  
  387. For example:
  388.  
  389. MACHINE                 OS NAME     OS VERSION  MAKE ENTRY  DATE     SIZE
  390. DEC Alpha AXP 3000-800  VMS / TVG 3.3   6.1FT4  ckvker.mak  940820 819200
  391. Dell 433 DE             SCO UNIX       3.2v4.0  sco32v4     940820 344872
  392. IBM RS/6000 320         AIX             3.2.3E  rs6aix32c   940820 491445
  393. Harris Night Hawk       CX/UX              6.1  cx_ux       940820 626560
  394. Silicon Graphics Indigo IRIX            4.0.5F  irix40ypc   940820 606208
  395. Tandy Model 6000        Xenix              3.2  trs16       940820 435842
  396.  
  397. HOW TO GET IT
  398.  
  399. During the testing period, C-Kermit 5A(190) will be available via anonymous
  400. ftp from kermit.columbia.edu [128.59.39.2] in the following directories:
  401.  
  402.   kermit/test/text  -  Text files, ftp in text (ASCII) mode
  403.   kermit/test/bin   -  Binary files, ftp in binary (I) mode
  404.  
  405. In particular:
  406.  
  407. kermit/test/bin/cku190.tar.Z (or cku190.tar.gz for gunzip)
  408.   Compressed (or gzip'd) tar archive for the complete set of files
  409.   needed for UNIX C-Kermit.  C-Kermit must be built from the included
  410.   source code using the included makefile (but if you don't have a C
  411.   compiler, see below about selected binaries).  Read the comments at 
  412.   the top of the makefile for more detailed building instructions.
  413.  
  414. kermit/test/bin/cko190.zip
  415.   ZIP archive of the complete OS/2 C-Kermit distribution (no source code).
  416.   Includes both the 32- and 16-bit versions, all supporting files, and an
  417.   automated install script (INSTALL.CMD).
  418.  
  419. kermit/test/text/ckvaaa.hlp
  420.   A text file explaining exactly which files are needed for the VMS version.
  421.   Get this file, read it, then follow the instructions.
  422.  
  423. kermit/test/text/ckm*
  424.   ckm190.hqx - Macintosh Kermit 0.991(190) in BinHex 4.0 format.
  425.   ckmker.bwr - Macintosh Kermit "beware" file (up to date).
  426.   ckmaaa.hlp - Macintosh Kermit "read me" file (points to other files too).
  427.  
  428. kermit/test/text/ckd190.uue
  429.   uuencoded AOS/VS DUMP_II dumpfile containing the AOS/VS C-Kermit
  430.   executable and supporting text files.
  431.  
  432. kermit/test/bin/
  433.   Also contains selected C-Kermit executables for UNIX, VMS, AOS/VS, and
  434.   others.  See the READ.ME file in that directory for a list.
  435.  
  436. kermit/test/text/ckcker.upd
  437.   Documentation for all features new to edits 189 and 190.  Use this as
  438.   a supplement to the user manual, "Using C-Kermit" and/or "C-Kermit
  439.   Einfuehrung und Referenz".
  440.  
  441. kermit/test/text/ckc190.upd
  442.   Detailed edit history and test results.
  443.  
  444. kermit/test/text/ckaaaa.hlp
  445.   A text file describing all of the C-Kermit files and which ones are needed
  446.   for each type of system, including the sources files, which are all in the
  447.   the kermit/test/text directory.
  448.  
  449. Some of the binaries for this version might not be quite up to date, and in
  450. a few cases might be missing altogether.  The stragglers will be installed 
  451. as they arrive.  (If you are able to provide any of the missing our outdated
  452. ones, please let me know.)
  453.  
  454. The public Beta testing period should be relatively short because this
  455. version has already been tested thoroughly by a smaller (though still quite
  456. large) group.  Please send testing results to kermit@columbia.edu.
  457. Hopefully we can have the new release out of Beta quickly -- e.g. in time
  458. for the Fall semester.  Thanks.
  459.  
  460. - Frank
  461.