home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / msr312.ann < prev    next >
Internet Message Format  |  2020-01-01  |  11KB

  1. Date: Mon, 24 Aug 1992 14:00:00 EDT
  2. >From: Christine M Gianone <cmg@watsun.cc.columbia.edu>
  3. Subject: MS-DOS Kermit 3.12 Available for Beta Testing
  4. Keywords: MS-DOS Kermit 3.12, Kanji, ODI, SLIP, TELNET, TCP/IP, WINPKT
  5.  
  6. This is to announce a maintenance release of MS-DOS Kermit for the IBM PC,
  7. PS/2, and compatibles, for beta testing from Professor Joe R. Doupnik of
  8. Utah State University.  The version number is 3.12.  The major new features
  9. of version 3.12 are:
  10.  
  11.  . Networking and communications improvements.
  12.  . Japanese Kanji text file transfer translation.
  13.  . Locking shift protocol for file transfer.
  14.  . IBM mainframe file transfer extension.
  15.  . New script programming and other features.
  16.  . Bug fixes.
  17.  
  18. Here is a more detailed list:
  19.  
  20.  . All 3.11 patches and corrections incorporated.
  21.  
  22.  . Improved TCP/IP networking:
  23.    - ODI drivers now supported directly
  24.    - SLIP and ETHERSLIP packet drivers now supported
  25.    - TCP/IP networking in Microsoft Windows (see below)
  26.    - Specific TCP service ports can be selected in the SET PORT TCP/IP command
  27.    - Incoming TCP/IP connections are now accepted
  28.    - Packet driver interrupt now can now be given explicitly
  29.    - Improved TELNET operation:
  30.      . Option negotiation bugs fixed
  31.      . Screen size is sent to the host if the TELNET server requests it
  32.      . A terminal-type negotiation override is now available
  33.      . Improved handling of Enter key (CR)
  34.    - BIOS Interrupt 14H no longer used internally for TCP/IP, freeing Int 14H
  35.      for use by external drivers, e.g. for speaking devices.
  36.    - Improved interactions with Domain Name Servers.
  37.    - Kermit now responds to traceroute requests and supports ICMP redirects.
  38.    - Workarounds for Western Digital 8003PKDR.EXE problems.
  39.  
  40.  . Improvements in other networking methods:
  41.    - Now works with PATHWORKS LAT when LAT is loaded in expanded memory.
  42.    - Now works with PATHWORKS version 3 as well as with 2 and 4.
  43.    - Now works with Novell LWP 3.5 as well as 4.
  44.    - Now works with Interconnections TES 2.2 R8.
  45.  . User is warned upon attempt to EXIT Kermit while network connection active.
  46.  
  47.  . Serial communications: 
  48.    - HANGUP now leaves DTR signal down until port is used again.
  49.    - IRQ 4 is no longer tested first if COM1 is not the desired port.
  50.    - Improved serial port hardware handling on fast 486 machines.
  51.  
  52.  . Terminal emulation:
  53.    - PRIME PT200 type added (= VT320 with minor differences).
  54.    - New SET TERMINAL OUTPUT-SHIFT {NONE, AUTOMATIC, SI/SO, SS2, SS3}
  55.      command for controlling output of 8-bit characters on 7-bit connections.
  56.      Input shifting is handled automatically, as always.
  57.    - Correctly recognize extended (bold) line drawing patterns for Tek drawing.
  58.    - Use of ESC 1 and ESC 2 to enter and leave Tek mode now disabled.
  59.  
  60.  . File transfer:
  61.    - New support for Japanese Kanji file translation during file transfer,
  62.      via SET TRANSFER CHARACTER-SET JAPANESE-EUC.  Works with Kermit-370 4.3
  63.      and C-Kermit 5A.
  64.    - Locking shifts for transferring 8-bit files on a 7-bit connection, via
  65.      SET TRANSFER LOCKING-SHIFT {OFF, ON, FORCED}.  Works with Kermit-370 4.3
  66.      and C-Kermit 5A.
  67.    - New SET TRANSLATION CHARACTER-SET {READABLE, INVERTIBLE} command
  68.      to select different styles of text translation during file transfer.
  69.    - Create zero length files if the host sends them.
  70.    - Support for transferring files through non-transparent IBM mainframe
  71.      front ends (like the 3708).  Works with Kermit-370 4.3.  Includes:
  72.      . Support for printable start-of-packet
  73.      . Support for BLANK-FREE-2 block check
  74.      . Packet echo suppression, etc etc
  75.    - Improved negotiation of 8th-bit prefixing.
  76.  
  77.  . Other new commands and features:
  78.    - OUTPUT \L sends a Long BREAK.
  79.    - IF [NOT] INPATH <filename> <command>
  80.    - Optional <path> added to PATCH command, e.g. PATCH C:\KERMIT
  81.    - Keyword "O" is (once again) a snyonym for OUTPUT.
  82.    - Variable \v(terminal) reports the current terminal type.
  83.    - INCREMENT <variable>
  84.    - DECREMENT <variable>
  85.  
  86.  . Fixes: 
  87.    - TRANSMIT fixed to wait for handshake from host, if requested.
  88.    - SET PROMPT <string> no longer lets long strings overwrite memory.
  89.    - WAIT now sets SUCCESS or FAILURE correctly.
  90.    - Close log files when asked to do so, not just when EXITing from Kermit.
  91.    - Lexical comparisons IF LLT, IF LGT fixed.
  92.    - STOP and END now accept an optional numerical argument, to be used as a
  93.      return code or failure/success code, plus optional trailing message text
  94.      to be printed.
  95.    - Better handling of Ctrl-C interruption during script execution.
  96.    - \v(directory) value now always ends in backslash (the directory separator)
  97.    - DESQview corrections and enhancements.
  98.  
  99. With MS-DOS Kermit 3.12, Joe is also releasing an improved version of the
  100. WINPKT "shim" - a program that sits between the packet driver and a Windows
  101. application (such as MS-DOS Kermit) that uses the packet driver.  Since
  102. Windows can move applications around in memory, deactivate them, or possibly
  103. swap them out, the packet driver (which stores packets at specific,
  104. registered addresses in the application) will fail.  WINPKT solves this
  105. problem by recognizing the Windows Enhanced mode virtual machine in which
  106. the program is running and invoking that machine before delivering a packet
  107. to the program.  This eliminates the need to "lock application memory" in
  108. its .PIF file and eliminates the Crynwr (nee Clarkson) PD command argument
  109. "-w", which simply rejects a packet if the program is not immediately
  110. active.  WINPKT was originally written by Roger F. James.  These mechanisms
  111. will also appear in Joe's next edition of the shim, DIS_PKT, Packet Driver
  112. interface for NDIS.
  113.  
  114. Joe expresses his special thanks for assistance, contributions, and
  115. suggestions to Frank da Cruz, Hirofumi Fujii, John Chandler, James
  116. Sturdevant Andre Asselin, Jim Fregin, Jim Reisert, Rick Sladkey, Richard
  117. Stanton, Bertil Stenstrom, Konstantin Vinogradov, Robert Weiner, and to
  118. Digital Equipment Corporation, Quarterdeck Online Systems, Novell, AT&T, and
  119. Interconnections Inc.
  120.  
  121. NEW FILES
  122.  
  123. MS-DOS Kermit 3.12 Beta is being released only in binary form.  Sources will
  124. be made available after the testing period is over.
  125.  
  126. Internet anonymous ftp    EARN/BITNET
  127. watsun.cc.columbia.edu    KERMSRV@CUVMA   Description
  128.  
  129.  kermit/test/mstibm.boo     MSTIBM BOO    BOO-encoded KERMIT.EXE for IBM PC
  130.  kermit/bin/mstibm.exe      (none)        Binary executable for IBM PC
  131.  kermit/text/msr312.upd     MSR312.UPD    List of changes since version 3.11
  132.  
  133. The ".boo" file is the .EXE file encoded in a printable ASCII format,
  134. suitable for BITNET, e-mail, and other nontransparent modes of transmission.
  135. You can decode the boo-files back into .EXE files using any of the MSBPCT.*
  136. programs available in kermit/a/msbpct.* or MSBPCT * from KERMSRV.  See
  137. msbaaa.hlp (MSBAAA HLP) for details.
  138.  
  139. WINPKT is available only on watsun, in the packet-driver collection:
  140.  
  141.  packet-drivers/bin/winpkpt.com           WINPKT executable
  142.  packet-drivers/doc/winpkpt.hlp           WINPKT help file
  143.  packet-drivers/src/winpkpt.asm           WINPKT help source code
  144.  
  145. My usual thanks to Joe, on behalf all MS-DOS Kermit users everywhere, for
  146. all the work and skill he put into this new release, and to Dr. Hirofumi
  147. Fujii for extensive contributions to the Kanji support.  Please send
  148. questions, bug reports, and comments to me at the Internet e-mail address
  149. above, or to KERMIT@CUVMA on BITNET/EARN.
  150.  
  151. ------------------------------
  152.  
  153. Date: Wed, 30 Sep 1992 13:00:00 EDT
  154. >From: Christine M Gianone <cmg@watsun.cc.columbia.edu>
  155. Subject: MS-DOS Kermit 3.12 Released
  156. Keywords: MS-DOS Kermit 3.12, Kanji, ODI, SLIP, TELNET, TCP/IP, WINPKT
  157.  
  158. This is to announce a maintenance release of MS-DOS Kermit for the IBM PC,
  159. PS/2, and compatibles, from Professor Joe R. Doupnik of Utah State University.
  160. The version number is 3.12, first announced for beta testing on August 26th.
  161. The major new features of version 3.12 are:
  162.  
  163.  . Networking and communications improvements, including support for ODI.
  164.  . Japanese Kanji text file transfer translation.
  165.  . Locking shift protocol for file transfer.
  166.  . IBM mainframe file transfer extension.
  167.  . New script programming and other features.
  168.  . Bug fixes.
  169.  . WINPKT "shim" for TCP/IP connections under Microsoft Windows.
  170.  
  171. The Kanji and locking shift protocol extensions can be used with C-Kermit 5A
  172. and IBM Mainframe Kermit-370 4.2.3 and 4.2.4.  The IBM mainframe file
  173. transfer extension (which allows files to be transferred through
  174. non-transparent 3270 protocol converters) works with the new IBM mainframe
  175. Kermit.
  176.  
  177. See Info-Kermit V16 #2, 26 August 1992, for a more detailed announcement
  178. of MS-DOS Kermit 3.12.  See V16 #1, 6 August 1992, for detailed announcements
  179. concerning the new IBM mainframe Kermit, as well as the announcement below.
  180.  
  181. (Note: Info-Kermit Digest volumes are archived in kermit/e/imail.yyx on watsun
  182. and IMAIL.yyx on CUVMA, where yy is the year, and x = "a" for first half of
  183. year or "b" for second half of year, for example imail.92b (IMAIL.92B) for the
  184. current volume.)
  185.  
  186. NEW FILES
  187.  
  188. Internet anonymous ftp    EARN/BITNET
  189. watsun.cc.columbia.edu    KERMSRV@CUVMA   Description
  190.  
  191.  kermit/bin/msvibm.exe      (none)          Binary executable for IBM PC
  192.  kermit/a/msvibm.boo        MSVIBM BOO      BOO-encoded KERMIT.EXE for IBM PC
  193.  kermit/a/msr312.upd        MSR312 UPD      List of changes since version 3.11
  194.  kermit/a/mskerm.hlp        MSKERM HLP      Updated help file
  195.  kermit/a/mskerm.bwr        MSKERM BWR      Updated beware file
  196.  kermit/a/mskermit.ini      MSKERMIT INI    Updated initialization file
  197.  kermit/a/mscustom.ini      MSCUSTOM INI    New customization file
  198.  
  199. Use MSR312.UPD, MSKERM.HLP, and MSKERM.BWR as your supplement to the MS-DOS
  200. Kermit 3.11 documentation.
  201.  
  202. The source files are available on both watsun and CUVMA in the same directory
  203. as the .BOO and .UPD files.  The source files are all ASCII text files.  Their
  204. names begin with the letters MS (lowercase on watsun), and they have file
  205. types of .C, .H, and .ASM (lowercase on watsun).  Microsoft MASM and C 6.0
  206. are required for building version 3.12 from the source files.
  207.  
  208. The MSVIBM.BOO file is the .EXE file encoded in a printable ASCII format,
  209. suitable for BITNET, e-mail, and other nontransparent modes of transmission.
  210. You can decode the BOO-file back into an .EXE file using any of the MSBPCT.*
  211. programs available in kermit/a/msbpct.* or MSBPCT * from KERMSRV.  See
  212. msbaaa.hlp (MSBAAA HLP) for details.
  213.  
  214. WINPKT is available only on watsun, in the packet-driver collection:
  215.  
  216. File name                              Description
  217.   packet-drivers/bin/winpkt.com           WINPKT executable (binary)
  218.   packet-drivers/doc/winpkt.hlp           WINPKT help file (ascii)
  219.   packet-drivers/src/winpkt.asm           WINPKT source code (ascii)
  220.  
  221. My special thanks to Joe, on behalf all MS-DOS Kermit users everywhere, for
  222. the work and skill he put into this new release, and to Dr. Hirofumi Fujii
  223. of the Japan National Laboratory of High Energy Physics, Tokyo, for
  224. extensive contributions to the Kanji support.  And thanks to all of you
  225. who sent in helpful comments on the Beta version.
  226.  
  227. ------------------------------
  228.