Tuesday, November 4, 2008

v7.70.0022 - 2008-11-04 13:12

  • * Catalog: Now, if you press F2 on an item that has no proper caption but shows its location or script data *as* caption, then the Properties dialog is opened rather than the inline rename box. This prevents you from unintentionally creating and modifying a caption when you think you are editing the actual data.
  • * SC Report(): Now, you can overwrite the default field separator through the template argument. Rule: If the template argument does not contain any opening curly brackets ( { ) (they are used to deliminate fields), then it is taken as new field separator. For example:
    - Use the default field separator TAB:
      ::text report();
    - Use ", " as field separator:
      ::text report(", ");
    - Use "{Name}. " as template:
      ::text report("{Name}. ");