home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d138 / vt100.lha / Vt100 / Ver2.6 / OLDREAD < prev    next >
Text File  |  1988-03-20  |  11KB  |  247 lines

  1. NOTE:
  2.     The files in this archive were copied from Fish disk 55.
  3.     After de-arcing, rename 'newbind.asm' to 'newbindings.asm'.
  4.  
  5.     Willy.
  6. --------------------------------------------------------------------------
  7.  
  8. This archive contains a vt100 emulator with KERMIT and XMODEM file
  9. transfer protocols by Dave Wecker (V2.6 DBW 870227).
  10.  
  11. Thanks:
  12. -------
  13.     To everyone who sent in code and suggestions!
  14.  
  15. Releases:
  16. ---------
  17.     v2.6 870227 DBW - bug fixes for all the stuff in v2.5
  18.     v2.5 870214 DBW - more additions (see readme file)
  19.     v2.4 861214 DBW - lots of fixes/additions
  20.     v2.3 861101 DBW - minor bug fixes
  21.     v2.2 861012 DBW - more of the same
  22.      v2.1 860915 DBW - new features (see README)
  23.     v2.0 860823 DBW - Major rewrite
  24.     v1.1 860720 DBW    - Switches, 80 cols, colors, bug fixes
  25.     v1.0 860712 DBW    - First version released
  26.  
  27. Usage:
  28. ------
  29.     Please read VT100.DOC for usage information and examples.
  30.  
  31. Release Notes:
  32. --------------
  33. v2.6 870227 DBW - bug fixes for all the stuff in v2.5
  34.     - Input requestors are now self selecting (ignore comment in 2.5)
  35.     - Added a BS<->DEL menu item and startup option (SWAP ON/OFF)
  36.     - Renamed dopen/dnext/dclose to diropen/dirnext/dirclose for LATTICE
  37.     - Added a CONVERT option that tells whether KERMIT should downcase
  38.     - MAJOR CHANGE: re write the INPUT/SCRIPT commands, see VT100.DOC
  39.     - Fixed a major problem with Set Directory causing LOCK conflicts
  40.     - Moved the Title up 1 pixel so that it doesn't get cut off anymore
  41.  
  42. v2.5 870214 DBW - more additions (see readme file)
  43.     - All prompting now done through a string requester/gadget.
  44.       NOTE: YOU MUST SELECT THE INPUT STRING OF THE REQUESTER BEFORE
  45.         YOU CAN TYPE A RESPONSE.
  46.     - Local echo mode added (half duplex for Carolyn)
  47.     - BEEP command added to SCRIPT
  48.     - New menu/init/script items:
  49.         CLEAR SCREEN    - clears the screen
  50.          ECHO        - turns on/off half duplex mode
  51.         WRAP        - turns on/off autowrap on long lines
  52.         NUMKEY        - turns on/off numeric keypad mode
  53.         APPCUR        - turns on/off application cursor mode
  54.     - Rewrote toasc() to use qualifier field (no more getting the
  55.       keyboard "stuck")
  56.     - Fixed locking of directories (should now run under workbench ok)
  57.     - Cleaned up VT100.H to really check includes on compile
  58.     - Setting font explicitly to TOPAZ 8 (no more dumb assumptions)
  59.  
  60. v2.4 861214 DBW - lots of fixes/additions
  61.     - Beep should now work under Lattice
  62.     - CreatePort now passes longs (as it should always have)
  63.     - Nested comments in KERMIT.C removed
  64.     - Beep volume of 0 (DisplayBeep) now works
  65.     - snum[] declaration in KERMIT.C fixed
  66.     - multi_xfer is now void and return fixed (in kermit)
  67.     - "." can no longer get "stuck" as the break key
  68.  
  69.     - RIGHT-AMIGA-keys have been added for most menu items
  70.     - The ALT key is now an EIGHTth bit shifter
  71.     - Control-@, Control-2, Control-space send the NULL character
  72.     - Control-6 now sends Control-^
  73.     - Control-- and Control-? now sends Control-_
  74.     - Cursor application mode (<esc>[?1h and <esc>[?1l) now work
  75.     - XMODEM now masks the eighth bit if parity is other than NONE
  76.  
  77. v2.3 861101 DBW - minor bug fixes:
  78.     - added p_wbcolors to allow workbench colors on custom screen
  79.       (In the init file you can specify WBCOLORS to be NO (use color
  80.        definitions in INIT FILE or VT100.H) or YES (use WORKBENCH
  81.        colors for everything)).
  82.     - "$" now sends a kermit-bye (like it says in VT100.DOC).
  83.     - made window/screen heights more reasonable
  84.     - Added ANSI insert line and delete line (<csi><num>L and
  85.       <csi><num>M) to speed up various editors (like emacs).
  86.       NOTE: This is NOT a VT100 sequence (new extension).
  87.     - ctrl-space now also sends a null (along with ^@ and ^`)
  88.     - RAWKEY fixed in WINDOW.C
  89.     - p_wrap fixed in WINDOW.C
  90.     - removed WRDMAX from VT100.H
  91.     - fixed exit with no params in SCRIPT.C
  92.     - fixed parity comparisons in KERMIT.C
  93.     - init file [n+1] changed to [nplus1] to make Lattice happy.
  94.     - cursoron(), cursoroff() changed to one routine cursorflip().
  95.     - long lines shortened to less than 80 characters (for gateways).
  96.     - blanks following exit (or comments) now work in scripts.
  97.  
  98. v2.2 861012 DBW - more of the same:
  99.     - The INIT file "exit" can now chain to a script
  100.     - The SCRIPT command "exit" can now chain to another script
  101.     - Hangup menu item now works.
  102.     - Autowrap can now be set from VT100.H, VT100.INIT (<esc>[?7h l)
  103.     - Control-G is now handled with an audible beep
  104.     - Script now used "^chr" to send control characters
  105.     - The graphics "box" character (a) was added
  106.     - Control-@ and Control-` now send the NULL character
  107.     - Alternate color for BOLD has been re-instated by popular demand
  108.     - Menus have been cleaned up.
  109.     - Lattice compilation cleaned up.
  110.     - No more wordsize parameter since PARITY takes care of all cases
  111.     - Function keys can now call scripts
  112.     - Double shift keys are now handled correctly.
  113.     - Version has been added to the title bar (for bug reports).
  114.  
  115. v2.1 860915 DBW - new features / bug fixes
  116.     - Now identifies as a VT100 (including the response to <esc>Z)
  117.     - Cursor color now gets read in as hex (instead of decimal)
  118.     - REPORTMOUSE taken out of definitions (not needed)
  119.     - XON/XOFF now being handled by the device driver instead of me
  120.     - Literal escape characters have been replaced with \033
  121.     - At init time the user can now specify the input BUFFER size
  122.       (typically between 512 and 2048 bytes) depending on baud rate
  123.     - Script files are now case insensitive for commands
  124.     - XMODEM now turns off the driver XON/XOFF during transfers
  125.     - Graphic rendition now done by the OS instead of me.
  126.     - Initialization files are now searched for in S: instead of C:
  127.     - Forward GOTO bug fixed in the script package.
  128.     - Keypad can now be used in both numeric and application mode
  129.     - General purpose cleanup() routine added for all exits.
  130.     - Utility menu added (sendbreak, hangup, change directory).
  131.       NOTE: hangup is not implemented yet.
  132.     - Full wild card support in file transfers (see vt100.doc).
  133.     - Kermit cleaned up with better filename handling (from host).
  134.     - Script now has CD (changed directory) and SB (send break) commands
  135.     - Added Parity and Wordsize choices in VT100.H, VT100.INIT, menu
  136.       and scripts. (Generates parity from a table).
  137.     - Added 8th bit quoting in KERMIT when using 7 bit words (ODD or
  138.       EVEN parity).
  139.     - Break time can be set from VT100.H, VT100.INIT or a script file.
  140.     - Transfer mode (image or CRLF) can now be set from a script file.
  141.     - Control characters in escape sequences now act like a true VT100.
  142.     - F10 now works from init files.
  143.     - Right (or Left) AMIGA with period (".") sends a BREAK to the host
  144.       from the keyboard.
  145.     - XMODEM status kept down to one line for a file transfer.
  146.  
  147. v2.0 860823 DBW    - Major rewrite:
  148.     - Emulator now compiles under either MANX or LATTICE by defining
  149.       the appropriate compiler type in VT100.H.
  150.     - Sped up code to an effective baud rate of (about) 8k. This means
  151.       that clear text at 4800 baud should be no problem.
  152.     - Added XON/XOFF generation so that characters should not get lost
  153.       any more at 9600 baud (when receiving clear text).
  154.     - Got rid of all command line switches and environment variables.
  155.       Instead upon invocation the program searches first for any file
  156.       named on the command line, then looks for VT100.INIT in the
  157.       current directory and finally searches for C:VT100.INIT.
  158.       All parameters can be set in the init file, and a sample VT100.INIT
  159.       is provided in VT100.DOC that shows all possible options.
  160.     - All parameters that are set by VT100.INIT are defined in VT100.H
  161.       (variables starting with "p_"). This allows you to compile your
  162.       own defaults into the code.
  163.     - You can now set the number of lines (for all you EMACS freaks :-).
  164.       On an interlaced screen this gives you upto a 48 line terminal.
  165.     - WORKBENCH colors are NEVER touched.
  166.     - In an attempt to keep the size down, the color palette menu item
  167.       has been removed (current). Code is about 36K in size with a
  168.       run time image (using workbench screen) of about 88k.
  169.     - Many bugs fixed including reverse scrolling with descenders,
  170.       reverse video at end of line, clearing with scrolling regions,
  171.         ... and 20 or more others.
  172.     - File capture now no longer sends the filename to the host.
  173.     - BOLD (<esc>[1m) has now been added by using an additional color
  174.       when you specify a depth of 2 (instead of 1) bitplane.
  175.     - UNDERLINE (<esc>[4m) has now been added.
  176.     - The handling of remote (host) escape sequences has been completly
  177.       re-written (thanks to Dawn Banks for all the work).
  178.     - Function keys (and shifted function keys) can now be bound to
  179.       arbitrary strings (Jim Ravan gets his macros). See VT100.DOC
  180.       for details.
  181.     - Cursor has no been reduced to the size of a normal character for
  182.       easier readability.
  183.     - XMODEM has been improved (by Steve Drew) to use a timer device
  184.       (for timeouts) and to abort immediately if the user types <ESC>.
  185.     - KERMIT has been completely re-written and appears to work fine,
  186.       thanks to the efforts of Steve Drew.
  187.     - New menu item allows script file support. Module written by
  188.       Steve Drew. See VT100.DOC for details.
  189.  
  190. Known problems:
  191. ---------------
  192.     none
  193.  
  194. Suggestions/bug fixes not implemented (as of yet):
  195. --------------------------------------------------
  196.     - Custom screen should use a borderless backdrop window
  197.     - Quit from keyboard should be supported (for above)
  198.     - Automatic maximum sizing of window should happen
  199.     - Screen should be resizable
  200.     - AT TIME should be implemented in scripts (besides DELAY)
  201.     - Amiga keys for script execution/abort
  202.     - Alternate execute of script files through the S: directory
  203.     - Command line arguments to allow for scripts
  204.     - Kermit toggle to leave file names alone
  205.     - Kermit should create sub directories (when necessary)
  206.     - Use the system keymap
  207.     - Use a disk font for graphic character set
  208.     - Allow the mouse to be sent to the host (for various EMACSs)
  209.     - Kermit VM/CMS (IBM) protocol support
  210.  
  211. Installation:
  212. -------------
  213.     The files in this archive may be extracted by the bourne shell
  214.     (/bin/sh) or the shar program using the "unshar switch (-u)",
  215.     contact me if you need a copy of this version of shar.
  216.  
  217.     REMEMBER: Set the correct compiler definition in VT100.H
  218.  
  219. Files:
  220. ------
  221.     README        - this file
  222.     vt100.doc    - documentation for the terminal emulator
  223.     makefile    - make file for the emulator (under MANX AZTEC-C)
  224.     vt100.h        - include file used by all other modules
  225.     window.c    - manager for window and keyboard
  226.     vt100.c        - main module, handles menus
  227.     remote.c    - handle remote characters (vt100 emulation)
  228.     kermit.c    - kermit protocol (to transfer text files on VMS
  229.               select the CRLF option on the transfer mode menu,
  230.               otherwise use image mode).
  231.     init.c        - startup code
  232.     xmodem.c    - xmodem protocol that understands AMIGA binary and
  233.               text file formats (automatically).
  234.     script.c    - script control package
  235.     expand.c    - filename expansion (wildcards) and dir setting
  236.  
  237. Contact:
  238. --------
  239. Please send bugs/comments/suggestions/praise to:
  240.  
  241.     Dave Wecker at    ENET:    COOKIE::WECKER
  242.             ARPA:    wecker%cookie.dec.com@decwrl.dec.com
  243.             USENET:    {decvax|decwrl}!cookie.dec.com!wecker
  244.             SNAIL:    Dave Wecker
  245.                 115 Palm Springs Drive
  246.                 Colorado Springs, CO  80908
  247.