Skip to content

Releases: mbari-org/vars-annotation

VARS Annotation 0.2.4

23 Jan 19:57
f626dfa
Compare
Choose a tag to compare

Updated [native-lib-loader] to 2.3.2. It moved where it expects native libraries inside a jar from /natives/osx_64/ to /META-INF/lib/osx_64. Updated dependencies with native libraries to use the new path.

VARS Annotation 0.2.3

20 Dec 22:23
351338d
Compare
Choose a tag to compare

At MBARI, we were experiencing slow loads of annotations when a video had thousands of annotations. This release adds a configuration option to load annotation pages sequentially or in parallel. Sequential is when you're only running a single annosaurus instance. Parallel is allows faster loading when you are running multiple annosaurus instances behind a load-balancer. The configuration is set in the apps application.conf file. The specific options are set using the annotation.service.paging property which can be sequential or parallel

annotation.service {
  url = ${?ANNO_ENDPOINT}
  timeout = "7 seconds"
  client.secret = ""
  chunk.size = 50
  // when running multiple annosaurus instaces behind a load balancer use
  // "parallel" other wise "sequential" is recommended. Not the parse
  // only looks to see if the paging value starts with "par" to turn on the
  // parallel paging. Otherwise "sequential" is used
  paging = "sequential" // "parallel"
}

VARS Annotation 0.2.2

12 Dec 22:44
d214ad1
Compare
Choose a tag to compare

New in this release:

  • Modifications to new/old identity reference buttons used to track instances of the same animal/concept (Issue #54)
    • Greatly improved performance
    • Behavior changed to match old VARS system
  • When editing a concept, typing a space no longer closes the combobox (Issue #34)
  • Added overview tab that tracks the last clicked button (feature request by CSIRO - Issue #93))

VARS Annotation 0.2.1

11 Dec 16:49
c45b427
Compare
Choose a tag to compare

Release Notes:

First version of bulk editor (Issue #25). Most features are present including:
 1. Delete annotations
 2. Move annotations to different video-reference
 3. Rename annotations
 4. Add associations
 5. Remove associations
 6. More understandable search UI

Some features are not yet completed, such as:
 1. Progress bar does not yet show loading progress
   2. Editing existing associations not yet implemented.

  • On launch, the open media button is highlighted to help orient users on what to do first
  • Fixed the issue where the concept editor did not show a focus indicator (Issue #57). No more guessing if you can edit an annotation or not.