Saturday, September 26, 2009

v8.40.0112 - 2009-09-26 15:49

BETA versions are now only available for registered users.
Find the download link at the bottom of the License Lounge.

  • + Menu Edit | New Items: Added command "Go to New Items Folder" to the bottom of the list.
    Also, on a fresh installation a file "New.txt" and a folder "New" are auto-created in the New Items folder, to get things going.
  • * Custom Toolbar Buttons: Just a remark: If your button scripts have line wraps within quoted literals they cannot be preserved between sessions. For example, this script:
      msg "Hello
        there!"
    will come back like this after save and restart:
      msg "Hello   there!"
    See also next paragraph.
  • * Scripting: Generally, line feeds within quoted strings are DEPRECATED! They still work (apart from UB scripts, see above) but this cannot be guaranteed forever.
      For example, this is deprecated:
        msg "Hello
          there!"
      Do this instead:
        msg "Hello there!"
      Or this:
        msg "Hello " .
          "there!"
    Reason: The problem is not the parsing as such, but the storage (folding) of a multi-line script in one line, which is necessary when scripts are stored in an INI file (as opposed to a free format binary file).
  • ! SC continue did not work correctly when inside the ELSE section of an IF block. Fixed.