Change Log for the latest
XYplorer BETA version:
Code: Select all
v11.60.0004 - 2012-09-14 11:32
+ Scripting: Now, foreach loops can have a 5th argument "MsgOnEmpty"
where you can state an error message for the case that the 2nd
argument is empty. If MsgOnEmpty is given (even as empty string
"") the loop will not be executed at all.
New syntax:
foreach($variable, ListOfTokens, [separator=|], [flags], [MsgOnEmpty]) {
Examples:
// shows "No files selected!" if no files are selected, and skips the loop
foreach($item, <get selecteditemspathnames>, <crlf>, , "No files selected!") {
echo $item;
}
// shows nothing if no files are selected, and skips the loop
foreach($item, <get selecteditemspathnames>, <crlf>, , "") {
echo $item;
}
+ Custom Toolbar Buttons: Now you can state a single file (full
path), for example an executable to launch, in the On Click field,
and the button will run/open that file. Before, this was only
allowed in the Name field.
This is to support the previously wrong but understandable
intuition of many users, IOW it's more user-friendly now.
! Tree Path Tracing: Drawing glitch when moving the current folder
in tree. Fixed.
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.