Skip to content

2.0.0 Alpha 6

Compare
Choose a tag to compare
@adrapereira adrapereira released this 12 May 12:43
· 468 commits to master since this release

Since RODA-in is still in Alpha, it's recommended to delete the "roda-in" folder from the documents before the first execution of the new version.

Changelog:

  • Bug fixing
  • Extended the metadata templating system. It's possible to add options to the template tags which change the way the form is created:
    • value: the predefined value of the field
    • order: the order of the field
    • type: the type of the field
      • text - text field
      • text-area - Text area. Larger than a field text.
      • date - text field with a date picker
      • list - list with the possible values (combo box)
    • list: List with the possible values that a field can have. Usable when type="list". The format is a JSON array. Example: [option A, option B, "option C"]
    • label: The label that appears to the left of the field.
    • mandatory: If set to true the label is styled in bold to draw attention.
    • hidden: If set to true the field is hidden
    • auto-generated: Fills the value with one of the available generators. Overrides the value option:
      • now - the current date in the format year/month/day
      • id - generates an identifier
      • title - generates a title
      • level - adds the current description level
      • parentid - adds the parent's id, if it exists
      • language - addds the system language, based on the locale. Example: "português" or "English"
  • Only the first tag should have options, i.e., if there's two tags with the same name, the options of the second are ignored. The options are not required, the form is still created with a simple tag.
  • The buttons "Remove representation" and "Ignore" from the SIP data tree were merged in the button "Remove"
  • Changed the terminology of "Rules" to "Associations"
  • Added tooltips to the SIP types which give more information of each type.
  • It's now possible to drag files and folders to the SIP data tree, be it from the file explorer of the application or the operative system's file explorer.