Download Page: https://www.xyplorer.com/download.php
Code: Select all
v27.10.0800 - 2025-09-09 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
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).
Code: Select all
v27.10.0601 - 2025-08-22 17:05
+ Help | Online Support: Added command "Update to 64-bit Version". Click it to update
your current 32-bit XYplorer instance to the latest official 64-bit version of
XYplorer. There is a prompt before the actual update happens.
If an official version is not yet available (i.e. currently), you will be prompted
to update to the latest 64-bit beta version.
- Help | Online Support | What's New?: Removed.
* MLS: Internally updated to version 8.198.
> TRANSLATORS: Please wait until Reference_8.198.lng is uploaded.
You will be notified if you have subscribed to this thread:
https://www.xyplorer.com/xyfc/viewtopic.php?f=12&t=9648
+ SC conf enhanced: Added setting "ShowIconOverlays" to control "Configuration |
General | Refresh, Icons, History | Icons | Show icon overlays" programmatically.
Examples:
echo conf("ShowIconOverlays"); //get (value is also shown in status bar)
conf("ShowIconOverlays"); //get (value is shown in status bar)
conf("ShowIconOverlays", 1); //set
conf("ShowIconOverlays", 0); //unset
conf("ShowIconOverlays", 0, 1); //toggle 0/1
conf("ShowIconOverlays", ""); //toggle 0/1, alt syntax
Code: Select all
v27.10.0600 - 2025-08-20 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.10.0503 - 2025-08-17 16:19
+ Configuration | Jump to Setting: The settings list now also contains all bold
subsection headings. Before, typing "Report" into the filter box yielded no results.
It will now.
! Tree: In the Mini Tree, Ctrl+Down/Up did not always work properly to go to the next
or previous sibling. Fixed.
Code: Select all
v27.10.0502 - 2025-08-16 12:51
+ Custom Copy: When moving folders with contents to another volume (or to the same
volume with "CustomMoveIntraFastFolder=0") there is a post-processing phase "Empty
source folders are removed...".
This phase used to freeze (with a nonresponsive progress dialog) on very large jobs
(thousands of folders). But not anymore! Now, there is live progress feedback.
* XYcopy: Updated to 2.10.0274.
* SC filter: Since v7.90.0078 - 2009-01-27 21:16, the Visual Filter patterns used by
this command have not been added to the Visual Filter Most Recently Used (MRU) list.
However, this was inconsistent with the behavior of other comparable patterns, such
as Live Filters and Ghost Filters. Therefore, the change was made so that the
patterns are added to the MRU.