Code: Select all
v11.50.0003 - 2012-08-29 10:42
+ List | Dupes column: Right-clicking items in the Dupes column when
the list is sorted by this column pops a special context menu with
two commands for selecting items based on the dupe groups:
- Select the First Item in Each Group
- Select the Non-First Items in Each Group
+ Configuration | Colors & Styles | Grid style: Added some wider
"Zebra Stripes" styles that are psychedelically less aggressive
than the narrow zebra striping. Now we have the following styles:
- Grid Lines: Thin 1 pixel lines between the rows.
- Zebra Stripes: Alternate Rows (1): Every 2nd row is highlighted.
- Zebra Stripes: Alternate Rows (2): Every 2nd 2 rows are highlighted.
- Zebra Stripes: Alternate Rows (3): Every 2nd 3 rows are highlighted.
- Zebra Stripes: Alternate Rows (4): Every 2nd 4 rows are highlighted.
- Zebra Stripes: Alternate Rows (5): Every 2nd 5 rows are highlighted.
- Alternate Groups: Every 2nd group is highlighted.
- Highlighted Groups: Every group is highlighted.
- Highlighted Groups (Smart Names): Extra-smartness for Names.
Upgraders might need to manually adjust their setting to keep the
style they had before upgrading.
+ SC run enhanced: Added a way to wait for a shelled process to
finish *without* a message box.
Syntax: run command, [directory], [wait=0]
[wait]:
0 = [default] return immediately and continue the script
1 = Wait, with message: Only continue when the shelled process
has finished, show message box "Please wait..." whiloe the
process is going on.
2 = Wait, no message: Same as above but without message box.
Examples:
// open Edit.txt in current path using notepad, wait with message
run "notepad Edit.txt", , 1; msg "Done!";
// the same but without message
run "notepad Edit.txt", , 2; msg "Done!";
+ SC formatlist enhanced: The filter parameter on format = "f" now
supports inversion by a prefixed "!". If inverted, the filter
returns all non-matching items.
If more than one filter is stated (OR-ed list of filters) the
inversion is applied to combined result of all filters. You cannot
invert individual filters.
To use "!" as a normal character in the first position of the
filter list you can escape it by "\".
Examples:
text formatlist("a|ba|ac|ed|!a", "f", , "a*|*d"); //a|ac|ed
text formatlist("a|ba|ac|ed|!a", "f", , "!a*|*d"); //ba|!a
text formatlist("a|ba|ac|ed|!a", "f", , "\!a*|*d"); //ed|!a
! Highlighting Groups or Dupes did not work with list style
"Highlight Sorted Column" disabled. What a nonsense. Fixed.
! Duplicate File Finder: Fixed various display glitches.
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.
XYplorer Beta Club