home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 January / pcwk_01_1999.iso / Top100sh / Comm / Jterm106 / _SETUP.LIB / readme.txt < prev    next >
Text File  |  1998-11-15  |  6KB  |  134 lines

  1. J-Term Pro
  2. version 1.0.6
  3.  
  4. Following is a list of changes and enhancements between versions of the software.
  5.  
  6. For the latest news about J-Term Pro, check http://www.jonesautomation.com/jtpnews.html
  7.  
  8. ------------------------------------------------
  9.  
  10. Bug fixes in 1.0.6:
  11.  
  12.  * Cursor position updates were lost when in extended character (box-painting) mode. 
  13.    Position updates properly now.
  14.  * Client wasn't sending proper terminal identifer to those remote hosts that were asking 
  15.    for it.
  16.  * Client wasn't responding to "Get Cursor Position" requests from remote host.
  17.  
  18. Enhancements in 1.0.6:
  19.  
  20.  * New FileSeek function added to scripting. See scripting help for details and example.
  21.  * Any text coming across a connection will now cause the screen to update properly if 
  22.    you're scrolled back.
  23.  * New button added to toolbar and menu item added to 'File' menu and to popup menu on 
  24.    active connections to 'Reconnect'. This option will force a reconnect to that 
  25.    connection. If the connection is closed, it reopens. If the connection is open, it 
  26.    closes, then reopens.
  27.  * Additional button added to toolbar and menu item added to connection popup menu to 
  28.    'detach' a connection into a separate window. Hopefully this will be useful for those 
  29.    times when you need to look at two connections side by side. You can't do anything 
  30.    special in the detached connection except copy and paste text, and reattach to the 
  31.    tabbed system. There is a 'reattach' option on the connection popup in the detached 
  32.    window.
  33.  * Keyboard remapping now supports the numeric keypad.
  34.  
  35. ------------------------------------------------
  36.  
  37. Bug fixes in 1.0.5:
  38.  
  39.  * The 'Log to File' menu option works properly now (formerly ALWAYS turned logging on,
  40.    now is a toggle between on/off)
  41.  * Application faults when exiting program with more than one open connection are gone
  42.  * Terminal window scrolling was not always proper (specifically in programs like 'more',
  43.    'pg', or 'less'
  44.  
  45. Enhancements in 1.0.5:
  46.  
  47.  * Now supports passthrough printing with standard VT escape sequences \e[5i and \e[4i
  48.  * FTP client now supports both ASCII and binary transfers
  49.  * New checkbox in connection editor 'Send window size' sends size of connection 
  50.    (like 25x80) to remote host. Programs like vi and elm will now use the full screen
  51.    in 132x50 mode is this option is checked. This will NOT work with Linux connections.
  52.    Linux connections stop working when this option is selected.
  53.  * Addition of GetScreenText function to scripting (see scripting help)
  54.  
  55. ------------------------------------------------
  56.  
  57. Bug fixes in 1.0.4:
  58.  
  59.  * Access violations when exiting the event managers are fixed
  60.  * Defining new keylists saves information properly
  61.  
  62. Enhancements in 1.0.4:
  63.  
  64.   * Procedures 'StartFileLog' and 'StopFileLog' are added to the scripting
  65.  
  66. -----------------------------------------------
  67.  
  68. Bug fixes in 1.0.3:
  69.  
  70.  * 'Send break' and 'Send reset' buttons/menu items were not really sending the break and 
  71.    reset sequences
  72.  * Exiting an editor which resized the screen (like vi) left the screen resized to the 
  73.    editor's window. This caused the potential for what I call 'orphan' lines at the bottom 
  74.    of the screen which can only be erased via a screen clear.
  75.  
  76. Enhancements in 1.0.3:
  77.  
  78.  * A link to the J-Term Pro news page is put on the help menu.
  79.  
  80. ------------------------------------------------
  81.  
  82. Bug fixes in 1.0.2:
  83.  
  84.  * Application fault if you type before a connection is connected. Keystrokes are now 
  85.    ignored until a connection is fully made.
  86.  * Help file referred to 'GetUserPass' as a procedure, when it's really a function.
  87.  * Added help for SetTimer and ClearTimer routines.
  88.  * Menus created with the Add-in Manager would sometimes 'go away' when the J-Term Pro 
  89.    main window lost focus.
  90.  
  91. Enhancements in 1.0.2:
  92.  
  93.  * Added new procedure to scripting language to help when network errors occur (i.e. 
  94.    couldn't connect to a host). Format of call is:
  95.            procedure OnNetworkError(PageNo:Integer; ScriptToRun:String);
  96.  * Added buttons to script editors in Event Manager and Add-in Manager to allow importing 
  97.    of scripts from files.
  98.  * Added cut, copy, and paste buttons to Add-in Manager script editor.
  99.  
  100. ------------------------------------------------
  101.  
  102. Bug fixes in 1.0.1:
  103.  
  104.  * Certain keys did not work in the initial emulation screens, because they were 
  105.    overlooked in generating the key-mappings
  106.  * In the FTP client, directories on the remote host with all-uppercase names were 
  107.    auto-converted to having the first letter upper, and the rest lower. Directories with 
  108.    combinations of upper- and lower-case names were not affected.
  109.  * Double-clicking on the local file list in the FTP client when there were no files 
  110.    available yielded an error.
  111.  * Copying/pasting only did up to 25x80 characters at a time.
  112.  * Occasionally, the FTP client would lock up if you tried to upload to a remote 
  113.    directory where you did not have permission.
  114.  * Under certain circumstances, it was possible to create two copies of the same 
  115.    connection in the 'Quick connect' dialog.
  116.  * Sometimes file downloads in the FTP client (particularly very large or very small 
  117.    files) caused it to lock up.
  118.  
  119. Enhancements in 1.0.1:
  120.  
  121.  * At a user's request, I added two new functions to the scripting language. The first is 
  122.    used to set a timer to run a script after a specified number of seconds has elapsed. 
  123.    The format for this procedure is:
  124.           procedure SetTimer(NumSecs:LongInt; ScriptName:String);
  125.  * The second procedure is used to stop the timer, if you should ever need to. It's format 
  126.    is:
  127.           procedure ClearTimer;
  128.  * Error messages in the FTP client are more self-explanatory now.
  129.  * The FTP client is now a standalone application, so you can telnet and FTP at the same 
  130.    time, should you desire.
  131.  
  132.  
  133.  
  134.