Download Page: https://www.xyplorer.com/download.php
Code: Select all
v27.10.0900 - 2025-09-16 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.10.0900 - 2025-09-16 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.10.0803 - 2025-09-15 11:50
! Bytes Display: When the decimal symbol and the digit grouping symbol (DGS) were set
to the same character in the system number format settings (a clear user error but
tolerated by Windows), any numbers featuring the DGS were cut at the leftmost DGS
because the system inserted a null character as the DGS (crass move!).
This was already partially fixed in v20.30.0018 - 2019-09-06 12:48 but only
partially. Now the fix is complete and the result looks different: You won't see any
DGS in that situation anymore, which should alert you to revisit your number format
settings and correct the error.
* XYcopy: Updated to 2.10.0276.
Code: Select all
v27.10.0802 - 2025-09-13 13:09
! Paper Folders: When applying a Branch View to a Paper Folder, the indenting did not
always work. Fixed.
! Paper Folders In Tree: PFIT was introduced in v14.80.0219 - 2015-01-29 13:03 ("mild
inofficial support") but never made it to become an official feature. Still, bugs
related to PFIT should be fixed, of course: When toggling Branch View on a Paper
Folder with Mini Tree enabled, that Paper Folder was automatically added to the
tree. This should not happen, and it didn't work well at all when the Paper Folder
was stated with a full path. Fixed.
Code: Select all
v27.10.0801 - 2025-09-11 11:39
! SC gettoken: The v27.10.0705 fix went too far. Fixed again.
Code: Select all
v27.10.0800 - 2025-09-09 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.10.0705 - 2025-09-09 15:11
+ Thumbnail Cache: By default, the cache is automatically updated for each file whose
modified date has changed since the cache was written. You can now skip this service
by setting this tweak:
CacheIgnoreModified=1
* Tools | Customize List | Show Folder Row Colors: Changed the factory default so that
Color Filter text colors are shown while Show Folder Row Colors is enabled.
OLD: "664B34,F6F0E0"
NEW: ",F6F0E0"
Upgraders can achieve the same by running this script:
interfacecolors(",F6F0E0", 2);
! Hover Box: Under certain conditions, the icon in the status area could fail to be
retrieved (instead, the question mark icon was shown) when a junction was in the
path. Fixed.
! SC gettoken: The combination of a delimiter longer than one character, a negative
index, and the flag "Return from start" could result in wrong returns. Fixed.
Example:
echo gettoken("A-|-B-|-C-|--|-", -4, "-|-", , 1); //was "", but is now correctly "A-|-B"
Code: Select all
v27.10.0704 - 2025-09-08 12:20
! System Icons: In some contexts, e.g. Hover Box, system icons could not be retrieved
(instead, the question mark icon was shown) for items that contained Unicode
characters in the name AND had a junction in the path (weird but true; must be a bug
in one Windows API; may only affect Win8.1, didn't check). Fixed.
Code: Select all
v27.10.0703 - 2025-09-06 11:09
! Custom Copy: When moving or copying folders with "Rename folders on collision" and
"Preserve all item dates" enabled, and "On name collision" set to "Suffix increment
to copy", the dates of the copy (the folder with the suffixed increment) were
actually not preserved but set to now. Fixed.
Can't say when this bug started, but it looks like it's been around forever.
* XYcopy: Updated to 2.10.0275.
Code: Select all
v27.10.0702 - 2025-09-04 18:08
% Warning About Downgrading: In the past, when you shared the configuration between
the 32-bit and 64-bit versions, you would receive an unnecessary warning about
downgrading when running the 32-bit version after saving the 64-bit version, due to
the different version numbers. This is no longer the case.
Code: Select all
v27.10.0701 - 2025-09-01 09:43
* Configuration | Colors and Styles | Styles | Overall spacing: Increased the max from
8 to 12.
* Factory Defaults: Overall spacing increased from 4 to 8 (Configuration | Colors and
Styles | Styles | Overall spacing). Some buttons were also removed from the toolbar
to make the app look lighter and more up to date.
! MLS: Removed three unnecessary translations.
Code: Select all
v27.10.0700 - 2025-08-29 12:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.10.0605 - 2025-08-28 14:53
+ User | Manage Commands...: Added accelerators to most of the labels.
+ SC llog and get("loadtimes"): Show a little more info in the top section now.
* Updated the help file.
! Configuration | Other | Features | File Tagging: Startup worked too hard if this was
disabled. Fixed.
! Preview: When switching from an animated GIF preview to a WEBP preview, the GIF
preview was not removed. Fixed.
Code: Select all
v27.10.0604 - 2025-08-26 14:47
% Load Times: Improved the granularity to better focus on the slow parts.
! XYplorer Style (Rounded): Hover effect was always 100% rounded in Full Row Select
mode (since v27.10.0603). Fixed.
Code: Select all
v27.10.0603 - 2025-08-25 14:27
! Configuration | Colors and Styles | Highlights & Dark Mode | Selections: On
"XYplorer Style (Rounded)" the focus rect (when set to Solid) was not drawn rounded
when Full Row Select was enabled. Fixed.
! XYplorer Style (Rounded): Various other fixes and improvements concerning
selections, focus rect, and hover effect.
Code: Select all
v27.10.0602 - 2025-08-23 12:36
+ Scripting got a new function.
Name: MRU
Action: Adds an item to an MRU list and returns the last used item from the list.
Syntax: mru(type, [add])
type: Type of list.
vf: Visual Filters (currently this is the only supported list)
add: [optional] Item to add to the top of the list (= last used).
If missing or empty, the current list is not altered.
return: Last used item from the list (before adding the "add" item).
Examples:
echo mru("vf"); //show the last used Visual Filter
mru("vf", "*.txt"); //set "*.txt" as last used Visual Filter
* SC filter: Removed the change from v27.10.0502 - 2025-08-16 12:51. Setting Visual
Filters with SC filter will not update the Visual Filter MRU list anymore, just like
it was all the time since v7.90.0078 - 2009-01-27 21:16.
If you want your scripted filter in the MRU list, you now can use SC mru (see above).