Change Log for the latest
XYplorer BETA version:
Code: Select all
v10.80.0010 - 2012-01-23 17:50
+ Scripting: Now $i++/$i-- returns the incremented/decremented value
and thus can be used as an argument in functions. The value is
incremented/decremented *before* it is passed to the function.
Example 1:
$list = "a,b,c";
$i = 0;
while ($i < 3) {
echo gettoken($list, $i++, ","); //"a", "b", "c"
}
Example 2:
echo $i++; echo $i++; echo $i++; //"1", "2", "3"
Example 3:
echo $i++ . $i++ . $i++; //"123"
* Scripting: Experimentally made the HereDoc syntax a bit more
tolerant.
BEFORE: The closing identifier must begin in the *first* column of
the line (no indent!). The line with the closing identifier must
contain no other characters, except possibly a semicolon (;)
directly after the identifier.
NOW: The closing identifier can be preceded by any number of
spaces (i.e. indented) and be followed by any number and kind of
other characters.
Example:
---------------------------------------------------------------
$isOk = Confirm (<<<FOO
Blah
Blah
Blah
FOO); echo $isOk;
---------------------------------------------------------------
* Configuration | Extended: Renamed "Single click on icon opens
items in list" to "Single click on icon opens list items". It's
less ambiguous.
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
No-Install Package.
Note that BETA versions are work in progress and might contain fresh bugs. You have been warned.
It's a good idea to backup your complete XYplorer settings (menu File | Settings | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.