Skip to content

Releases: recogito/recogito-js

Version 1.0.0

21 Feb 08:15
Compare
Choose a tag to compare

No API changes. Internal code refactoring only. Syncs with release 1.0.0 of recogito-client-core.

Version 0.3.0

04 Jan 14:19
Compare
Choose a tag to compare

Maintenance release. Adds new UI translations.

Version 0.2.2

28 Nov 13:20
Compare
Choose a tag to compare
  • Proper handling of multi-line comments in the Comment Widget
  • Localized text labels for time expressions ("2 minutes ago"), when using authInfo
  • Added missing Spanish labels for 'Edit' and 'Delete'
  • Turkish UI translation

Version 0.2.1

13 Oct 12:58
Compare
Choose a tag to compare
  • Tag widget: fixed broken autosuggest behavior
  • Editor plugins: config params are now properly forwarded to plugin args
  • Czech UI translation

Version 0.2.0

20 Sep 06:50
Compare
Choose a tag to compare

This is a minor version upgrade which introduces a number of backwards compatible bugfixes and additions, but also includes some minimal changes to how RecogitoJS is configured.

Important: CSS styles are no longer embedded in the JavaScript file, but now have to be imported separately:

<link rel="recogito.min.css" href="styles.css">

Important: editor widgets are becoming more flexible. This release is the first to include beta support for a plugin API.
As a consequence, this version introduces a minimal change to how the tag widget is configured with a controlled vocabulary.

// Previously
var r = Recogito.init({
  content: 'content',
  tagVocabulary: ['Protagonist', 'Antagonist', 'Epic Struggle']
});

// From this version onwards
var r = Recogito.init({
  content: 'content',
  widgets: [
    'COMMENT',
    { widget: 'TAG', vocabulary: ['Protagonist', 'Antagonist', 'Epic Struggle'] }
  ]
});

Further additions include:

  • Editor behavior
    • Comment text element & tag input element now extend to the full size of the parent, resolving the issue that
      clicking inside the widget sometimes didn't focus
    • Comment field now gets focus automatically after popup opens
  • Tag widget
    • Style bugfixes for IE11
    • When adding a tag, it's no longer required to press Enter to save it
  • Comment widget
    • The comment widget now has an additional editable config option so you can switch (separately from the global setting) between
      editable (editable: true), not editable (editable: false) and editable, but don't allow editing other users' contributions
      (editable: 'MINE_ONLY).

Version 0.1.8

30 Aug 10:42
Compare
Choose a tag to compare
  • More IE11 compatibility bugfixes

Version 0.1.7

29 Aug 11:45
Compare
Choose a tag to compare
  • IE11 support
  • Security fixes

Version 0.1.6

11 Jul 13:22
Compare
Choose a tag to compare
  • Minor bugfixes
  • Portuguese UI translation
  • Tag widget: controlled vocabulary autosuggest

Version 0.1.5

11 Jun 15:42
Compare
Choose a tag to compare
  • Compatibility with Microsoft Edge
  • Editor now stays properly positioned on window resize
  • Various bugfixes
  • Added support for internationalization
  • Ability to handle user information for UI display and when creating/updating annotations
  • Ability to add created and modified timestamps, with an option for the host application to sync with the server time

Version 0.1.4

03 May 11:37
bfd0082
Compare
Choose a tag to compare

A maintenance release with the latest enhancements of recogito-client-core

  • Bugfixes
  • API tweaks
  • Smaller bundle size due to Preact and UglifyJS