Yes and no
Yes, my demo performs the same in v12 and v13.
But that is because I simplified it too much:
- Regular Find instead of Dupefinder
- Button instead of Script
Opus kept CLEAR=no
as default up to at least 13.0.28 (13.0.32 and up default to yes
) when the Dupefinder was called from a script.
function OnClick(clickData) {
var cmd = clickData.func.command;
var tab = clickData.func.sourcetab;
var fsu = DOpus.FSUtil();
cmd.deselect = false;
cmd.RunCommand('Set UTILITY=otherlog');
cmd.RunCommand('Find NAME=*.* DUPES MD5=cache COLLNAME=MyDupes IN "D:\\Demo Find\\Folder1"');
cmd.RunCommand('Find NAME=*.* DUPES MD5=cache COLLNAME=MyDupes IN "D:\\Demo Find\\Folder2"');
cmd.RunCommand('Find NAME=*.* DUPES MD5=cache COLLNAME=MyDupes IN "D:\\Demo Find\\Folder3"');
}
Find Duplicates in Subfolders is based on this behavior and needs an update for v13.
I think it makes sense.
I agree. Cheers to the new default for all scenarios!