home *** CD-ROM | disk | FTP | other *** search
/ BlastDOS / Telix.rar / Telix / TELIX425.NEW < prev    next >
Text File  |  1992-01-09  |  27KB  |  531 lines

  1.  
  2.  
  3.  
  4.  
  5.   ---------------------------------------------------------------------------
  6.         EXIS Inc., Post Office Box 130, West Hill, ON, Canada  M1E 4R4
  7.  
  8.          (416)-289-4641 voice, (416)-289-4645 FAX, (416)-439-9399 BBS
  9.  
  10.             Telix Copyright (C) 1986,87,88,89,90,91,92 by Exis Inc.
  11.   ---------------------------------------------------------------------------
  12.  
  13.   January 9, 1992 -- Notes on Telix v4.25:
  14.  
  15.      o The  main purpose of the 4.25 release is not to introduce new features
  16.        but rather  to fix a few bugs, to allow us to make some changes to the
  17.        documentation needed  to account for changes in our overseas distribu-
  18.        tion, and  to update  our order  forms to allow for the new GST value-
  19.        added tax  on sales  in Canada.  We are still hard at work on our next
  20.        major update of Telix, and most people presently using Telix 3.12 will
  21.        not want or need to upgrade to Telix 4.25.
  22.  
  23.      o The Telix Support BBS now has three lines, all running US Robotics HST
  24.        Dual Standard  modems, which  support the  standard formats  at 300 to
  25.        2400 bps,  and both  HST and v.32 formats at 9600 bps. The base number
  26.        for the BBS hunt sequence is 416-439-9399.
  27.  
  28.      o When  mailing us  an order or inquiry, please note that our address is
  29.        in Canada.  As of  February 1991,  postage from the US to Canada is 40
  30.        cents. 'F' stamps are not valid to Canada.
  31.  
  32.      o MODEMCFG.EXE,  a modem  configuration program,  is now  included  with
  33.        Telix to  make setting  up your  modem easier. Simply run MODEMCFG and
  34.        select your  modem brand  and model  to set  up Telix  with the proper
  35.        strings and initialize the modem's non-volatile ram (if it has any).
  36.  
  37.      o When  editing a dialing directory entry you may now use Tab and Shift-
  38.        Tab to  move up and down in the list of items, instead of being forced
  39.        to go forwards only.
  40.  
  41.      o The  status line  may be  cycled on/off directly from Terminal Mode by
  42.        pressing Alt-8.
  43.  
  44.      o BRANDTLX  previously needed about 320k free memory to run, which was a
  45.        lot more  than Telix itself needs. It should now run in much less mem-
  46.        ory, generally less than 100k free.
  47.  
  48.      o As  most people  are now using a '101' style keyboard, the default key
  49.        layout for  the VT102  terminal has  been changed  to one suitable for
  50.        this keyboard. Older versions of Telix by default used a layout better
  51.        suited for the older style keyboard. If after installing v4.25 your VT
  52.        arrow and  function keys  don't work  as they should, the older layout
  53.        can be brought back by entering the following at the DOS prompt:
  54.  
  55.                  ren VT102.KEY VT102101.KEY
  56.                  ren VT102OLD.KEY VT102.KEY
  57.  
  58.      o In  an attempt  to help  users debugging  SALT scripts,  4  predefined
  59.        'macros' or variables have been set up in CS, the script compiler. The
  60.        word __LINE__  will be  replaced in  the compiled script by an integer
  61.        constant representing  the current line number in the script. __FILE__
  62.        will be  replaced by  a string  constant holding the current filename.
  63.        __DATE__ and __TIME__ will be replaced by string constants of the cur-
  64.        rent date and time. So for example, a script could have the sequence:
  65.  
  66.  
  67.  
  68.  
  69.                printsc ( "This is file " );
  70.                printsc ( __FILE__ );
  71.                prints ( " and line number " );
  72.                printn ( __LINE__ );
  73.  
  74.        which if compiling TEST.SLT would print something like:
  75.  
  76.                This is file TEST.SLT and line number xx
  77.  
  78.         where 'xx'  is the  line number  that __LINE__ occurred on. Note that
  79.        these macros  get replaced  by whatever  they represent right as CS is
  80.        compiling the script file, Telix itself knows nothing about them.
  81.  
  82.      o When  CTS/RTS hardware  handshaking is on by default, but the CTS line
  83.        is low  at Telix  start-up, Telix  will now give a message to that ef-
  84.        fect, while waiting up to 10 seconds for the signal to come on. During
  85.        this time  the user  may press  Space to  continue with handshaking on
  86.        anyway, or any other key to continue with it off.
  87.  
  88.      o In  VT-102/ANSI, if  the remote  system defined a scrolling region and
  89.        the cursor  was outside of this region, text in scrolling region would
  90.        scroll on a received Line Feed.
  91.  
  92.      o Some  new keys (e.g. Alt-\) available with enhanced keyboard were rec-
  93.        ognized by  Telix, but  Telix could not display their names (it showed
  94.        only a blank). All show properly now.
  95.  
  96.      o On exit from Telix the border is now reset to black.
  97.  
  98.      o If  there was  a status  line at  the top of the screen and it was re-
  99.        moved, Telix would lose the use of that line.
  100.  
  101.      o The  SALT 'run'  function with  a parameter of 1 (pause and wait for a
  102.        keypress) would not always properly display the prompt.
  103.  
  104.      o Destructive/Non-Destructive  Backspace key setting can now be saved to
  105.        disk.
  106.  
  107.      o The 'frename' script function would move file being renamed to current
  108.        directory, if it was in another directory on the same drive.
  109.  
  110.      o Telix  now treats color codes in Avatar exactly as described in George
  111.        Stanislav's Avatar  specs. Note  that Telix only supports Avatar Level
  112.        0, not Level 1...
  113.  
  114.      o The inkey() and inkeyw() SALT functions returned negative values for a
  115.        few keys (such as Alt-0).
  116.  
  117.      o On a few individual PCs that we know of, Telix's routines to detect an
  118.        enhanced keyboard  BIOS thought that there was one, when there wasn't,
  119.        leading to very strange results. This was more likely caused by misbe-
  120.        having keyboard related resident programs, rather than a Telix bug. If
  121.        the keyboard  is thus completely unrecognized by Telix, the way to get
  122.        Telix running is to add the line 'ENHKB=OFF" in the TELIX.CNF file (or
  123.        change the  existing line with this parameter). Telix now has this op-
  124.        tion off by default.
  125.  
  126.  
  127.  
  128.      o In  ANSI or  VT102 mode,  the escape  code 'ESC [ L', which is used to
  129.        scroll lines  down, would  sometimes clear  the first or first few en-
  130.        tries in the translate table on systems running in 43 or 50 line mode.
  131.  
  132.      o The  Host Mode Remote Shell did not work properly on some systems. The
  133.        symptom is the shell just exiting as soon as it was entered.
  134.  
  135.      o Some  time ago code was added to emulate (for conformity) a bug in the
  136.        MS-DOS ANSI.SYS  driver in Telix's own ANSI terminal, but the new code
  137.        slightly messed  up VT-102 terminal. The ESC[J and ESC[J1 terminal es-
  138.        cape sequences  would reset  part of the current line to Gray on Black
  139.        instead of the proper default colors.
  140.  
  141.   Dec 1, 1989 -- Notes on Telix v3.12:
  142.  
  143.     o  For the most part, this is a maintenance release of Telix. It has been
  144.        some time since the last release, and will be some months more before
  145.        the next major release, so we felt it was important to fix the half
  146.        dozen or so bugs that have been found, add a few minor features, and
  147.        notify users of some changes. While the Telix documentation has been
  148.        fully updated to reflect new features, this file lists all changes
  149.        from v3.10 up, so if you have printed out the docs from Telix v3.10 or
  150.        3.11 you do not have to print them out again.
  151.  
  152.     o  We can now take VISA card payments for registrations. You may use your
  153.        card with the mail-in form listed in the LICENSE.DOC file or main doc-
  154.        umentation, by calling our voice number listed above, or by calling
  155.        our support BBS with your modem and answering the online registration
  156.        script. We expect to be able to take Mastercard payments shortly after
  157.        the new year; please call for availability.
  158.  
  159.     o  The number for our support BBS has changed (since April) to 416-439-
  160.        8293. Please change your dialing directory entry to the new number, as
  161.        the old