The Radmind Transcript Editor didn't generate case-insensitive transcripts if the Pref-Option is set and i add manually files to a transcript.
I found out that a Bug is in RXTranscript.m and the "-I" Option is not set in function readFile.
The problem could be fixed with replace the FSDIFF case with following:
case FSDIFF:
if ( recurse ) {
fsdiffType = @"-K/dev/null";
}
args = [ NSArray arrayWithObjects: @"-AExecuteCommand",
[ NSString stringWithFormat: @"-U%@",
[[ self delegate ] sessionUserName ]],
@"--", @"/usr/local/bin/fsdiff", nil ];
if ( [[ NSUserDefaults standardUserDefaults ] integerForKey:
@"RTECaseSensitive" ] == 0 ) {
args = [ args arrayByAddingObject: @"-I" ];
}
args = [ args arrayByAddingObjectsFromArray:
[ NSArray arrayWithObjects: @"-csha1", fsdiffType, arg1, nil ]];
break;
Fixed RXTranscript.m