Code: Select all
v26.90.0305 - 2025-03-12 12:17
+ Live Filter Boxes: The X icon now appears in all Live Filter Boxes present in
various dialogs.

(1) Installer Package, (2) No-Install Package (for manual unpacking).

Code: Select all
v26.90.0305 - 2025-03-12 12:17
+ Live Filter Boxes: The X icon now appears in all Live Filter Boxes present in
various dialogs.
Code: Select all
v26.90.0302 - 2025-03-11 21:21
+ Live Filter Box: The icon now changes to an X when a filter is active. This makes it
intuitively clear that clicking on the X removes the filter.
Code: Select all
v26.90.0301 - 2025-03-11 17:53
+++ Live Filter Box: It now has an MRU (most recently used) drop-down list. The list is
actually shared with the Visual Filter MRU list. Since both filters have the same
syntax, it's possible and kind of makes sense.
- You can add a filter to the list by pressing ENTER in the Live Filter Box while
the filter is active.
- If the filter is already present in the list, pressing ENTER will move it to the
top of the list.
Further notes:
- The MRU drop-down list enabled by factory default and for upgraders, but you can
tweak it off:
LiveFilterUseVFmru=0
- Walk through the closed list by KeyUp/KeyDown. Filter is applied after defined
delay (Configuration | Find and Filter | Filters & Type Ahead Find | Live Filter
Box | Delay before filter is applied (in milliseconds)). Of course, if
"Configuration | Find and Filter | Filters & Type Ahead Find | Live Filter Box |
Enable navigation keys" is enabled, then KeyUp/KeyDown walks the main file list.
- Use F4 to open/close the dropdown list (like with all dropdown lists).
- The settings under "Configuration | General | Controls & More | Drop-Down Lists"
are applied.
- To edit the shared list use Tools | List Management | Visual Filters...
Code: Select all
v26.90.0300 - 2025-03-10 15:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v26.90.0206 - 2025-03-09 13:26
! Variable <pad ...>: Did not work correctly when interpolated along with script
variables, for example:
$string = 'abcd';
$r1 = "<pad 12>abcd"; // 8 spaces, then the string (12 characters in total)
$r2 = "<pad 12>$string"; // 12 spaces, then the variable
text "$r1<crlf>$r2"; // showing the difference
Fixed.
! List: With Auto-Refresh disabled, the list was not always refreshed after in-place
duplication of items (e.g. with Ctrl+D). Fixed.
Code: Select all
v26.90.0205 - 2025-03-08 13:27
! Live Filter: When filtering by an Extra column the highlighting (if enabled) was
also applied to other columns. Fixed.
! Tools | Customize Keyboard Shortcuts...: Some texts cropped when Buttons and Labels
font is 11.25 (higher is not recommended anyway). Fixed.
! Tree: Under certain conditions, deleting a folder in the tree did not make it
disappear from the tree view (since 20250202). Fixed.
Code: Select all
v26.90.0204 - 2025-03-07 13:17
* Find Files / Quick Search: The "All Disk Search" that's invoked when the search
location is set to This PC now includes non-fixed drives (floppy drives, CD-ROM
drives, mapped network drives, USB drives). Previously only fixed drives were
included.
! Quick Search: Ctrl+F to toggle Find Files mode did not work anymore for a couple of
builds. Fixed.
Code: Select all
v26.90.0203 - 2025-03-05 21:59
! Labels: After deleting labeled items from the list, other labels in the same list
could lose their color until the next explicit refresh. Fixed.
Code: Select all
v26.90.0202 - 2025-03-05 17:25
* Dark Mode: Changed the factory default to a neutral dark. It used to be a nice dark
blue (tint 220), but the majority prefers to be hit with what they know and expect.
! Go to Shortcut Target: Holding down SHIFT while clicking Shortcut Target | Go to
Shortcut Target in the context of a LNK file led to an endless creation of new tabs
(since 20240620). Fixed.
! Rounded Tabs: The right bottom corner rounding of the second-last tab got lost when
hovering the last tab. Fixed.
! Rounded Tabs: In dark mode and with "Configuration | Colors and Styles | Colors |
Match selected tab with breadcrumb" enabled, anti-aliasing of rounded corners was
done against the wrong background color, resulting in a pixelated result. Fixed.
! Info Panel | Report | Current List: The "Selected files only" option was ignored
since 20250130. Fixed.
Code: Select all
v26.90.0201 - 2025-02-27 12:25
+ Quick Search: Added another toggle button to the mini toolbar: Ignore Diacritics.
Serves as a user-friendly alternative to the /u switch. The keyboard shortcut is
Ctrl+D because Ctrl+U is already used for lower case.
! ThumbsOverlayContent: Was not displayed for image or video files where the original
size could not be retrieved. Fixed.
! Quick Search: With content search (cont:...) any failed IFilters were not mentioned
in the status bar nor listed in the search report (Info Panel | Report | Current List).
Fixed.
Code: Select all
v26.90.0200 - 2025-02-26 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v26.90.0108 - 2025-02-26 12:04
! Configuration | Preview | Thumbnails | Show dimensions of original: Since probably
20220806 (!) it was not shown for image types whose dimensions are retrieved using
shell property extensions (e.g. RAW images). Fixed.
Unfortunately, the cause of the problem is stored with the thumbnail cache, so you
will need to update the cache to enjoy the fix.
! ThumbsOverlayContent: Also affected by the above bug and now fixed.
FYI, you can set the ThumbsOverlayContent using SC conf, for example:
conf("ThumbsOverlayContent", '<prop #image.dimensions><crlf<prop #image.datetaken "© ">');
Code: Select all
v26.90.0107 - 2025-02-25 18:56
+ Paper Folders | Zombies: The item type is now shown in the Type column, also for zombies.
* Paper Folders: Removed the "Remove Invalid Entries?" prompt, it's more annoying than
helpful, especially when toggling "Allow Zombies".
! Paper Folders: Fixed numerous little glitches with the handling of zombies (which in
this context means everything that's not a regular file or folder) in the file list,
in the Info Panel (Properties and Meta tab), and in the Preview Pane.
! Hover Box on Paper Folders: Did not show all zombies if zombies are allowed.
* Updated the Paper Folder section in the help file.
Code: Select all
v26.90.0106 - 2025-02-23 12:14
! Scripting | Dereferencing: Disallowed dereferencing in interpolation was ignored
(i.e., it actually happened) if a variable was enclosed in double quotes without any
other characters. Fixed.
Example:
$v = 'vampire'; $vd = '$v';
aid 0; // dereferencing not allowed in interpolation (default anyway)
text " *$vd"; // " *$v"
text "*$vd "; // "*$v "
text "*$vd"; // "*$v" (incorrectly returned "vampire" before)
Code: Select all
v26.90.0105 - 2025-02-22 18:00
+ FLAC Preview: If the Preview Pane (Ctrl+F11) is visible, any available album art will
now be displayed in the Preview Pane while the FLAC is playing.