Code: Select all
v25.60.0007 - 2024-03-04 15:45
! Tabs: Drawing glitch in theme "Windows Classic" since 20231210 under certain
conditions. Fixed.
(1) Installer Package, (2) No-Install Package (for manual unpacking).
Code: Select all
v25.60.0007 - 2024-03-04 15:45
! Tabs: Drawing glitch in theme "Windows Classic" since 20231210 under certain
conditions. Fixed.
Code: Select all
v25.60.0006 - 2024-03-03 19:00
% General maintenance.
Code: Select all
v25.60.0005 - 2024-03-03 12:52
! Folder Thumbnails: The upgrade to v25.60.0003 was not working as intended. Fixed.
Code: Select all
v25.60.0003 - 2024-03-03 12:38
! Folder Thumbnails: The upgrade to v25.60.0002 was not working as intended. Fixed.
Code: Select all
v25.60.0002 - 2024-03-03 12:01
+ SC readfile enhanced: Added a mode that enforces checking for BOM-less UTF-8 even
when the relevant GUI setting (Configuration | Preview | Preview | Text preview |
UTF-8 auto-detection) is off.
Syntax: readfile(filename, [mode], [numbytes], [codepage], [start=1])
mode:
t_BLU8: Text, check for BOM-less UTF-8.
Remarks:
Of course, UTF-8 with BOM will also be detected and decoded in this mode.
Example:
copytext readfile(<curitem>, "t_BLU8");
* SC readfile: Now when mode is explicitly set to "t" (Text) or "t_BLU8" (Text, check
for BOM-less UTF-8) the file is checked for UTF-8 even if its extension is not among
the Text Files extensions defined in Configuration | Preview | Previewed Formats.
Example:
copytext readfile(<curitem>, "t");
* Folder Thumbnails: Now SC extlist("folderthumbs") lets you edit all folder thumbnail
extensions, not just the ones on top of the old internal defaults ("jpg.jpeg.png.gif").
FYI, the INI key is still FolderThumbsCustomExt.
Call it like this:
extlist("folderthumbs"); //open "Folder Thumbnails - File Extensions" dialog
The factory default is now "jpg.jpeg.png.gif.pdf", and you can add or remove any
extensions you like, and order them any way you like.
The logic works like this:
1. Folders are first checked for files called "folder.[ext]" where [ext] is checked
in the order defined in extlist("folderthumbs").
2. Then they are checked for files called "[foldername].[ext]".
3. Then they are checked for files called "*.[ext]" in alphabetical order.
4. Then they are checked for any image files (Image Files extensions as defined in
Configuration) in alphabetical order.
5. Then they are checked for any video files (Video Files extensions as defined in
Configuration) in alphabetical order.
Code: Select all
v25.60.0001 - 2024-03-02 16:25
! Configuration | Preview | Thumbnails | Overlay Caption: Enabling it caused error 380
since the recent Custom Thumbnail Overlays feature was added. Fixed.
! SC get pick: If hidden stuff is not shown by user preference, the tree (especially
the Maxi Tree) could be out of sync with the list location, but <pick> always looked
at the current tree folder. Fixed. Now it uses the list location.
Code: Select all
v25.60.0000 - 2024-02-29 20:00
= NEW OFFICIAL RELEASE. Main developments since last release:
+++ Custom Thumbnail Overlays. Now you can overlay any file information over a thumbnail
in a style of your choice. Photographers will appreciate seeing the date the shot
was taken and camera settings such as focal length, aperture, exposure time, and ISO
speed.
+++ Many Other Improvements. See change log.
Code: Select all
v25.50.0311 - 2024-02-29 15:00
! Virtual Folders: Opening a Virtual Folder in a new background tab did not work as it
should. Fixed.
Code: Select all
v25.50.0310 - 2024-02-28 20:38
! Move/Copy To | Recent Locations: Didn't support portable device paths. Fixed.
Code: Select all
v25.50.0309 - 2024-02-28 15:46
* MLS: Internally updated to version 8.179.
> TRANSLATORS: Please wait until Reference_8.179.lng is uploaded.
You will be notified if you have subscribed to this thread:
https://www.xyplorer.com/xyfc/viewtopic.php?f=12&t=9648
* Updated the help file.
Code: Select all
v25.50.0308 - 2024-02-27 12:27
+ Toolbar | Paper Folders | Right-Click Menu: Added command "Open Source File of this
Paper Folder". Opens the source file of the currently listed Paper Folder with the
application associated with TXT files.
If you edit and save the file, press F5 to update the Paper Folder in the list.
* Paper Folders: Now an explicit list refresh (F5 or Ctrl+F5) will reread the Paper
Folder from the source file even if "Explicit Save Only" is enabled.
+ SC extlist enhanced: Added another list, raising it from tweak to semi-tweak.
Syntax: extlist(type, [extensionlist], [switches])
type: Which extension list to customize.
NoThumb: File types for which no thumbnails are generated.
Examples:
echo extlist("NoThumb", "?"); //show current NoThumb file extensions
extlist("NoThumb"); //open "No Thumbnails - File Extensions" dialog
extlist("NoThumb", "mht.mpg"); //set NoThumb to these extensions
extlist("NoThumb", ""); //reset any NoThumb extensions
* Updated the help file.
Code: Select all
v25.50.0307 - 2024-02-26 16:26
+ SC conf enhanced: Now you can use it to get/set the tweaks ThumbsOverlaySpecs and
ThumbsOverlayContent.
Examples:
echo conf("ThumbsOverlaySpecs"); //get current value
echo conf("ThumbsOverlayContent"); //get current value
conf("ThumbsOverlayContent", '<prop #image.datetaken>'); //date taken
conf("ThumbsOverlayContent", ""); //back to default (i.e. show dimensions of original)
conf("ThumbsOverlaySpecs", "FFFF00,FF0000,128,1"); //yellow on semitransparent red with ThousandSeparator
conf("ThumbsOverlaySpecs", ""); //back to default (white on semitransparent black)
Note that with ThumbsOverlaySpecs you can set certain values while leaving the
others untouched:
conf("ThumbsOverlaySpecs", ",,,,,120"); //bigger text (120%)
Note the use of single and double quotes. Outer single quotes protect the variable
from being resolved before it is passed to SC conf. Now double quotes can and must
be used inside to protect the space after ©:
conf("ThumbsOverlayContent", '<prop #image.datetaken "© ">');
Finally, a luxurious three-liner (_ is just used to break it up here in the change log):
conf("ThumbsOverlayContent", '<prop #image.dimensions><crlf><prop #image.focallength> _
<prop #image.fstop> <prop #image.exposuretime> <prop #image.isospeed><crlf><prop #image.datetaken "© ">');
! Configuration | Preview | Thumbnails | Thumbnails View Background | Use: Under
certain conditions this color was lost when toggling overlays. Fixed.
Code: Select all
v25.50.0306 - 2024-02-25 13:51
+ Background Jobs: You can now cancel the currently running job from the job's context
menu (new "Cancel Job" command) in the Background Jobs dialog. The next job in the
queue is automatically started.
* XYcopy: Updated to 2.10.0251.
* Tweak NoThumb (to exclude certain file types from thumbnailing): Now it also affects
folder thumbnails. Example:
NoThumb=pdf.mht
Code: Select all
v25.50.0305 - 2024-02-24 20:24
* Tweak ThumbsOverlaySpecs: Now the font size percentage (relative to the list font
size) can be stated in the 6th field. For example 120% (default is 90%):
ThumbsOverlaySpecs=333333,FFFFFF,160,0,0,120
! Configuration | Preview | Thumbnails | Show dimensions of original: Fixed some
glitches with the new tweak options.
Code: Select all
v25.50.0304 - 2024-02-23 10:55
+ Added a tweak to customize the content of the thumbnail overlay (which by default
shows the dimensions of the original image). Now you can show any properties you
want using the usual syntax.
For example, the "date taken" might be more interesting to you than the image size,
especially if all your images are the same size. You could do it like this:
ThumbsOverlayContent=<prop #image.datetaken '© '>
It will put a '©' in front of the date if there is one, otherwise no overlay will be
shown.
Linefeeds are supported with <crlf>. This is a two-liner:
ThumbsOverlayContent=<prop #image.focallength> <prop #image.fstop> <prop #image.exposuretime> _
<prop #image.isospeed><crlf><prop #image.datetaken '© '>
+ Configuration | Preview | Thumbnails | Show dimensions of original: Now you can
toggle this setting with the keyboard shortcut assigned to "View | Columns | Shrink
Name Column" (Ctrl+Shift+Numpad Subtract by default) if the list is in thumbnails view.
FYI, similarly the "View | Columns | Grow Name Column" shortcut can toggle
"Configuration | Preview | Thumbnails | Overlay caption" and the "View | Columns |
Autosize Columns Now" shortcut can toggle "Configuration | Preview | Thumbnails |
Show caption".