Skip to content

Commit 4aef980

Browse files
committed
chore(release): 1.6.0
1 parent ace3918 commit 4aef980

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.6.0](https://github.com/open-mmlab/labelbee/compare/v1.5.0...v1.6.0) (2022-05-16)
6+
7+
8+
### Features
9+
10+
* Add a annotationPath display ([caf671f](https://github.com/open-mmlab/labelbee/commit/caf671f43c811f1b102301ff0d0d5659e25e6401))
11+
* I18next change init way ([8842bf0](https://github.com/open-mmlab/labelbee/commit/8842bf063c3b404912130e8c3c91e91eaba2d1a1))
12+
* Optimize edgeAbsorption of PolygonTool which can absorpts points ([3a75b04](https://github.com/open-mmlab/labelbee/commit/3a75b04228d8faccf71dee49234980f50a8c054a))
13+
* **pointTool:** The distance between limit points can't be less than 0.2px ([8e1d131](https://github.com/open-mmlab/labelbee/commit/8e1d131159c113d4330ca2ed7d4043868aafe1a9))
14+
15+
16+
### Bug Fixes
17+
18+
* Fix the problem that the edge of rectTool cannot be dragged ([f6d3f11](https://github.com/open-mmlab/labelbee/commit/f6d3f1107773aaf84f60996ddb097b6c099145cb))
19+
* I18n fobid react-useSuspense ([dce6bf0](https://github.com/open-mmlab/labelbee/commit/dce6bf0bbd4ac6b4eecf23f8f95085bdae4dc9aa))
20+
* **pointTool:** DrawOutsideTarget doesn't work ([0a71a00](https://github.com/open-mmlab/labelbee/commit/0a71a008da437f02a6eef49d4199d10c0d7167e2))
21+
* **pointTool:** The point still follows the mouse when mouse is released ([8871e10](https://github.com/open-mmlab/labelbee/commit/8871e10292196047075a8fa7b9554887d70b48c0))
22+
523
## [1.5.0](https://github.com/Kerwin-L/labelbee-1/compare/v1.4.0...v1.5.0) (2022-03-30)
624
### Features
725

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"workspaces": [
55
"packages/*"
66
],
7-
"version": "1.5.0",
7+
"version": "1.6.0",
88
"scripts": {
99
"start": "lerna run build && lerna run --parallel --stream start",
1010
"dev": "lerna run build && lerna run --parallel --stream dev",

packages/lb-annotation/src/core/toolOperation/pointOperation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { edgeAdsorptionScope, ELineTypes, EToolName } from '@/constant/tool';
22
import RectUtils from '@/utils/tool/RectUtils';
33
import PolygonUtils from '@/utils/tool/PolygonUtils';
44
import MarkerUtils from '@/utils/tool/MarkerUtils';
5+
import MathUtils from '@/utils/MathUtils';
56
import { DEFAULT_TEXT_OFFSET, EDragStatus, ESortDirection } from '../../constant/annotation';
67
import EKeyCode from '../../constant/keyCode';
78
import locale from '../../locales';
@@ -13,7 +14,6 @@ import CommonToolUtils from '../../utils/tool/CommonToolUtils';
1314
import DrawUtils from '../../utils/tool/DrawUtils';
1415
import StyleUtils from '../../utils/tool/StyleUtils';
1516
import uuid from '../../utils/uuid';
16-
import MathUtils from '@/utils/MathUtils';
1717
import { BasicToolOperation, IBasicToolOperationProps } from './basicToolOperation';
1818
import TextAttributeClass from './textAttributeClass';
1919

0 commit comments

Comments
 (0)