home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / COMM / MISC / COMMO52.ZIP / HISTORY < prev    next >
Encoding:
Text File  |  1992-03-07  |  20.0 KB  |  475 lines

  1. Recent Revision History
  2. -----------------------
  3.  
  4. This file contains a list of changes to the current release and also to
  5. several recent releases.  If you have used {COMMO} before, please make sure
  6. you are caught up on all the changes and improvements.
  7.  
  8. See the file READ.ME for important announcements and {COMMO} product
  9. information.
  10.  
  11.  
  12. -----------                                                -------------
  13. {COMMO} 5.2                                                March 7, 1992
  14. -----------                                                -------------
  15.  
  16. Bugs fixed
  17. ----------
  18.  
  19. In VT102 emulation, when the Terminal Screen scrolled up one line, the fill
  20. attribute (color) of the new bottom line was the current attribute instead of
  21. the default.
  22.  
  23. When Alt-G was pressed and there was not enough memory to edit the Setup File,
  24. the resulting Macro Error was improperly handled.
  25.  
  26. The INPUt function prompt was speaking twice on speech boards.
  27.  
  28. Received characters were repeating and transmitted characters were being lost
  29. on the HP 95LX (mostly at 300 and 1200 bps).  This was due to the non-standard
  30. serial port on the 95.  A fix to the HP 95LX version of {COMMO} has cured the
  31. problem.
  32.  
  33.  
  34. New Features
  35. ------------
  36.  
  37. See COMMO.DOC and MACRO.DOC for details on all new features.
  38.  
  39. Translate Tables have been implemented to change any incoming character to any
  40. other character (or ignore it) and to change any outgoing character to any
  41. other character.  These tables are supported by new items in the Setup File,
  42. {rtr=} for receive translation and {str=} for send translation, and by the new
  43. macro functions, RTRAn and STRAn.
  44.  
  45. You can now specify a macro to execute when carrier detect is lost.  This can
  46. be defined in the Setup File, with {ncr=}, or with the new macro function
  47. NOCArrier.  This only works when no macro is running and when no command
  48. window is open (such as Dialing Directory, Capture File Options, etc.).
  49.  
  50. A new macro function, CALOok, similar to GOLOok, enables you to specify a
  51. label to RETUrn to after processing.  This is similar to using the PUSH
  52. function, except that it applies to each CALOok individually.  Thus you can
  53. write:
  54.  
  55.         {calook aret,aaa,Now is the time}
  56.  
  57.     When the string "Now is the time" comes in, "aaa" will be CALLed with the
  58.     return location set to "aret."  When "aaa" does a RETUrn, control will go
  59.     to "aret".
  60.  
  61. A new macro function, SPDCtrl (Serial Port Display Control), will prevent
  62. incoming data from displaying to the screen.  DISPlay, LOOKfor and RAW/FILTER
  63. capture still work normally.  This can be used when a "clean" display is
  64. desired during automated procedures.
  65.  
  66. A new Terminal Emulation option is available in the HP 95LX version.  "H" will
  67. force terminal lines to wrap at 40 columns instead of 80.  The emulation is
  68. otherwise the same as TTY.
  69.  
  70.  
  71. Improvements
  72. ------------
  73.  
  74. The serial port input buffer is no longer cleared following an EXECute that
  75. was triggered by an Auto Receive string.  Multiple triggering is still
  76. disallowed until the EXECute (and any associated wait) is finished.  This will
  77. prevent information from being lost (such as the next prompt from the host
  78. system).  The entire trigger string will now appear on the screen.
  79.  
  80. The Internal Editor will no longer strip blank lines at the end of a file.
  81.  
  82. The SXMOdem handshaking has been speeded up when the receiver is ready.
  83.  
  84. In the .DOC files, control characters in strings, such as "^M", are now said
  85. to be "converted" (to their ASCII equivalent) rather than "translated."  The
  86. word "translate" is reserved for the new Translate Table feature.
  87.  
  88.  
  89. -----------                                              -----------------
  90. {COMMO} 5.1                                              December 21, 1991
  91. -----------                                              -----------------
  92.  
  93. Bugs fixed
  94. ----------
  95.  
  96. If Esc was pressed after using SETEsc with the -P0 switch, random characters
  97. and colors would sometimes appear on the screen.
  98.  
  99. Under certain circumstances, a LOOKfor could be triggered by a previously
  100. received Auto Receive string.  This was sometimes happening during dialing,
  101. causing the Linked Macro to fail.
  102.  
  103. Xmodem would sometimes get "stuck" on noisy lines.
  104.  
  105.  
  106. Setup File
  107. ----------
  108.  
  109. There are several new items.  Add these to your Setup File if you need to use
  110. them (they are included in the new example Setup File):
  111.  
  112.    The ENQ/ACK terminal protocol is now supported.  If your host requires
  113.    this, add this item:
  114.  
  115.      {enq=yes}              Answer ENQ with ACK (yes/no)
  116.  
  117.    Auto Receive string for the new HS/Link protocol:
  118.  
  119.      {aut=phbr,^bR}         Auto Receive, HS/Link
  120.  
  121.    Name of your Omen Technology program.  All of the example DSZ macros have
  122.    been changed to use this variable:
  123.  
  124.     *{set dszprog,DSZ.COM}        Name of program in DSZ family that you
  125.                                     have (DSZ.COM, GSZ.EXE or DSZ.EXE)
  126.  
  127.  
  128. Dialing Directory
  129. -----------------
  130.  
  131. You can now include variables with each Dialing Directory entry.  The
  132. variables will be set just before a directory entry is dialed.  Any items in
  133. curly braces beyond the first four should be in the format: {name,string}.  Be
  134. sure the first four items are present (even if null).  See "Alt-D  Dialing
  135. Directory" in COMMO.DOC for details.
  136.  
  137. Dialing results will now be suppressed between dialing attempts and after
  138. cancelling a dial-in-progress.  This eliminates most occurrences of NO CARRIER
  139. when Esc is pressed during dialing.
  140.  
  141.  
  142. Macro Processor
  143. ---------------
  144.  
  145. You can now set a {COMMO} variable equal to any environment variable.  Use the
  146. -E switch on the SETVariable function.  For example:  {setv-e xyz,PATH}  will
  147. set "xyz" to the DOS path string.  The environment variable name is case
  148. sensitive (they are usually upper case).  See the new writeup of the SETV
  149. function in MACRO.DOC.
  150.  
  151. The new Macro File has a variable in place of DSZ.  Now you can define
  152. "dszprog" in the Setup File as DSZ.COM, GSZ.EXE or DSZ.EXE and that program
  153. will be used for all Zmodem and Ymodem macros (in the MOSTHOST, too).
  154.  
  155. There are three new built-in variables:
  156.  
  157.         _nci            Number of characters in input buffer
  158.         _row            Current cursor row
  159.         _col            Current cursor column
  160.  
  161. The GETString function will now allow you to "append" to a variable.  Just use
  162. the -A switch and characters will be appended to the current variable.
  163.  
  164. A -C switch has been added to the POPStack function.  This will clear all
  165. elements from the stack.
  166.  
  167. The "W" switch on EXECute, RXMOdem and SXMOdem has been modified to include a
  168. "timed wait."  For example  {exec-w3 dir}  will wait three seconds before
  169. restoring the Terminal Screen.  {exec-w dir}  will wait indefinitely.  Note
  170. that "w1" will wait one second now, while "w0" will not wait at all.
  171.  
  172.  
  173. General
  174. -------
  175.  
  176. Setup File and Macro File support has been added for the new HS/Link protocol,
  177. including bi-directional transfers.
  178.  
  179. The F2 key in the Internal Editor now has "intelligence."  It will always
  180. enter the correct brace.  Try it!  F9 and F10 are no longer used.
  181.  
  182. More items will now "speak" when the Speech Friendly Interface is on.  These
  183. include window titles, selections in the Alt-T window and status messages in
  184. the Xmodem window.
  185.  
  186. Alt-F5 is no longer used for Doorway Mode on the HP 95LX.  Use Alt-= instead.
  187.  
  188.  
  189. ------------                                               ---------------
  190. {COMMO} 5.01                                               October 2, 1991
  191. ------------                                               ---------------
  192.  
  193. Bugs fixed
  194. ----------
  195.  
  196. The IFEXist function was sometimes causing corruption of a few bytes in
  197. memory.  This was sometimes seen as "garbage" in the Macro File and may have
  198. been responsible for other unpredictable results.
  199.  
  200. A "%" could not be used before the variable in the GETString function without
  201. causing variable substitution to occur (this should normally require "%%").
  202.  
  203. The test to differentiate between the dialing result codes CARRIER and NO
  204. CARRIER didn't work.  Now you can use "CARRIER " (with a space) and the speed
  205. will be recorded properly in the Usage Log.  Using "^jCARRIER" will not work
  206. since no character translation is done on the response codes.
  207.  
  208. The SETEsc function would not always work when Esc was pressed and "yes" was
  209. answered.  The macro would STOP instead of going to the label.
  210.  
  211. The Setup File keywords were not accepted if they contained upper case
  212. characters (upper or lower should have worked).
  213.  
  214. The Hangup command has been improved by delaying before dropping DTR.  This
  215. seems to work better with certain modems.
  216.  
  217.  
  218. Macro Processor
  219. ---------------
  220.  
  221. Day of the week built-in variables have been added.  Use _dwn for the single
  222. digit numeric form: 1=Monday,...,7=Sunday.  Use _dwt for text form: Mon,
  223. Tue,...
  224.  
  225. The GETString function now has a "P" switch for Password Mode.  In this mode
  226. asterisks will be echoed in place of the characters received.  This also means
  227. that backspace editing is supported during password input.
  228.  
  229. The INSTring function can now be used on built-in variables such as _pas,
  230. _dat, etc.
  231.  
  232. There is now a "P" switch on SETEsc.  "P1" or "P" (default) prompts the user
  233. when Esc is pressed.  "P0" goes to the label without prompting.  You can also
  234. reset the SETEsc label so that the macro will STOP when Esc is pressed.  Just
  235. use SETesc with no argument:  {setesc}.
  236.  
  237. The SEND and MARK functions can have null arguments now without causing a
  238. macro error (they will do nothing).
  239.  
  240.  
  241. General
  242. -------
  243.  
  244. The BIOS terminal screen option (keyword BTS) in the Setup File has been
  245. replaced with Speech Friendly Interface (keyword SFI).  Visually impaired
  246. users with speech boards should note this change.  When this option is set to
  247. "yes" the Terminal Screen and other messages will "talk."  Also, the up and
  248. down arrow keys now move the cursor instead of scrolling the screen in windows
  249. like Online Help, Scrollback and Variable Space.
  250.  
  251. The Host Mode macro, MOSTHOST.MAC, has been improved.  It should answer the
  252. phone properly with all modems now (make sure you check the configuration
  253. items at the top of the macro).  It uses the new password switch in GETString
  254. so that backspace editing can be done.  It does not allow overwriting
  255. files in the standard file upload directory.  And it is much faster starting
  256. up and terminating.
  257.  
  258. The Master Sound indicator, now "N",  has been restored to the Status Line
  259. toggles.
  260.  
  261.  
  262. -----------                                                 ---------------
  263. {COMMO} 5.0                                                 August 28, 1991
  264. -----------                                                 ---------------
  265.  
  266. Support File changes since last release
  267. ---------------------------------------
  268.  
  269. Changes are required to the Configuration File and Macro File.  Some changes
  270. may also be needed in your Dialing Directory.  Read the sections below
  271. carefully and also the appropriate sections in COMMO.DOC and MACRO.DOC (now a
  272. separate Macro Programming Guide).
  273.  
  274.  
  275. Configuration File
  276. ------------------
  277.  
  278. The Config File has been replaced with a keyworded Setup File.  This means
  279. that items may be in any order and may vary in number.  In the future it will
  280. only be necessary to add new items if the new features are desired.
  281.  
  282. New items in this release include:
  283.  
  284.  {ddp=2400,8n1,1,A,0}   Default Dialing Parameters
  285.  {min=yes}              Send Modem Init String (yes/no)
  286.  {mac=initmac}          Startup macro label
  287.  {sts=yes}              Status Line on (yes/no)
  288.  {ers=yes}              Make sounds on errors/warnings (yes/no)
  289.  
  290. Plus any number of SET items to set string variables.
  291.  
  292. Keep in mind that the Setup File is only processed at startup.  It may be
  293. edited with the Alt-G command, but the changes do not take effect until the
  294. next time {COMMO} is started.  A new command "[Alt-T]  Set Toggles" has been
  295. added to allow changing many toggle parameters without affecting the permanent
  296. setup.
  297.  
  298.  
  299. Dialing Directory
  300. -----------------
  301.  
  302. A set of Default Dialing Parameters (separate from the Current Terminal
  303. Parameters) is now maintained by {COMMO}.  These parameters are set whenever a
  304. number is dialed unless overridden by a parameter string in the Directory
  305. entry.  They may be changed in the "[Alt-P]  Set Terminal Parameters" window
  306. or with the DPARms macro function.
  307.  
  308. The telephone number field can now have variables to be used as additional
  309. prefixes, suffixes or any other way that you can think of.  Read the Dialing
  310. Directory section in COMMO.DOC if you need to use this feature.
  311.  
  312.  
  313. Macro Processor
  314. ---------------
  315.  
  316. The PgUp and PgDn keys are now used to bring up new Upload and Download menus.
  317. If you need to use these keys for full-screen editing, change the key-labels
  318. in the menus (use F6 in the editor to scroll to the right).
  319.  
  320. You can now define and use string variables within all macro functions.  Read
  321. the section "Programming {COMMO} Macros" in MACRO.DOC for complete details.
  322.  
  323. Macro-id's are now called Macro Labels.  They may be any number of characters
  324. of which the first eight are significant and they must be preceded by a colon.
  325. For example:  {:label}.  Key-id's are now called Key-labels and must have a
  326. colon, also.  See MACRO.DOC for details.
  327.  
  328. A new feature, called Function Switches, allows you to add modifiers to
  329. certain function names to change the action of the function.  The list of
  330. functions in Online Help shows which functions may have switches.  Here are
  331. some examples:
  332.  
  333.     {asci-e file,xyz}           ASCII Upload, expand blank lines
  334.     {asci-s0 file,xyz}          ASCII Upload, do not strip linefeeds
  335.     {exec-d c:\util\dsz.com}    Direct EXEC
  336.  
  337. All of the "%" parameters in the EXEC function have been eliminated.  Some
  338. have been replaced with string variables, others with switches.  And instead
  339. of "%i" you must now use the new INPUt function prior to the EXEC.
  340.  
  341. These macro functions have been deleted:  CONFig, DELAy, EXED, EXEN, TERMinal.
  342.  
  343. New macro functions are as follows:
  344.  
  345.     ABAUd               This replaces the former AUTObaud.
  346.     AUTOreceive         Set/reset Auto Receive strings.
  347.     COMPare             Compare strings, set conditions.
  348.     DECRement           Subtract from a numeric variable.
  349.     DPARms              Set Default Dialing parameters.
  350.     EDIT                Edit an external file.
  351.     ELAPse              Reset the elapsed timer to 0.
  352.     GETString           Get a string from the modem.
  353.     HFLOw               Toggle Hardware Flow Control.
  354.     IFCOndition         Test conditions set by COMPare.
  355.     INCRement           Add to a numeric variable.
  356.     INPUt               Input a string from the keyboard.
  357.     INSTring            Find a string within a string.
  358.     LENGth              Determine the length of a string.
  359.     RCLOse              Close the read file.
  360.     READ                Read from a disk file.
  361.     ROPEn               Open a file for reading.
  362.     RXMOdem             Receive a file using Xmodem.
  363.     SETEsc              Set a label to GOTO when Esc is pressed.
  364.     SETGet              Set parameters for GETString.
  365.     SETVariable         Assign a string to a variable.
  366.     SFLOw               Toggle Software Flow Control.
  367.     SPOCtrl             Serial port output control.
  368.     SUBString           Extract a substring from a variable.
  369.     SXMOdem             Send a file using Xmodem.
  370.     TOGGles             Open Set Toggles window.
  371.     WCLOse              Close the write file.
  372.     WOPEn               Open a file for writing.
  373.     WRITe               Write to a disk file.
  374.  
  375. Since there is no longer a specific item in the Setup File for upload path
  376. (this is now a user-defined variable), the ASCII Upload window will not
  377. normally show a path in the input field.  You can put in any path you like now
  378. by using the macro:
  379.  
  380.     {:ala} {asci %uldir%\,:}     Use any path or variable.
  381.  
  382. Notice the "\" after the path variable.  This indicates to bring up the window
  383. with the path displayed in the input field.
  384.  
  385. When a macro is running, messages from functions (such as LOOKfor, PAUSe,
  386. etc.) will now be displayed on the left side of the Status Line.
  387.  
  388.  
  389. General
  390. -------
  391.  
  392. {COMMO} now has internal Xmodem.  This is provided for convenience and can
  393. also result in reduced memory usage.  It supports 128 byte or 1k blocks and
  394. CRC or checksum modes.
  395.  
  396. A new key command "[Alt-T]  Set Toggles" allows changing many toggle
  397. parameters without changing the permanent setup.  The following individual
  398. toggle key commands have been eliminated, but may be restored using macros:
  399.  
  400.         Alt-3   Master Sound toggle
  401.         Alt-4   AutoBaud toggle
  402.         Alt-5   Local Echo toggle
  403.         Alt-0   Signal Lights toggle
  404.  
  405. The F1 key is now used for Online Help throughout the program.  To make this
  406. consistent in the Internal Editor, the F1, F2 keys to type curly braces have
  407. been changed as follows:  F2 now types left and right braces alternately (it
  408. is reset to left brace when you move to a new line).  F9 and F10 will type
  409. left and right braces, respectively.  And F7 is now the key to bring up the
  410. Color Chart.
  411.  
  412. Alt-U is now used for the Utility Menu.  Multi Number Dialing is now started
  413. using Alt-N in the Terminal Screen and in the Dialing Directory window.
  414.  
  415. Online Help now requires fewer keypresses to get to a topic.  Just press the
  416. new two character topic code (no Enter necessary).  Also the "keys" in the
  417. topic separators are now "T" followed by any character.  So if you add your
  418. own topic, say "TX", you can bring it up by typing "TX" in the Help window.
  419. You can also use the macro function {help x}.
  420.  
  421. Support has been increased for blind users with speech synthesizers.  Many
  422. prompts and error messages are now displayed through the BIOS when the "BIOS
  423. Terminal Screen and errors" option in the Setup File is set to "yes."
  424.  
  425. The "Other copy of {COMMO} running" message was being erroneously displayed
  426. after some ill-behaved programs were run.  I have added an additional check to
  427. guard against this.
  428.  
  429. The window with the question "Initialize modem?" has been removed.  An item
  430. has been added to the Setup File in its place:  {min=yes/no}.  You can also
  431. use the command line switch: "/iy" or "/in" to override this setting.
  432.  
  433. Using an "=" in command line switches is no longer permitted.  So if you have
  434. a "/i=y", you must change it to "/iy".
  435.  
  436. Some new command line switches have been added.  These override Setup File
  437. items where applicable.  Here is a summary of all command line switches:
  438.  
  439.   /iy, /in              Initialize, don't initialize modem.
  440.   /:label               Startup macro.
  441.   /sfilename            Alternate Setup File.
  442.   /dfilename            Alternate Dialing Directory file.
  443.   /mfilenmae            Alternate default Macro File.
  444.   /knn                  Size of Scrollback Buffer in kbytes.
  445.  
  446. A new search function has been added to the file windows.  In addition to "S",
  447. search for string from top of file, and "A", search again from top of page,
  448. there is now "D", search for a new string from top of page.  The corresponding
  449. function in the Internal Editor is "Alt-D".
  450.  
  451. You can now navigate in a triangle among the Macro Processor, Scrollback and
  452. Dialing Directory windows without having to exit to the Terminal Screen.
  453.  
  454. There is a new input line editor for entering search strings, manual phone
  455. numbers, pathnames, etc.  Keys supported are:  right/left arrow, home/end,
  456. backspace, insert/delete and Alt-Y (clear input field).
  457.  
  458. An "*" next to the column number in the Internal Editor indicates that the
  459. file has outstanding changes.
  460.  
  461. A count of characters received from the serial port appears in the upper left
  462. hand corner of all full-screen windows.
  463.  
  464. The wrapping of the last screen column in ANSI-BBS emulation has been changed
  465. to conform to the method used in VT102.  I.e, the cursor will not wrap on the
  466. last column until another character comes in.  This prevents double-spacing
  467. when lines are exactly as wide as the screen.
  468.  
  469. I have stopped using the BIOS for serial port initialization.  There were too
  470. many non-compatible BIOS's.  PCjr users will have to specify Com2 now if the
  471. internal modem is not installed.
  472.  
  473.  
  474.                                -end-
  475.