Code: Select all
v21.00.0009 - 2020-09-09 13:28
+ Message Drop: Added support for more charsets in the subject line. So when
your template at "Configuration | Colors and Styles | Templates | Dropped
Messages" contains <subject> you might see an improvement with certain
Chinese and Japanese encodings when dropping a message file to XYplorer.
! Message Drop: The Base64-decoding had an error that could result in
garbled message subjects. Fixed.
+ Scripting got a new function.
Name: Base64Decode
Action: Decodes a Base64-encoded string or file.
Syntax: base64decode(text, [file], [targetfile])
text: text to decode
ignored if "file" is not empty
file: if not empty: file to decode
path defaults to current path
targetfile: if not empty: write decoded bytes to this file
path defaults to current path
on exist file is overwritten without asking
return: decoded string
Examples:
text base64decode("Ki4/"); // *.?
text base64decode(, "Base64.txt"); //(input from file) *.? (if the file contains "Ki4/")
text base64decode("Ki4/", , "Text.txt"); //write output "*.?" to file
+ Scripting got a new function.
Name: Base64Encode
Action: Encodes a string or file content in Base64.
Syntax: base64encode(text, [file], [targetfile])
text: text to encode
ignored if "file" is not empty
file: if not empty: file to encode
path defaults to current path
targetfile: if not empty: write decoded bytes to this file (full path spec)
path defaults to current path
on exist file is overwritten without asking
return: encoded string
Examples:
text base64encode("*.?"); // Ki4/
text base64encode(, "Text.txt"); //(input from file) Ki4/ (if the file contains "*.?")
text base64encode("*.?", , "Base64.txt"); //write output "Ki4/" to file
% 64-bit Preview: Removed the short flicker when using 64-bit preview or
thumbnails.
* Preview64: Updated to 1.0.0.12.
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.
XYplorer Beta Club