Friday, August 29, 2008

v7.50.0003 - 2008-08-29 21:00

  • + Catalog Properties Dialog: The edit boxes now support UNICODE.
  • ! Scripting: Fixed two glitches with variable processing.
  • + New variable: <xyver> = current XYplorer version.
  • + Scripting got a new command:
      - Self
        Action: get info about the currently running script
                resp. script file
        Syntax: self output, info
          output: required, variable
          info:   required, any of the following:
            file = current script file (empty if none)
            path = current script file's path (app data if none)
            base = current script file's base (empty if none)
            script = current script
        Examples:
          ::self $a, path; msg $a;
          ::self $a, script; msg $a;
        Of course, the info types file, path, and base only make sense
        when the script is running from a script file.