
Download Page: https://www.xyplorer.com/download.php
Code: Select all
v27.10.0700 - 2025-08-29 12:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
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.
Code: Select all
v27.10.0501 - 2025-08-15 16:58
! Undo/Redo: After renaming a tagged folder, selecting Undo did not update the tags.
Fixed.
Code: Select all
v27.10.0500 - 2025-08-14 21:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v27.10.0406 - 2025-08-14 10:31
* MLS: Internally updated to version 8.197.
> TRANSLATORS: Please wait until Reference_8.197.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
* Updated the help file.
! Configuration | Preview | Thumbnails | Show dimensions of original: The wrong
dimensions were shown for certain image types (e.g., HEIC and AVIF). Fixed.
Code: Select all
v27.10.0405 - 2025-08-13 20:42
+ Configuration | General | Sort and Rename | Sort: Added option "Treat hyphens and
apostrophes like normal characters".
Background: Unless it's a binary comparison, Windows's string comparison treats
hyphens and apostrophes in a special way that might not produce the desired sort
order. Now you are in control. For example:
Not ticked: Ticked:
File.txt File.txt
File'A.txt File'A.txt
File-A.txt File'C.txt
FileB.txt File-A.txt
File'C.txt File-C.txt
File-C.txt FileB.txt
Remarks:
- This setting only affects the Text and Natural sort methods.
- And it only affects sorting in the main file list. Not in the folder tree and
not anywhere else.
- Ticking this setting will slow down sorting a tiny bit, so if you don't need it,
don't tick it.
Code: Select all
v27.10.0404 - 2025-08-13 13:55
+ New Variable <xybitness n>: Returns "32" or "64" depending on the bitness of
the main executable (XYplorer.exe).
echo <xybitness n>; //"32" in the VB version, "64" in the TB version
* Thumbnail Creation: The status bar now displays all items for which a thumbnail is
being created. Previously, some items were omitted. If there's a hang, you can now
see which item is causing it.
* Info Panel | Raw View: Renamed the "Tail" toggle to "Auto-Scroll to End".
Code: Select all
v27.10.0403 - 2025-08-12 10:10
+ Floating Preview: Added toggle "Auto-Scroll to End" (Ctrl+E). Enable it to
automatically position the viewer at the end of a previewed text file. This can be
useful e.g. when viewing log files.
The toggle is available in the context menu of the Floating Preview status bar
(which can be toggled by pressing S). The Ctrl+E keyboard shortcut is always
available (independently of the status bar and of the previewed file type), but of
course it only affects previewed texts.
FYI, this raises tweak FPTextTail to the UI.