Code: Select all
v26.50.0302 - 2024-10-30 17:10
* Updated the help file.
(1) Installer Package, (2) No-Install Package (for manual unpacking).
Code: Select all
v26.50.0302 - 2024-10-30 17:10
* Updated the help file.
Code: Select all
v26.50.0301 - 2024-10-29 20:59
! Live Filter: Under certain conditions it would not work properly for Custom Columns.
Fixed.
Code: Select all
v26.50.0300 - 2024-10-28 17:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v26.50.0205 - 2024-10-28 15:25
+ Custom Column Cell Click: Now it can be enabled/disabled via the new custom column
header context menu toggle "Refresh Cell by Click". Like "Skip Custom Columns", this
is a global setting for all custom columns.
Code: Select all
v26.50.0204 - 2024-10-28 12:55
+ Custom Columns: <cc_trigger> now also returns the state of the three function keys:
Shift = 4
Ctrl = 8
Alt = 32
So, for example, a value of 5 derives from 1 + 4 (Shift+LeftClick); a value of 13
derives from 1 + 4 + 8 (Ctrl+Shift+LeftClick).
This gives you even more control over Custom Column Cell Click scripts.
Code: Select all
v26.50.0203 - 2024-10-27 16:38
+ Custom Columns: Left-clicking a cell now refreshes the cell (e.g. re-runs the script
in the case of a scripted custom column).
+ Custom Columns: Added variable <cc_trigger>. Returns 1 if the cell was left-clicked.
+ Custom Columns: Added variable <cc_cell>. Returns the current textual content of the cell.
> Custom Columns: The above enhancements now allow you to define scripted custom
columns that run a specific part of a script when the cell is displayed, and another
part when the cell is left-clicked.
For example, this script shows the GPS data of a file and, when clicked, opens
Google Maps at the location:
if (<cc_trigger>==1) {
open("https://www.google.com/maps/place/<cc_cell>");
} else {
return get("exif", "gps", <cc_item>);
}
As another example, here a left-click will toggle two icons in a column of the
format "Icon":
if (<cc_trigger>==1) {
if (<cc_cell>=="Help.ico") {
return "Smiley.ico";
} else {
return "Help.ico";
}
} else {
return "Help.ico";
}
Those in the know will see that this opens up a whole new world of possibilities.
% Content-Based Folder Icons: Slightly faster startup and faster tagging when /t
switch is active.
Code: Select all
v26.50.0202 - 2024-10-26 13:02
* Configuration | Colors and Styles | Fonts | Line numbers relative font size (%):
Settings < 100% seem to cause mysterious drawing lags on (some?) Chinese and
probably other East Asian Windows systems, therefore the factory default for these
systems has been changed from 90 to 100.
Same for "Thumbnail captions relative font size (%)".
! Custom Columns: Could show wrong icons for format "Icon" if Custom File Icons were
defined for the source path of the icons. Probably since 20241009. Fixed.
Code: Select all
v26.50.0201 - 2024-10-24 22:14
% Line Numbers: On some systems, setting the line numbers relative font size to a value
less than 100% caused noticeable slowdowns in list drawing. Attempt to fix.
Code: Select all
v26.50.0200 - 2024-10-23 21:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v26.50.0104 - 2024-10-23 17:36
* Configuration | General | Refresh, Icons, History | Icons | Enable custom file
icons: Renamed to "Show custom file icons".
* Updated the help file.
! Configuration | General | Menus, Mouse, Usability | Mouse | Point to select: Did not
work well with Mouse Up Show Down under certain conditions. Fixed.
Code: Select all
v26.50.0103 - 2024-10-22 19:50
! Configuration | General | Menus, Mouse, Usability | Mouse | Point to select: Did not
work properly with thumbnails under certain conditions. Fixed.
Code: Select all
v26.50.0102 - 2024-10-21 20:47
+ Hover Box | Folder Contents Preview: Added a tweak to show the deep contents of the
entire branch in the status section of the hover box when hovering over a folder:
HoverBoxFolderDeepContents=1
Notes:
- Since this can take a while for large branches, there is an additional safety
belt: You also have to hold down the SHIFT key to actually get the deep scan.
- You can abort the deep scan by pressing ESC.
- Drives roots are excluded here. They are never deep scanned.
- If a deep scan was performed, you will see a "Deep contents:" header in the status
section.
- Folder size caching is used if enabled; when cached values are displayed, the
header is "Deep contents (cached):".
- If you enable "Configuration | Information | File Info Tips & Hover Box | Show
Hover Box | Only while the shift key is held down" you will of course always get
the deep scan with the Hover Box. Just a slightly unfortunate collision of
conditions.
! Configuration | General | Menus, Mouse, Usability | Mouse | Point to select: Did not
work properly with less than half visible thumbnails or tiles, and did not work when
the mouse hovered over the cell but not the thumbnail itself. Both fixed.
Code: Select all
v26.50.0101 - 2024-10-21 13:26
! Configuration | General | Menus, Mouse, Usability | Mouse | Point to select: Did not
always work in all contexts. Fixed.
! Configuration | Colors and Styles | Templates | Status Bar: Variable <s:duration>
was not resolved anymore if Skip Custom Columns was enabled. Fixed.
! SC get("LengthsSelected"): Didn't work anymore if Skip Custom Columns was enabled.
Fixed.
Code: Select all
v26.50.0100 - 2024-10-13 14:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v26.50.0012 - 2024-10-13 11:58
* XYcopy: Updated to 2.10.0262.
! SC Sync: The recent fix was not perfect yet. Fixed again.