Code: Select all
v28.10.0507 - 2026-01-24 21:22
+ Zoom To Cursor: Now Toggle Zoom (press G) will toggle between full view and zoomed detail.
(1) Installer Package, (2) No-Install Package (for manual unpacking).
Code: Select all
v28.10.0507 - 2026-01-24 21:22
+ Zoom To Cursor: Now Toggle Zoom (press G) will toggle between full view and zoomed detail.
Code: Select all
v28.10.0508 - 2026-01-25 12:08
! List Dialog: Since 20260120, the header information remained where it was initially
set throughout the entire session. Fixed.
Code: Select all
v28.10.0509 - 2026-01-25 19:54
! Paste: Since 20260112, in some contexts, a cut-paste was interpreted as a
copy-paste. Fixed.
Code: Select all
v28.10.0510 - 2026-01-26 10:28
! Configuration | Preview | Thumbnails | Show cached thumbnails only: If enabled, new
thumbs disappeared on list refresh (since 20250811). Fixed.
Code: Select all
v28.10.0511 - 2026-01-26 12:28
! Text Preview: The Active ANSI Code Page, if different from 1252, was not used in
Hover Box, MDBU, and Floating Preview. Fixed.
Code: Select all
v28.20.0000 - 2026-01-26 16:00
= NEW OFFICIAL RELEASE. Main developments since last release:
+++ Zoom To Cursor. The image preview now offers a feature called "Zoom to Cursor", also
known as cursor-centered zoom. With this feature, you can use the mouse wheel to
zoom in or out on a specific point in an image. It's a game changer for those
interested in image detail.
+++ Many Other Improvements. See change log.
Code: Select all
v28.20.0001 - 2026-01-30 14:11
+ SC utf8decode enhanced: Now, you can pass an optional code page parameter to decode
any code page besides UTF-8.
Syntax: utf8decode(string, [codepage=65001 (CP_UTF8)])
string: string to decode
codepage: codepage number
defaults to 65001 (= UTF-8)
Examples:
echo(utf8decode("Köln")); //Köln (from UTF-8)
echo(utf8decode("K+APY-ln", 65000)); //Köln (from UTF-7)
+ SC utf8encode enhanced: Now, you can pass an optional code page parameter to encode
any code page besides UTF-8.
Syntax: utf8encode(string, [flags=1], [codepage=65001 (CP_UTF8)])
string: string to encode
flags (bit field):
1 = [default] to wide string (2 bytes per character)
2 = add BOM
codepage: codepage number
defaults to 65001 (= UTF-8)
Examples:
echo(utf8encode("Köln")); //Köln (to UTF-8)
echo(utf8encode("Köln",, 65000)); //"K+APY-ln (to UTF-7)
! Custom File Icons: Ignored in Hover Boxes for folders within overlong folders. Fixed.
! Overlong Folders: In some pre-Win10 contexts the correct shell icons were not shown
for items in overlong folders. Fixed.
! List | Zombie Drag: Since 20251108, you could not drag non-existing files (possible
in Paper Folders and Virtal Folders) from the list anymore. Fixed.
Code: Select all
v28.20.0002 - 2026-01-30 17:39
! Dialogs: Closing a modal form could leave the parent form hidden behind other
windows. Fixed.
Code: Select all
v28.20.0100 - 2026-02-01 18:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v28.20.0101 - 2026-02-09 16:32
! Configuration | General | Menus, Mouse, Usability | Context Menus | Hide shell
extensions from shell context menu: Attempting to show the shell context menu for
multiple types could raise an "Automation error" for some type combinations. No
pattern detectable, looks like a Windows bug; reproducible in Win8.1 and Win11.
Worked around: Now you'll get the native context menu in those situations.
! About Box: In the recent versions of tB the About Box layout broke on higher DPI.
Fixed.
Code: Select all
v28.20.0102 - 2026-02-11 09:56
! Custom Columns, Extra Columns: Allowing a comma in the column caption led to various
problems. Fixed. Commas in column captions are now silently removed.
Code: Select all
v28.20.0103 - 2026-02-11 17:23
! Rename: Attempting to rename a hard drive without administrator privileges could
result in a lockup situation where the application had to be terminated in Task
Manager. Fixed. Now, the error message appears in the status bar instead of a
message box.
> Tip: You need admin rights to rename a hard drive.
! Status Bar: The "shaking icon" effect did not work right in tB. Fixed.
Code: Select all
v28.20.0104 - 2026-02-12 09:28
+ Hover Box: The status section for text files now shows the line endings if they are
not DOS (CRLF), which is the normal case on Windows.
DOS = CRLF (normal case, not shown)
Unix = LF
Mac = CR
Unix/DOS = LF and CRLF
Mac/DOS = CR and CRLF
Unix/Mac = LF and CR
Code: Select all
v28.20.0200 - 2026-02-12 16:00
= MAINTENANCE RELEASE.
+++ Minor bug fixes and enhancements.
Code: Select all
v28.20.0201 - 2026-02-19 12:59
+ Toolbar | Bookmark Buttons: You can now display them without text. In "Rename
Bookmark..." (from the button's context menu) simply clear the edit box to display
only the icon. Previously, if no caption was specified, one was automatically
generated from the location.
+ Using arrow keys to jump to the next item while the hover box is showing now even
works if the current hover box is right under the cursor.
! Menu Go | Up: When parent folders were hidden in the Maxi Tree (e.g., due to "View >
Show Items > Show Hidden Files and Folders" being off), going up would lead to the
first visible parent being listed unnecessarily and very briefly (just visible as a
flash) before listing the actual destination. Fixed.