Change Log for the latest
XYplorer BETA version:
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.

To easily
upgrade to this BETA version from XYplorer, hold down the
CTRL key while you click
Help | Online Support | Check for Updates. If you prefer to
download the BETA version, choose one of these packages:
(1)
Installer Package, (2)
No-Install Package (for manual unpacking).
Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.