Change Log for the latest
XYplorer BETA version:
Code: Select all
v17.30.0001 - 2016-11-02 11:29
+++ Scripting: Now Multi-Scripts support nesting. The level is simply stated
by the number denoting its depth, first level is 0 (zero), which is also
the default, of course.
General Syntax (all parts left of Script are optional):
"Caption|Icon|State|Level : Label" Script
Example:
------------------------------------------------------------------------
"C:|*"
"Go to C:\|||1"
goto "C:\";
"|||1" goto "%winsysdir%";
selectitems "calc.exe";
"D:|*"
"Go to D:\|||1"
goto "D:\";
------------------------------------------------------------------------
Note that indenting like with SC popupnested() cannot be used (and is also
not necessary) here to mark the levels since indenting is already employed
to mark the individual scripts within the Multi-Script.
+++ Scripting: Now numbered arguments are supported. Instead of counting
commas you now can prefix the position of the argument to the argument
itself. The separator is ":=", the first position is 0 (zero).
For example, instead of this:
text popupmenu("A,B,C", , , , , , ",");
You now can do this:
text popupmenu("A,B,C", 6:=",");
You can even do this (reversed or chaotic order):
text popupmenu(6:=",", 0:="A,B,C");
Or this (processing is from left to right, the last mapping wins):
text popupmenu("a,b", 6:=";", 6:="|", 6:=",", 0:="A,B,C");
! SC popupnested: Parent items were not drawn disabled (grey) when set to
state 4. Fixed. And now, of course, the submenu does not even popup when
hovering such a disabled parent.
! Tags: When merging folders (be it a copy or a move) of the same name with
different capitalization any tags in the moved contents of the folders
were not adjusted to their new location's capitalization and hence the
tags became invisible (the tags DB is case-sensitive). Fix #2.
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.