In Build 1469 the file coloring rules can now be edited using the File Coloring Rules Editor.
There is still some features missing from it like import/export, enabling/disabling of individual rules and the use of alternative rules sets and support for Multi-Language and more
Also the old file coloring is now removed and the user configuration of the old file coloring is converted into the new Coloring Rules.
Also MultiRename search/replace part support regex and there is a new Multi-Script function that replaces using regex StrRegExpReplace
<str> StrRegExoReplace(<str>, <regex>, <replaceWith>, [int startPos] )
example
@var $str = "This.String.A02B22.SUBString-ZZZZ";
@var $re = ".A[0-9][0-9]B[0-9][0-9]."";
@var $result = StrRegExpReplace($str, $re, "XX");
// result is This.StringXXSUBString-ZZZZ