This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
Releases: annotorious/annotorious-v2-selector-pack
Releases · annotorious/annotorious-v2-selector-pack
Version 0.6.0
Version 0.5.1
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
Adds a multi-polygon selection tool. Contribution by @erikradisch.
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
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
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
- Adds a point selector tool
Version 0.2.0
- Fixes to RubberbandCircle
- Change to all tools to account for recent plugin API changes: added
.updateState
method
Version 0.1.2
Initial release