Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this project will be documented here.

Nothing yet.

## [0.18.1] - July 22nd, 2025

- Fix "Annotation ID" text color in night mode

## [0.18.0] - July 21st, 2025
- add `allow_annotations_outside_image` arg to the `ULabel` constructor, which defaults to `true`.
- when set to `false`, new annotations will be limited to points within the image, and attempts to move annotations outside the image will bounce back.
Expand Down
2 changes: 1 addition & 1 deletion dist/ulabel.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ulabel.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ulabel",
"description": "An image annotation tool.",
"version": "0.18.0",
"version": "0.18.1",
"main": "dist/ulabel.js",
"module": "dist/ulabel.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions src/blobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1997,6 +1997,9 @@ div#${prntid} span.tb-cls-nam {
display: inline-block;
vertical-align: middle;
}
div#${prntid}.ulabel-night span.tb-cls-nam {
color: white;
}
div#${prntid} a.tbid-opt:hover {
background-color: rgba(255, 181, 44, 0.397);
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const ULABEL_VERSION = "0.18.0";
export const ULABEL_VERSION = "0.18.1";