Change Log for the latest
XYplorer BETA version:
Code: Select all
v15.00.0507 - 2015-04-26 12:58
+ Toolbar | Toggle Quick Search: Now the tooltip shows the pattern that will
be applied on pressing the button.
+ SC SaveThumb enhanced: Now you can pass only one dimension, widthbox *or*
heightbox, and the other dimension is calculated proportionally so that
the thumbnails fully fills the box. Only when both arguments are missing
width and height default to 500 pixels each.
Examples:
savethumb(, "*_t", 550); //max width 550, height is automatic
savethumb(, "*_t", , 100); //max height 100, width is automatic
savethumb(, "*_t"); //max width 500, max height 500
+ SC SaveThumb enhanced: Added argument border_width which lets you set the
absolute or relative size of a white border around the created thumbnails.
Syntax: savethumb(file="<curitem>, thumbnail_file="*_thumb", _
widthbox, heightbox, format="jpg", border_width)
border_width: Absolute or relative size of a white border around the thumbnail.
Append % to mean percentage. The percentage applies to
the mean image dimension of the thumbnail: (width + height) / 2.
Examples:
savethumb(, , "50%", , , "7%"); //half size, 7% border
savethumb(, "*-<width>x<height>", 400, 300, "png" , 10); //10 pixel border
Notes:
- The border is added to the box after the thumbnail is generated, so a 500
pixel wide thumbnail with a 10 pixel border will create a 520 pixel wide
image file.
- The <width> and <height> placeholders refer to the thumbnails *without* the border.
Use the new <widthall> and <heightall> to refer to the overall sizes with borders:
savethumb(, "*-<widthall>x<heightall>", 550, , , 10); //10 pixel border
+ Scripting: Now Include statements can be nested (included files can
themselves include other files). The maximum nesting level for Include
statements is 100 (one hundred). You will get an error if you go beyond.
Beware of recursion: A file must not include itself or any file by which
it has been included, else you will reach the maximum nesting level within
the next millisecond...
! Scripting: Include statements did not combine well with comments and
HEREDOCs due to a fundamental design flaw which now has been ... Fixed.
! Quick Search and Branch View: Toggling one toggled the other under certain
conditions. Fixed.
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
No-Install Package.
Note that BETA versions are work in progress and might contain fresh bugs. You have been warned.
It's a good idea to backup your complete XYplorer settings (menu File | Settings Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.