Monday, May 11, 2009

v7.90.0257 - 2009-05-11 08:05

  • * List in Find mode, aka Search Results: Reallowed drag-n-drop into the Search Results list. It had been disallowed years ago due to difficult update issues in the Search Results list, but now it looks like the difficulties are mastered and it all works alright.
  • * Scripting: SC Break & SC Continue: The "level" argument now ignores IF blocks. So in the following example, the [break;] command will move execution on to [echo "while done";], not just to [echo "if done";]:
      $i = 3;
      while (1) {
        $i--;
        if ($i == 0) {
        break; // = break 1: move on to [echo "while done"]
        }
      echo "if done";
      }
    echo "while done";
    This is expected behavior for Break and Continue because it's the standard in many programming languages.
  • ! Scripting While & If: Fixed a parsing bug concerning variables in the expression part.