home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR36 / GEOP1121.ZIP / NOTE1121.DOC < prev    next >
Text File  |  1993-11-21  |  31KB  |  665 lines

  1. ----------------------------------------------------------------------
  2. --- TECHNICAL NOTES
  3. ---
  4.  
  5. This file contains detailed and often highly technical notes about the
  6. news/fixes/changes of each version.
  7.  
  8. Symbols used:     -   Bugfix.
  9.                   +   New feature.
  10.                   !   Changed feature.
  11.                   *   Information/clarification.
  12.  
  13. ----------------------------------------------------------------------
  14. Notes for GoldED 2.42.G1121, GAMMA Patch Release 21. november 1993.
  15. ----------------------------------------------------------------------
  16.  
  17. -   Fixed bug in AREAFILE FastEcho. It caused protection violations in
  18.     GoldED/2. It did not affect the DOS versions.
  19.  
  20. -   Fixed some bugs in the msg marking functions. For example, Alt-S,N
  21.     didn't always mark all new msgs, and could cause crashes.
  22.  
  23. -   While writing a msg in the internal editor, GoldED would lock the
  24.     Hudson msgbase unnecessarily. This prevented mail tossers from
  25.     tossing incoming mail in multitask/network environments. Fixed.
  26.  
  27. -   GoldED/P16 had problems sharing the Ezycom msgbase files properly.
  28.     It opened the files in Read/Write mode, where it should have been
  29.     ReadOnly. Fixed. The regular DOS and OS/2 versions did not have
  30.     this problem, which was caused by a bug (or undocumented behavior)
  31.     in the TopSpeed C library.
  32.  
  33. -   Fixed minor bug in the file request function for FRQEXT's. The
  34.     first word of the description would be skipped if there was only
  35.     one space between filename and description.
  36.  
  37. +   The DISPATTACHSIZE and EDITAUTOATTACH features now recognize
  38.     network drives beginning with "\\" (without a drive: in front) as
  39.     valid drives. Untested, but should work. In general GoldED
  40.     currently doesn't support the "\\" netdrives very well. Better
  41.     support is planned.
  42.  
  43. +   Added support for calling of external utilities. This new feature
  44.     can be used to "filter" msgs, for example calling PGP or other
  45.     crypting utilities. A new keyword has been implemented for
  46.     the definition of external utilities:
  47.  
  48.       EXTERNUTIL <utilno> [-options] <commandline>
  49.  
  50.     The <utilno> must be in the range 1 to 24 for utilities that will
  51.     be called with key definitions (see below). Higher numbers can be
  52.     used for utilities that are called from the EDITSAVEMENU (if
  53.     enabled). See the EDITSAVEUTIL keyword for details.
  54.  
  55.     The default options are those specified with the EXTERNOPTIONS
  56.     keyword. With [-options], you can change the those options locally
  57.     for specific utils. See the EXTERNOPTIONS keyword for a list of
  58.     valid options.
  59.  
  60.     The <commandline> specfies the DOS or OS/2 commandline you want to
  61.     execute. This works in the same way as for the external editor and
  62.     spellchecker. See the manual for details about this, especially if
  63.     you want to execute batchfiles. In the <commandline> you can use
  64.     @tokens to transfer information from the msg to the commandline.
  65.     The @tokens are the same as for templates (see the manual), and in
  66.     addition you can use two other @tokens:
  67.  
  68.       @path   The GOLDPATH, including a trailing backslash.
  69.       @file   The full filename of the message file (GOLDED.MSG) that
  70.               will be written to disk before the utility is called.
  71.  
  72.     Examples:
  73.  
  74.       EXTERNUTIL 1 c:\4dos\4dos.com /c c:\crypt\encrypt.bat @file
  75.       EXTERNUTIL 2 c:\4dos\4dos.com /c c:\crypt\decrypt.bat @file
  76.  
  77.     To call a defined external utility, you must assign a key to it.
  78.     There are 24 new keyboard commands you can use in GOLDKEYS.CFG for
  79.     this purpose:
  80.  
  81.       ExternUtilNN
  82.  
  83.     Where NN is in the range 01 to 24 _with_ leading zero. Examples:
  84.  
  85.       F11 ExternUtil01
  86.       F12 ExternUtil02
  87.  
  88.     Then if you press F11, you would call external utility number 1
  89.     and so on. The ExternUtilNN keywords ONLY work in reader mode, not
  90.     in the internal editor or any other place.
  91.  
  92.     HOW IT WORKS:
  93.  
  94.     1.  Just before the external utility is called, GoldED writes the
  95.         current message text to the GOLDED.MSG file in the GOLDPATH.
  96.         The file is written as a textfile with each line CR-LF
  97.         terminated. The content is exactly as you see it on the
  98.         screen, which means that kludges are only included if you have
  99.         enabled kludge viewing.
  100.  
  101.     2.  GoldED clears the screen and then calls the utility after
  102.         swapping itself out of memory (if swapping is enabled or
  103.         relevant for the version).
  104.  
  105.     3.  The utility can now load and process the @file, or do anything
  106.         else you want. It doesn't have to have anything to do with the
  107.         current msg. You could call a spreadsheet, a game, whatever.
  108.         But I think this feature will mainly be used for utilities
  109.         that process the @file. If the utility processes the @file, it
  110.         could write the changes back to the @file.
  111.  
  112.     4.  After returning from the utility, GoldED reloads the @file and
  113.         displays it just as if it was the current message. For
  114.         example, if your utility was a decrypter and the msg was
  115.         encrypted, you would now see the decrypted msg. Neat eh? :-)
  116.  
  117.     5.  If you want to make the reloaded text permanent (save it in
  118.         the msg), you can use the Change Msg function and immediately
  119.         choose "Save Message" from the Editing menu (if enabled with
  120.         EDITMENU Yes). This is in fact the method you could use if you
  121.         wanted to EN-crypt a msg (however, it is easier to use the
  122.         EDITSAVEUTIL method, see below).
  123.  
  124.     The QUOTESPACING feature can interfere with encoded msgs that
  125.     include the '>' character at the beginning of lines, by
  126.     automatically inserting blank lines before and after the lines
  127.     with '>'. I have therefore changed the quotespacing default from
  128.     YES to NO.
  129.  
  130.     The file GOLD_PGP.DOC contains batchfile examples for using this
  131.     new feature with PGP. Many thanks to Thomas Horsten 2:234/150 for
  132.     showing me how to setup PGP and for alpha testing the feature.
  133.  
  134.     !!! IMPORTANT !!!  From FidoNet Policy 4.07 (section 2.1.4):
  135.  
  136.       "[..] Therefore, encrypted and/or commercial traffic that is
  137.       routed without the express permission of all the links in the
  138.       delivery system constitutes annoying behavior."
  139.  
  140.     So be careful with this feature!
  141.  
  142. +   New keyword EXTERNOPTIONS <-options>. Defines the default options
  143.     for the EXTERNUTIL's (see above). Valid options are:
  144.  
  145.       -Cls            * Clear screen.
  146.       -Swap           * Swap GoldED out of memory before shelling.
  147.       -Cursor         * Cursor in shell.
  148.       -Reload         * Reload the message file (@file).
  149.       -Pause            Pause for keypress before returning to GoldED.
  150.       -PauseOnError   * Pause only if utility errorlevel is nonzero.
  151.  
  152.     Plus the reverse options with a "No" prefix, for example -NoCls.
  153.     The default options are marked with an asterisk (*).
  154.  
  155. +   New keyword EDITSAVEUTIL <utilno> <"L menu text">. Defines the
  156.     external utilities that will be added to the EDITSAVEMENU (if
  157.     enabled). The menu text is inserted in the menu. The first two
  158.     characters of the menu text are the "hotkey" letter that will be
  159.     highlighted in the menu text, plus a space. Example:
  160.  
  161.       EDITSAVEUTIL 1 "S PGP Sign the msg"
  162.       EDITSAVEUTIL 2 "E PGP Encode the msg"
  163.       EDITSAVEUTIL 3 "D PGP Decode the msg"
  164.  
  165.     If you have changed the default language in this menu (in
  166.     GOLDLANG.CFG), then make sure the highlight letters don't clash.
  167.  
  168.     With EDITSAVEUTIL definitions and EDITSAVEMENU enabled, you can
  169.     directly call an external utility to do things like encoding msgs
  170.     before saving them.
  171.  
  172. +   Added conditional directives to the GOLDED.CFG reader. You can now
  173.     use the new keywords IF, ELSEIF and ENDIF to control or exclude
  174.     parts of your GOLDED.CFG under certain conditions. The IF and
  175.     ELSEIF directives are identical. ELSEIF is provided for cosmetic
  176.     reasons.
  177.  
  178.     Valid parameters for IF/ELSEIF are: Yes, No, True, False, DOS and
  179.     OS/2. Example:
  180.  
  181.       IF DOS
  182.         EXTERNUTIL 1 c:\4dos\4dos.com c:\crypt\encode.bat @file
  183.         EXTERNUTIL 2 c:\4dos\4dos.com c:\crypt\decode.bat @file
  184.       ELSEIF OS/2
  185.         EXTERNUTIL 1 c:\4os2\4os2.exe c:\crypt\encode.cmd @file
  186.         EXTERNUTIL 2 c:\4os2\4os2.exe c:\crypt\decode.cmd @file
  187.       ENDIF
  188.  
  189.     The example speaks for itself, I think...
  190.  
  191. +   Added enhancement of the Random System feature. It is now possible
  192.     to specify an external file as the source of random items in
  193.     groups. This helps to avoid duplicating items such as origins that
  194.     are should be share between several otherwise different groups.
  195.  
  196.     The random items that can use external files are:
  197.  
  198.       NETNAME, ORIGIN, PLAY, TEARLINE, TEMPLATE, USERNAME, WHOTO.
  199.  
  200.     An external file is specified by a '@' character in front of the
  201.     filename, where the item text would normally be placed. More than
  202.     one item with an external file can be specified. Example:
  203.  
  204.       GROUP FidoNet:
  205.         TEARLINE @tearline.lst
  206.         ORIGIN @origins1.lst
  207.         ORIGIN @origins2.lst
  208.  
  209.     The contents of external files must be one item on each line.
  210.     Empty lines and comments are not allowed in an external file.
  211.     Items must be specified exactly as they would appear in
  212.     GOLDRAND.CFG, but without the leading keyword. Example:
  213.  
  214.       Pointless point...
  215.       Don't point at me!
  216.       etc...
  217.  
  218.     With this feature, it is now easy to create large collections of
  219.     things like origins, and then share them between any number of
  220.     groups without duplication, or even share them between several
  221.     users with different setups.
  222.  
  223.     NOTE: The default path for the external files is the GOLDPATH,
  224.           unless you manually specify a path.
  225.  
  226. -   Detection of color/monochrome mode VGA could, and did, fail in
  227.     some circumstances. On some EGA adapters, GoldED would only detect
  228.     24 lines. Fixed.
  229.  
  230. -   When using BIOS output mode (SCREENUSEBIOS Yes), the screen would
  231.     scroll one line every time the statusline was updated. Fixed.
  232.  
  233. -   The DISPMSGSIZE feature handled parameters "no" and "bytes"
  234.     wrongly. Fixed.
  235.  
  236. -   Fixed a couple of bugs concerning long lines in the new internal
  237.     editor. Changed the default value of QUOTEMARGIN from being
  238.     screenwidth dependent (width-5) to 65.
  239.  
  240.  
  241. ----------------------------------------------------------------------
  242. Notes for GoldED 2.42.G1115, GAMMA Patch Release 15. november 1993.
  243. ----------------------------------------------------------------------
  244.  
  245. -   The file import function in the internal editor would use the
  246.     wrong drive when using a drive letter and wildcards (like A:\*.*
  247.     if you wrote C:\*.*). Fixed.
  248.  
  249.  
  250. ----------------------------------------------------------------------
  251. Notes for GoldED 2.42.G1114, GAMMA release 14. november 1993.
  252. ----------------------------------------------------------------------
  253.  
  254. *   THIS RELEASE DOES _NOT_ HAVE JAM OR GOLDBASE SUPPORT!
  255.  
  256.     JAM and Goldbase support will be provided in a later beta release.
  257.     Stay tuned to the GOLDED and/or GOLDED.BETA echoes for the latest
  258.     status reports and release announcements.
  259.  
  260. +   The file request function has been much improved:
  261.  
  262.     1.  It will now handle filenames such as ">FILE.ZIP" correctly
  263.         instead of including the invalid '>' character in the
  264.         filename.
  265.  
  266.     2.  If there were more than one known FRQEXT on a line, it would
  267.         use the first of the FRQEXT's found, which was often the wrong
  268.         one of course. Now it will take the first filename on the
  269.         line which has a known FRQEXT.
  270.  
  271.     3.  It will now detect the file announcement format used by the
  272.         Ticket utility even if Ticket's tearline has been removed or
  273.         overwritten. The detection is based on the position of certain
  274.         elements on the line.
  275.  
  276.     4.  When extracting the description of files detected with the
  277.         FRQEXT's, it will now skip the first words after the filenames
  278.         if they begin with a digit or the '[' or '-' characters. It
  279.         will skips words until the first occurrence of a word that
  280.         does not match these criteria. This produces a clean
  281.         description in most cases, such as this one:
  282.  
  283.           SOMEFILE.ZIP 123.456 93/11/13 [00] - Some description
  284.  
  285.         Which will produce "Some description", instead of "123.456
  286.         93/11/13 [00] - Some description" as previous versions would.
  287.         Obviously this cuts the FILES.BBS maintenance to a minimum
  288.         when requesting files for your BBS.
  289.  
  290.     There is one thing the file request function can't do: It cannot
  291.     produce more than one message. This is on the TODO, of course.
  292.  
  293. +   The internal editor has finally been rewritten!  All the known
  294.     bugs are gone, and the new editor works much better. Editing of
  295.     quotes have been improved - you can now both split and merge
  296.     quoted lines with "intelligent" handling of the quote initials
  297.     string.
  298.  
  299.     NOTE: At this time, the new internal editor is not 100% finished
  300.     and debugged. There are still some inconsistencies and minor bugs,
  301.     but the editor is fully usable and safe - I use it myself. The
  302.     block functions (anchor, cut, paste) are currently disabled,
  303.     because they are still too buggy.
  304.  
  305. +   New keyword: EDITCHARPARA [']<char>[']. Defaults to ' ' (space).
  306.     This keyword defines the character GoldED displays at the end of
  307.     paragraphs in the internal editor. This is where the CR character
  308.     will be placed once the msg is saved. See below.
  309.  
  310. +   New keyword: EDITCHARSPACE [']<char>[']. Defaults to ' ' (space).
  311.     This keyword defines the character GoldED displays when it should
  312.     display a space character in the internal editor. See below.
  313.  
  314. *   The new keywords EDITCHARPARA and EDITCHARSPACE were added to aid
  315.     me while rewriting and debugging the new internal editor. By
  316.     redefining them to visible characters instead of spaces, I could
  317.     see if strange things were happening while inserting or deleting
  318.     characters. This was a great help. Personally I now always use
  319.     redefinitions to ASCII 20 (a paragraph sign) and CP437 250 (a
  320.     small dot).
  321.  
  322. !   The file extensions for compiled configuration files have changed.
  323.     GoldED will now use the extension .G16 for 16-bit versions (DOS
  324.     and DOS/P16) and extension .G32 for 32-bit versions (OS/2 and
  325.     later DOS/P32). These extensions were previously named .GED (DOS)
  326.     and .GEO (OS/2). Remember to delete the obsolete *.GED and/or
  327.     *.GEO files from your GOLDED directory, so that they wont take up
  328.     disk space.
  329.  
  330. +   New keyword: DISPSOFTCR <yes/no>. Defaults to "no". If enabled,
  331.     GoldED will treat the so-called Soft-CR character (141d, 8Dh) just
  332.     like any other displayable character, instead of ignoring it like
  333.     linefeed chars (LF). Note that by enabling this feature, you
  334.     _disable_ the character translation feature that uses the Soft-CR
  335.     as an escape character. This feature was added to help users in
  336.     countries which use the Soft-CR character for other purposes like
  337.     2-byte characters in Japan.
  338.  
  339.     NOTE: The Ezycom msgbase format requires the Soft-CR to terminate
  340.     each line. Therefore this feature is unlikely to be useful to
  341.     Ezycom sysops.
  342.  
  343. -   When using AREALISTSORT to sort by descriptions, the sort was case
  344.     sensitive. The sort is now case IN-sensitive.
  345.  
  346. +   In the Random System, the AREAFILEGROUPS setting (if set to Yes)
  347.     no longer prevents you from making groups for specific echoes.
  348.     This means that if you have for example a "GROUP X", corresponding
  349.     to group X in your GEcho setup, but wish to override the origin or
  350.     other items for some of the group X echoes, you can now put the
  351.     GROUP's for these specific echoes before the GROUP X definition.
  352.     Example:
  353.  
  354.       GROUP SOMEECHO
  355.         ORIGIN "Some origin"
  356.  
  357.       GROUP X
  358.         ORIGIN "X origin"
  359.  
  360.     Here you will get the origin "Some origin" in the SOMEECHO echo,
  361.     even if SOMEECHO is included in the X group in your setup. This
  362.     was not possible in previous versions - the GROUP X definition
  363.     would always override any specific definition.
  364.  
  365. +   New keyword: "DISPMSGSIZE <bytes/kbytes/no>". Defaults to "bytes".
  366.     When enabled, this keyword displays the msgbody size in the lower
  367.     left side of the header. The location of the size display is not
  368.     necessarily final. The size displayed is for the message body text
  369.     only, the header and nul-terminator (and anything that may lurk
  370.     beyond it) is excluded from the calculation.
  371.  
  372.     NOTE: This feature currently only works when _reading_ msgs. While
  373.     editing a msg in the internal editor, this feature is disabled -
  374.     however, the size will be displayed when you are in the Save msg
  375.     menu (if EDITSAVEMENU is enabled).
  376.  
  377. +   New keyword: "REPLYLINK <chain/direct>". Defaults to "chain".
  378.     If set to "direct", GoldED will link your reply directly to the
  379.     original message. If set to "chain", it will link to the last
  380.     message in the reply chain. The default ("chain") is how GoldED
  381.     has done it in all previous versions.
  382.  
  383.     The advantage of the "direct" linking method is that you can
  384.     easily find the the original message the reply was for. Unless of
  385.     course you have later re-linked using a chain-linking replylinker
  386.     utility. I can recommend the utility SQLINK by David L. Nugent.
  387.     SQLINK links Squish areas using the MSGID/REPLY kludges and makes
  388.     direct links instead of chain-linking on the subject line like
  389.     most other replylinkers do. There are probably also similar
  390.     replylinkers for other msgbase formats, I just don't know them.
  391.  
  392.     NOTE: Direct linking is not always useful or practical. It can be
  393.     very hard to follow a discussion with more than one participants,
  394.     because the links become branched trees instead of simple chains.
  395.     Currently GoldED is not designed to follow the branched direct
  396.     links, but such a feature is on the TODO, although with low
  397.     priority.
  398.  
  399. +   The SCREENBLANKER keyword now accepts an additional parameter: If
  400.     you add the word "AllBlank" after the seconds parameter, GoldED
  401.     will not display the moving box, but leave the screen completely
  402.     blank. Example:
  403.  
  404.       SCREENBLANKER 180 AllBlank
  405.  
  406.     "AllBlank" must be placed _after_ the seconds, or it won't work.
  407.  
  408.     NOTE: The "Midnight Bug" has not yet been found or fixed :-(
  409.  
  410. +   The 32-bit versions of GoldED and GoldNODE (currently only the
  411.     OS/2 versions) are no longer restricted to a maximum of 32700
  412.     nodes in the nodelist index. A slightly different nodelist index
  413.     is produced by the 32-bit GoldNODE. The index is NOT backward
  414.     compatible. The new index files have extensions .IXA, .IXN and
  415.     .IXL. For indexes with less than 32700 nodes, the .IXN file is
  416.     identical to the old .NIX file. The 32-bit GoldED can use both the
  417.     new and the old index files, but will use the new ones if both are
  418.     found. If you no longer use the DOS version of GoldED, you should
  419.     delete the .AIX, .NIX and .LIX files to save disk space.
  420.  
  421. -   When points were using GoldNODE to compile USERLIST's, their point
  422.     number would be appended to all non-point addresses. Fixed. Note
  423.     that this fix is *not* tested. Let me know if it worked.
  424.  
  425. -   Fixed the bug that caused mangled CHARSET kludges. Under some
  426.     circumstances, previous versions would put multiple "CHARSET:"'s
  427.     in the CHARSET kludge, and if the combined length became more than
  428.     40 chars, GoldED would lockup or crash when trying to read the
  429.     msg.
  430.  
  431. -   Intense and border/overscan colors now work again in the Borland
  432.     C++ compiled version of GoldED/2. Borland had made a stupid little
  433.     bug, which was fortunately easily fixable once located.
  434.  
  435. -   The new TEMPLATEPATH keyword did not work for templates defined in
  436.     the Random System (GOLDRAND.CFG). It does now.
  437.  
  438. +   Added a "twirly" feature to GoldNODE. While GoldNODE is reading,
  439.     sorting and writing it's index files, it displays a rotating
  440.     "twirly" (the characters |/-\ in quick succession) to show that it
  441.     is still alive and working. Because of this, GoldNODE now turns
  442.     off the cursor while working. It is turned on again when exiting.
  443.     The cursor turnoff currently only works with the Borland compiled
  444.     versions.
  445.  
  446. -   When trying to write marked msgs to an existing file and hitting
  447.     ESC instead of entering another filename, GoldED would mess up the
  448.     screen, crash or lockup. Fixed.
  449.  
  450. -   Fixed a long-standing bug in GoldNODE. It was not possible to
  451.     specify the configfile to use on the commandline using the -C
  452.     option.
  453.  
  454. +   When displaying the size of an attached file, GoldED now looks for
  455.     the file in the INBOUNDPATH if there is no drive specified for the
  456.     attached file. This is useful when files have been attached _to_
  457.     you. If you don't have an INBOUNDPATH in your GOLDED.CFG, the
  458.     GOLDPATH is assumed instead.
  459.  
  460. +   Added support of Binkley-style "^filename" in the subject line for
  461.     deleting attached files after they have been sent.
  462.  
  463. -   GoldED/2 did not update the Hudson NETMAIL/ECHOMAIL.BBS files
  464.     correctly, and sometimes caused a trap in the OS/2 session while
  465.     trying. Fixed. The regular DOS version did not have this problem.
  466.  
  467. -   Mangled CHARSET kludges were not handled well. When finding such a
  468.     mangled CHARSET kludge, GoldED/2 would trap and GoldED/DOS would
  469.     crash, hang or sometimes go on apparently unaffected. Fixed.
  470.  
  471. -   Fixed hang in GoldED/2 when using it without a GOLDRAND.CFG or
  472.     with all keywords in it commented out. Could possibly also explain
  473.     similar hangs in previous DOS versions.
  474.  
  475. +   New feature: You can now change the color palette used in GoldED.
  476.     The palette has 16 color registers, corresponding to the 16 colors
  477.     from black (0) to intense white (15). By changing the values in
  478.     the palette registers, it is possible to make any of the 16 colors
  479.     a completely different color. You can even make the background
  480.     colors intense, without using the intense color feature. There are
  481.     64 different colors to chose from.
  482.  
  483.     To configure the palette colors in GoldED, the SCREENPALETTE
  484.     keyword has been added. There are two different syntaxes:
  485.  
  486.       SCREENPALETTE <reg> <value>
  487.       SCREENPALETTE <reg> (red green blue)
  488.  
  489.     So you can either compose the color value using separate red,
  490.     green, blue components, or directly use a precalculated value. The
  491.     red/green/blue values can only be in the range 0-3.
  492.  
  493.     These are the original palette values:
  494.  
  495.       SCREENPALETTE    0   (0 0 0)
  496.       SCREENPALETTE    1   (0 0 2)
  497.       SCREENPALETTE    2   (0 2 0)
  498.       SCREENPALETTE    3   (0 2 2)
  499.       SCREENPALETTE    4   (2 0 0)
  500.       SCREENPALETTE    5   (2 0 2)
  501.       SCREENPALETTE    6   (2 2 0)
  502.       SCREENPALETTE    7   (2 2 2)
  503.       SCREENPALETTE    8   (0 1 0)
  504.       SCREENPALETTE    9   (1 1 3)
  505.       SCREENPALETTE   10   (1 3 1)
  506.       SCREENPALETTE   11   (1 3 3)
  507.       SCREENPALETTE   12   (3 1 1)
  508.       SCREENPALETTE   13   (3 1 3)
  509.       SCREENPALETTE   14   (3 3 2)
  510.       SCREENPALETTE   15   (3 3 3)
  511.  
  512.     Copy these lines into your GOLDED.CFG and start experimenting! :-)
  513.  
  514.     NOTE: This feature has not been tested much. There may be bugs.
  515.  
  516. -   Known bug: If you start GoldED/2 (The Borland compiled version) as
  517.     the _first_ program in a full-screen OS/2 session, the screen will
  518.     be filled with garbage when you exit GoldED/2. Harmless but
  519.     annoying. The garbage is put on the screen when GoldED/2 tries to
  520.     restore the original screen (registered only feature). My tests
  521.     seem to indicate that the original screen read by GoldED/2 at
  522.     startup is _already_ garbage, but that can't be right. I think
  523.     this is a Borland compiler bug, because when the problem does not
  524.     seem to exist when I compile GoldED/2 with Watcom C++. So why
  525.     don't I release the Watcom compiled version instead? Because I'm
  526.     still having problems getting it to work correctly. The Borland
  527.     compiled version looks more stable at this time.
  528.  
  529. !   Changed GoldED/2 back to non-multithreaded mode.
  530.  
  531.  
  532. ----------------------------------------------------------------------
  533. Notes for GoldED 2.42.A0710, ALPHA release saturday 10. july 1993.
  534. ----------------------------------------------------------------------
  535.  
  536. *   This was a limited alpha. It was only sent to a few specific
  537.     testers for debugging.
  538.  
  539. +   Added TZUTC and TID as "known" kludges. They are only recognized,
  540.     not handled. Full support of TZUTC will probably be added in a
  541.     future release.
  542.  
  543. !   GoldED/2 is now compiled in multithreaded mode, and runs a
  544.     separate thread to update the statusline (for the clock).
  545.  
  546.  
  547. ----------------------------------------------------------------------
  548. Notes for GoldED 2.42.A0701, ALPHA release thurday 1. july 1993.
  549. ----------------------------------------------------------------------
  550.  
  551. +   New keyword: "FIDOMSGTYPE <Fido/FTSC>". Defaults to Fido. This
  552.     keyword defines the default format of Fido *.MSG files. It is only
  553.     used by some AREAFILE's when reading external area configuration
  554.     files, where the preferred format is unknown.
  555.  
  556.     The FTSC (FTS-0001.012 and later) format uses zone/point fields,
  557.     where the Fido format uses date/time stamps. The Fido format is
  558.     also sometimes referrered to as the "Opus" format. When set to
  559.     Fido format, GoldED interprets the date/time stamps as DOS-style
  560.     bitmapped date/time.
  561.  
  562. +   New keyword: "RA2USERSBBS <yes/no>". Defaults to no. Use this
  563.     keyword to *force* GoldED to use a RemoteAccess 2.xx (RA2)
  564.     compatible USERS.BBS file, even if RA2 is not detected. If used,
  565.     this keyword should be placed in the configuration file _after_
  566.     any AREAFILE keyword.
  567.  
  568. +   New "AREAFILE InterMail". Supports the InterMail mailer. This is
  569.     untested!  Currently the support provided is similar to the
  570.     FrontDoor 1.99b (and later) support. NOTE: You still have to
  571.     define the correct semaphore filenames by yourself using the
  572.     SEMAPHORE keyword.
  573.  
  574. +   AREAFILE D'Bridge now supports the new Beta 2011 DBRIDGE.ADF. This
  575.     is untested!  Normally GoldED tries to detect the DBRIDGE.ADF
  576.     version based on the known record sizes of the of file. You can
  577.     now override the autodetection by specifying one of these:
  578.  
  579.       AREAFILE D'Bridge -2011
  580.       AREAFILE D'Bridge -1047A27
  581.       AREAFILE D'Bridge -1047A22
  582.       AREAFILE D'Bridge -1046
  583.  
  584.     The numbers refer to the versions which had new/changed
  585.     DBRIDGE.ADF formats (that I know of).
  586.  
  587. +   New "AREAFILE Portal". Supports the Portal of Power mailer
  588.     (v0.61gamma). Currently supported are the net/bad/dupemail areas
  589.     and limited support of the Conferences (all conferences are
  590.     treated as Fido *.MSG echomail areas). Planned for later
  591.     implementation is closer integration to Portal (reading of
  592.     non-area information too) and more support of Conferences (when
  593.     Portal is released with a Mailscanner).
  594.  
  595. +   AREAFILE IMAIL now supports version 1.4x.
  596.  
  597. -   Fixed long-standing problem with GoldED sometimes crashing when
  598.     shelling to an external spell checker from the internal editor.
  599.  
  600. +   When replying in another area using Alt-N or Alt-B, GoldED now
  601.     looks for the AREA:<echoid> kludge and automatically positions the
  602.     arealist selection bar on the area indicated by the kludge. This
  603.     is particularly useful with systems such as GEcho when the
  604.     personal mail feature is enabled.
  605.  
  606. +   It is now possible to use wildcards in the FRQEXT keyword.
  607.     Example:
  608.  
  609.       FRQEXT .A??
  610.  
  611.     With this definition, GoldED will recognize filenames such as
  612.     "NODEDIFF.A12".
  613.  
  614. +   Improved screen update speed in many places. Most noticable when
  615.     using GoldED/2 in a window, compared to GoldED/2 2.41.B0108. In
  616.     some places such as the arealist, the screen update is still a
  617.     bit slow. I'll continue working on more screen update speed.
  618.  
  619. +   New keyword: "SCREENUSEANSI <yes/no>". Defaults to no. This is an
  620.     EXPERIMENTAL feature only - There is no guarantee that it will be
  621.     supported in future releases!  If enabled, GoldED will write all
  622.     screen output via DOS (stdout) using ANSI codes for colors, cursor
  623.     movement, screen clearing etc. SLOW!!!
  624.  
  625.     This feature may be useful to people who read echoes where ANSI
  626.     codes are allowed in the msg text. Should work okay as long as
  627.     only color codes are used...
  628.  
  629.     Another use of ANSI output may be for those who use GoldED
  630.     remotely via modem in sysop drop-to-dos shells.
  631.  
  632.     Make sure you have ANSI.SYS or another ANSI compatible screen
  633.     driver loaded before testing this feature!!!
  634.  
  635. -   High-bit (above ascii 127) chars are no longer converted to (.)
  636.     chars in the header when printing msgs.
  637.  
  638. -   Fixed GoldED crash when using echoid's longer than 29 chars.
  639.     Changed the max echoid size limit from 49 to 50.
  640.  
  641. -   The file request function now stops at the citation char (").
  642.  
  643. -   Changed AREAFILE GEcho to use FTS-1 format *.MSG files instead of
  644.     Opus format.
  645.  
  646. -   Fixed a problem with msg #0 error exits in certain circumstances.
  647.  
  648. +   Long filenames are now supported in GoldED/2. It seems to work
  649.     well (tested with very long Squish filenames and writes to files),
  650.     but I cannot guarantee that all valid HPFS filenames are accepted
  651.     anywhere in GoldED. In particular, you probably cannot use spaces
  652.     in filenames, and you should be careful with characters which are
  653.     not supported in MS-DOS filenames. There may also be problems when
  654.     using the import file picker, if there are filenames longer than
  655.     the screen width (not tested).
  656.  
  657. !   I have not been able to get intense colors and border (overscan)
  658.     color to work in the 32-bit OS/2 version, so I had to disable
  659.     these features in GoldED/2 for now. This is not a problem if you
  660.     only run GoldED/2 in a window, but if you run it full-screen, the
  661.     colors that should be intense will blink, and the border color
  662.     will not be set.
  663.  
  664. ----------------------------------------------------------------------
  665.