- fix: Event editor had wrong tab caption
- fix: First start asked to copy settings, but didn’t respond an more
- fix: Explorer position was sometimes wrong on Delphi – sometimes Explorer was even stuck there
- fix: Explorer uses current Delphi theme font as described in
System Registry Keys for IDE Visual Settings - fix: Boolean values in XML files are written as True/False again
- fix: spurious access violation
- added: Format unit uses clauses handles conditionals (with some exceptions)
- added: Surround with expands macro compilerversion to something like 33.0 Delphi 10.3 Rio depending on the current Delphi version.
A useful surround template could be
123{$IF CompilerVersion >|<< <!compilerversion!> }{$ENDIF}
which in Delphi 10.3 Rio yields
123{$IF CompilerVersion < 33.0 Delphi 10.3 Rio }{$ENDIF}
with the cursor placed right before the compare operator.