home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / modem / qcom293b.zip / WHAT'S.NEW < prev   
Text File  |  1992-07-27  |  4KB  |  120 lines

  1. New to this version since Release. 2.92
  2.  
  3. QCom:
  4. Added to the QCom configuration file:
  5.     1. Script subdirectory path is provide to allow the storage
  6.        of script files separate from the QCom directory.
  7.     2. Character and line pacing delays have been added to the CFG
  8.        file.
  9.     3. Toggle for Phone directory sorting was added.  With sorting
  10.        turned off, Adding will insert the new entry above the
  11.        current cursor position.        
  12.     4. Scroll-back buffer lines are optional up to a maximum of
  13.        500 lines.  Zero lines will disable the feature. 
  14.     5. Version number added to simplify CFG version error
  15.            checking by QCom.
  16.     
  17. New Script commands have been added:
  18. ANY:    An improvement to this command allows up to 10 strings to 
  19.     be defined in a single script.
  20.  
  21. DOS:    Allows you to shell to Dos and execute batch files or
  22.     whatever.  Use the /WAIT switch after the commandline if
  23.     you wish to pause the display before returning to QCom.
  24.     eg:
  25.     ;DOS vampire.bat /WAIT
  26.  
  27. Labels:
  28.     Like labels in batch files, a label is preceded by a colon and can
  29.     consist of one or more words or numbers.  No semi colon is used as
  30.     in other script lines.
  31.     eg:
  32.     :Label 1
  33.     :Label 2
  34.  
  35. ASK:    Used to get user input from the keyboard.  This will display
  36.     your "User Prompt" in a box and wait for user input.  When the user
  37.     presses Enter, QCom will compare the user's input to the text
  38.     in "Answer". If it is the same then the script will go to 
  39.     the "Label". Otherwise the script will continue with the next line.
  40.     Use commas to separate the prompt, answer and label. 
  41.  
  42.     Usage: ;ASK User Prompt ,Answer,Label 
  43.     eg:
  44.     ;ASK Download your mail? (Y/N) ,Y,DownLoad Mail
  45.     ;GOTO No Download
  46.     :DownLoad Mail
  47.     ;...
  48.  
  49. GOTO:   To branch to another part of the script.
  50.     eg:
  51.     ;GOTO Label 1
  52.     or...
  53.     When this text is received;GOTO Label 2
  54.  
  55. CALL:   To go to another part of the script and execute until the RET
  56.     (Return) command is encountered. It returns to the line follow-
  57.     the Call. Calls can be nested 255 levels.
  58.     eg:
  59.     When this text is received;CALL Label 3
  60.     or...
  61.     ;Call Label 3
  62.     ;END
  63.     
  64.     :Label 3
  65.     Look for this text;send something^M
  66.     ;RET
  67.  
  68. RET:    As above, used to return from a CALL. A RET must not be executed
  69.     unless a CALL has been executed first. RET cannot be used with GOTO.
  70.     Usage:    ;RET
  71.  
  72. T/O:    Timeout for incoming text.  A given timeout value will apply to 
  73.     any script line waiting for incoming text which follows the T/O
  74.     command. 
  75.     Enable timeout : ;T/O Seconds
  76.     Disable timeout: ;T/O 0
  77.     
  78.     Example:
  79.     ;T/O 10
  80.     Wait for text for 10 seconds;Send if received before 10 secs pass
  81.     Otherwise wait for this for 10 seconds;...etc.
  82.     
  83.     Disable timeout
  84.     ;T/O 0    
  85.     
  86.  
  87. END:    Used to stop script execution.
  88.     eg:
  89.     ;END
  90.     or...
  91.     When this text is received;END    
  92.  
  93.  
  94. QCom Bug fixes:
  95.     Fixed a problem with the /WAIT switch which failed to work
  96.     on subsequent calls.
  97.     Fixed a minor problem in the Help data.
  98.     Port checking modified to help deal with non-standard hardware.        
  99.     Fixed the loss of macro key functions after ESCaping from the Options
  100.     screen.
  101.  
  102.  
  103. QMP:
  104.     Added message sorting by subject.
  105.     Added page breaks when printing long messages.
  106.     Moved the Replies menu choice to the Conferences box.
  107.     Added a Personal conference. And it beeps when a personal message
  108.     appears.
  109.     Added DOS shell capability while reading messages.
  110.     Now maintains a tagline pointer to rotate tagline choices.
  111.     
  112.     Fixed a bug which under certain conditions can cause an
  113.     uploaded reply to have an incorrect "Block count" which 
  114.     appears to corrupt mail packets uploaded afterwards.
  115.  
  116.     Fixed a minor problem with message numbers not showing
  117.     correctly.
  118.     Fixed a problem which caused a crash when trying to read a mail
  119.     packet with a trashed index.
  120.