Thursday, September 11, 2008

v7.60.0002 - 2008-09-11 12:27

  • + Scripting: Improved error messaging. Now the Step dialog is exploited for the task of telling you what went wrong where. The dialog also has been slightly widened.
  • + Scripting got a new command:
      - InternetFlags
        Action: tune internet commands (Download, ReadURL)
        Syntax: internetflags name, value
          name: INTERNET_FLAG_NO_COOKIES
                (yes, only this is currently supported)
          value: 1 = On, 0 = Off
        Examples:
        - The default is to use cookies:
          ::input $a, "Enter URL", ;
            download $a;
        - Do it like this to not use cookies:
          ::internetflags "INTERNET_FLAG_NO_COOKIES", 1;
            input $a, "Enter URL", ;
            download $a;
  • + INI-Tweak to insert prompt on XClosing the app.
      [Settings]
      PromptOnXClose=1
    Set to 1 to get nagged by an "Exit XYplorer now?" prompt.