Download Page: https://www.xyplorer.com/download.php
Code: Select all
v27.20.0700 - 2025-11-25 21:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.20.0700 - 2025-11-25 21:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.20.0608 - 2025-11-25 18:53
+ SC inputselect enhanced: Now you can specify the listdata field separator when using
style 1024. Previously, it was hard-coded to |.
Syntax: inputselect(header, listdata, [separator="|"], [style=1], [cancel], _
[width=800], [height=400], [windowcaption], [preselectprefix], [icon], _
[preselectitem], [listdatafieldseparator="|"])
listdatafieldseparator: On style 1024, the fields are separated by this string (can
be more than one character).
Defaults to | (Caption|Data|Icon).
Example (using a different separator frees | for other tasks, e.g. in RegExp):
echo inputselect('FastFinds', 'Music files#goto "?>(flac|opus|mp3)$"#:qson', ':::', 1 + 1024, 11:=#);
Code: Select all
v27.20.0607 - 2025-11-25 14:13
* Icon on Taskbar: The automatic taskbar refresh, i.e., moving the app icon to the
taskbar of the new monitor when the app is dragged to it, is back. This feature was
temporarily removed to fix the PowerToys FancyZones crash.
* XYcopy: Updated to 2.10.0286.
! Custom Copy: The progress bar no longer turned green during background operations
(since 20251110). Fixed.Code: Select all
v27.20.0606 - 2025-11-24 16:19
+ Custom Copy | Overwrite Prompt: Added another bit of color coding.
- Version number of the copied file is lower: red
Version number of the copied file is higher: blue
* XYcopy: Updated to 2.10.0285.
! File | Duplicate: With all commands in this menu, the selection could shift from the
original to the copy under certain conditions. Fixed. Now, it always stays on the
originals.
Code: Select all
v27.20.0605 - 2025-11-24 11:54
* Custom Copy | Progress Dialog: The automatic cascading of dialog positions in an
8-step diamond shape (added v10.50.0004 - 2011-10-28 11:29) now only occurs in
background processes.
! Custom Event Actions | Exit: When a script was triggered that called a background
process (XYcopy.exe) due to "Configuration | File Operations | File Operations |
Background Processing | Enable background processing" instances of XYcopy.exe could
pile up in memory. Fixed. Now processes are forced to the foreground when triggered
while exiting the app.
Code: Select all
v27.20.0604 - 2025-11-20 19:17
+ SC ThumbsConf enhanced: Added optional "flags" argument:
Syntax: thumbsconf([settings="ShowCaption,ZoomToFill,Style,Padding,Transparency, _
ShowIcon,ShowDimensions,OverlayCaption,FolderThumbs,ZoomToFit"], [separator=","], [flags])
flags (bit field):
0 = [Default]
1 = NoRefresh. Changing Transparency causes a refresh of all current thumnbails.
Pass this bit to suppress the refresh.
Example:
thumbsconf(",,,,1,,,,,", ,1); //set transparency to "grid"
+ SC exit enhanced: Now you can use it restart an elevated XYplorer as unelevated
(without administrator rights).
Name: Exit
Action: Exit XYplorer, optionally with restart.
Syntax: exit [mode]
mode:
sru = restart unelevated with saving
nru = restart unelevated without saving
Code: Select all
v27.20.0600 - 2025-11-19 17:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.20.0501 - 2025-11-19 14:04
* Configuration | Find and Filter | Find Files & Branch View | Find Files | Maximum
number of items cached: Raised the possible max from 99,999 to 999,999.
* XYcopy: Updated to 2.10.0284.
! Custom Copy: Copying from a local to a network folder could cause error 5 (since
20251112). Fixed.
Code: Select all
v27.20.0500 - 2025-11-18 21:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.20.0402 - 2025-11-18 14:22
* Updated the help file.
! XYcopy: The new version v2.10.0282 was still missing from the package. Fixed.
Code: Select all
v27.20.0401 - 2025-11-17 13:01
+ Custom Copy | Overwrite Prompt: Added a bit of color coding to make the situation
easier to grasp.
- Size of the copied file is smaller: red
Size of the copied file is larger: blue
- Date of the copied file is older: red
Date of the copied file is newer: blue
So blue lines are usually okay whereas red lines might need your attention.
* XYcopy: Updated to 2.10.0282.
% High DPI: Improved the drawing of chevrons in Tree and Catalog at 200% and higher.
% High DPI: Improved the drawing of chevrons and arrows in the Breadcrumb Bars.
! Configuration | Preview | Preview | Image preview | Transparency grid colors: Did
not auto-adjust to dark mode yet. Fixed.
Code: Select all
v27.20.0400 - 2025-11-14 20:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.20.0306 - 2025-11-14 14:39
+ Menu Edit | Paste: Now the Paste command is only disabled when the clipboard is
empty.
+ SC backupto: Added [flags] as param #10 (same functionality as copyto and moveto).
Syntax: backupto [location], [source], [on_collision], [preserve_dates], [create_log], _
[pop_stats], [skip_junctions], [verify], [show_progress], [filter], [flags]
flags (bit field):
0 = [Default]
1 = FilesOnly. For sources containing wildcards only files are copied.
2 = SkipPromptToCreate. Don't prompt, but create any non-existing destination
folder without asking.
Example:
// creates a new target folder every hour; does not prompt for creation
backupto "T:\bup\<date yyyymmdd_hh>\", "E:\monkey64.twinproj", -1, 10:=2;
Code: Select all
v27.20.0304 - 2025-11-14 12:00
+ File | Rename Special | RegExp Rename...: Now the RegExp mode supports the switch "
/b" to only affect the base (name without extension, where extension includes the
dot). The switch " /b" (note the space) should be appended to the term (but before
any RegExp comment).
The switch can also be applied to SC rename. This script, for example, replaces all
dots by spaces in all selected item names, but spares the dot that belongs to the
extension:
rename r, "\. > /b"; // note the 3 spaces " > " + " " + " /b"
Code: Select all
v27.20.0303 - 2025-11-13 20:21
% Dark Mode: Improved the scrollbar background colors (Win10 and later).