Change Log for the latest
XYplorer BETA version (64-bit):
Code: Select all
v28.30.0403 - 2026-04-27 18:29
+ Custom Columns: Command ">draw.bar" enhanced. Added optional "text" and "colortext"
parameters, providing a way to print text onto the bar.
>draw.bar [percentage=50], [colorleft], [colorright], [opacity=224], _
[borderwidth=0]|[text]|[colortext]
Notes:
- Pipe | is used a field separator to allow commas in the text.
- The text color defaults to the list text color in light mode (usually that's black).
- The text is horizontally and vertically centered.
- Autosize columns ignores this text.
Example:
Here is a sample script that draws bars according to the file size. Color are used
to distinguish 4 size groups: green < 1KB, yellow < 1MB, red < 1GB, purple 1GB or more.
------------------------------------------------------------------------
$size = "<cc_size>";
switch (true){
case $size == 0: return ''; // draw nothing
case $size < 1024: return '>draw.bar ' . 100 * $size \ 1024 . ', 66CC66, BBEEBB|' . formatbytes($size); //smaller 1 KB
case $size < 1048576: return '>draw.bar ' . 100 * $size \ 1048576 . ', FFBB00, FFEE88|' . formatbytes($size); //smaller 1 MB
case $size < 1073741824: return '>draw.bar ' . 100 * $size \ 1073741824 . ', DD4444, FFAAAA|' . formatbytes($size); //smaller 1 GB
default: return '>draw.bar ' . 100 * $size \ 1099511627776 . ', DD44AA, FFAADD|' . formatbytes($size); //1 GB or more
}
------------------------------------------------------------------------
! Action Log: A bug in v28.30.0402 could cause an "Invalid Index" error when loading
action.dat. Fixed.

To easily
upgrade to this BETA version of XYplorer (64-bit), hold down the
CTRL key and 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.