Skip to content

Releases: annotorious/annotorious-v2-selector-pack

Version 0.6.0

09 Nov 12:14
Compare
Choose a tag to compare

Version 0.6.0

  • Adds Line tool

Version 0.5.1

16 Feb 17:19
Compare
Choose a tag to compare

Bugfix release

Fixes interference of the multipolygon tool with the freehand path tool

While we're still testing, the multipolygon tool remains excluded from the default toolset. (Also, there is no icon for it yet in the toolbar plugin.) If you want to use the multipolygon tool, you need to explicitely enable it via the config:

Annotorious.SelectorPack(anno, {
  tools: ['point', 'circle', 'ellipse', 'freehand', 'multipolygon']
});

Version 0.5.0

09 Jan 09:19
21a6f74
Compare
Choose a tag to compare

Adds a multi-polygon selection tool. Contribution by @erikradisch.

screencast

How to use

  • Start drawing a polygon like you would with the normal polygon tool
  • Instead of double clicking, press the N key to start a new shape
  • Double-clicking ends drawing and finalizes the multipolygon shape
  • The tool supports CTRL-Z to undo your last point edit

Version 0.3.2

25 Oct 10:38
Compare
Choose a tag to compare

Added the possibility to configure which tools get added:

// Will only include ellipse and freehand, but not circle
Annotorious.SelectorPack(anno, { 
  tools: ['ellipse', 'freehand']
});

Version 0.3.1

27 Sep 16:55
Compare
Choose a tag to compare

Turns out the Point Selector tool won't be ready for prime time in the OpenSeadragon plugin for a while yet. Removed the Point Selector from the Selector pack, and created a separate plugin project while I'm still working on it.

Version 0.3.0

27 Sep 13:10
Compare
Choose a tag to compare
  • Adds a point selector tool

Version 0.2.0

15 Aug 19:03
Compare
Choose a tag to compare
  • Fixes to RubberbandCircle
  • Change to all tools to account for recent plugin API changes: added .updateState method

Version 0.1.2

03 Aug 10:49
Compare
Choose a tag to compare

Initial release