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.