Wednesday, September 16, 2009

v8.40.0101 - 2009-09-16 12:04

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

  • +++ Scripting: In a multi-script resource you can now show icons in the popup menu. The new syntax for the caption part of a script is:
      "Caption|Iconfile : Label" Script
    Of course [|Iconfile] and [ : Label] are optional, as is the whole caption.
    Example:
      "Go C:\Temp|C:\Temp" goto "C:\Temp";
      "Go Desktop|Desktop" goto "Desktop";
      "Go XY exe|<xypath>\XYplorer.exe" goto "<xypath>\XYplorer.exe";
      "Open With Photoshop|Photoshop" openwith "Photoshop";
    Note: Iconfile can be any file or folder, and its small system icon (the one you see in Details View) will be used for the menu.
  • + Scripting: In a multi-script resource you can now show a menu item checked by prefixing "+" to the caption. For example:
      "+Show Tree" #668;
      "+Show Catalog" #664;
    Of course, to make use of this option you'd have to programmatically construct the multi-script resource with the help of another script.
  • + Scripting: In a multi-script resource you can now show a menu item in bold (make it look like the default item) by prefixing "!" to the caption. For example:
      "!Go C:" goto "C:\"; //Go C: will be shown in bold
      "Go D:" goto "D:\";
    Notes:
    (1) If you combine Checked and Default, Checked must come first.
        "+!Show Tree" #668;
        "+Show Catalog" #664;
    (2) If you combine Checked and Icons, checked menu items will show
        the checkmark instead of the icon.
  • + Scripting Error Dialog: Now the right-click menu has a command to Copy Error Message.
  • * History: Now non-existing/unavailable paths are not skipped anymore when going back or forward. Before they were skipped (but only in History per Tab -- an inconsistency which could be called a bug).