Change Log for the latest
XYplorer BETA version:
Code: Select all
v9.90.0505 - 2011-03-20 16:57
+ Scripting got a new function.
Name: round
Action: Rounds a number.
Syntax: round(number, [precision=0])
number: Number to round.
precision: Number of digits after the decimal point. precision
can also be negative or zero (default). A negative precision
refers to digits before the decimal point.
Examples:
echo round(172.7368, -3); //0
echo round(172.7368, -2); //200
echo round(172.7368, -1); //170
echo round(172.7368, 0); //173
echo round(172.7368, 1); //172.7
echo round(172.7368, 2); //172.74
echo round(172.7368, 3); //172.737
echo round(172.7368, 4); //172.7368
* SC folderreport enhanced. New named argument for parameter type:
type:
dirsrel: List of subfolders relative to current folder.
Example:
text folderreport("dirsrel", "r", , "r");
* SC replace enhanced. Added optional parameters start and count.
Syntax: replace(string, search, replacement, [matchcase], _
[start=1], [count=-1]))
start: Position from left where the replacement starts.
count: Maximal number of replacements.
Examples:
echo replace("aaa", "a", "b", , 2); //abb
echo replace("aaa", "a", "b", , 2, 1); //aba
echo replace("aaa", "a", "b", , , 1); //baa
* SC recase enhanced. New named argument for parameter mode:
mode:
invert: Invert the case of each letter.
Example:
text recase("the caMel can't.", "invert"); //THE CAmEL CAN'T.
* Menu Edit | Paste Special: Changed some captions.
OLD:
Create &Shortcut(s)
Create &Hard Link(s)
Create Sy&mbolic Link(s)
Create &Junction(s)
NEW:
Paste As &Shortcut(s)
Paste As &Hard Link(s)
Paste As Sy&mbolic Link(s)
Paste As &Junction(s)
! Tree: In Vista/Win7 the icons of folders with HIDDEN attribute
were not shown ghosted anymore for a couple of versions. Fixed.
! Catalog: Fixed various glitches (and some crashes) concerning the
new import/export functions.
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
Portable 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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.