Change Log for the latest
XYplorer BETA version:
Code: Select all
v18.70.0008 - 2018-02-03 14:27
+ Scripting: Experimentally added a new class of operators, the Compound
Assignment Operators .=, +=, -=, *=, /=, \= . They can be used to shortcut
operations of two variables where the result is set to one of the variables.
For example, both lines below are functionally identical; the latter one
uses one of the new operators:
$a = $a . "b";
$a .= "b";
Examples:
$a = "a"; $a .= "b"; echo $a; //ab
$a = 1; $a += 1; echo $a; //2
$a = 1; $a -= 1; echo $a; //0
$a = 2; $a *= 3; echo $a; //6
$a = 5; $a /= 2; echo $a; //2.5
$a = 5; $a \= 2; echo $a; //2
! Live Filter Box: Attempt to fix a rare issue where the filtered list and
the filter shown in the box went out of sync, typically while the filtered
list was busy creating thumbnails.
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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.