Version 1.7.1
Behavior/feature additions
- Line breaks in comments are now properly displayed in read-only mode
- The default editor width is now reduced responsively on small-screen devices
widgets
anddisableEditor
are now available as instance fields that can be mutated at runtime- Added Russian UI translation
- Added support for annotating text inside iframes
API
- Breaking change: tag bodies are now serialized differently when terms are from a semantic vocabulary (label + URI) (#94):
{
"type": "SpecificResource",
"purpose": "tagging",
"source": {
"id": "http://vocab.getty.edu/aat/300010358",
"label": "material"
}
}
Non-semantic terms are still represented in the same way, as a TextualBody
with a value
:
{
"type": "TextualBody",
"value": "material",
"purpose": "tagging",
"source": "http://vocab.getty.edu/aat/300010358"
}
Bugfixes
- Relationship annotation: fixes a regression that caused an error when confirming the relationship tag with the 'Ok' button (instead of hitting the Enter key) (#56)
- Fixes a bug in readOnly mode that caused a text selection to be cleared when right-clicking. (Thus making it impossible to copy text with right mouse click.) (#60)
- Bugfixes to support annotations that have only TextPositionSelectors, but no TextQuoteSelectors (#58)