Skip to content

Commit

Permalink
Merge pull request #7554 from opencv/release-2.11.1
Browse files Browse the repository at this point in the history
Release v2.11.1
  • Loading branch information
cvat-bot[bot] authored Mar 5, 2024
2 parents a942f09 + 925ae6a commit 8ea8391
Show file tree
Hide file tree
Showing 62 changed files with 1,952 additions and 779 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ body:
options:
- label: I searched the existing issues and did not find anything similar.
required: true
- label: I read/searched [the docs](https://github.com/cvat-ai/cvat/tree/master#documentation)
- label: I read/searched [the docs](https://opencv.github.io/cvat/docs/)
required: true

- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ body:
options:
- label: I searched the existing issues and did not find anything similar.
required: true
- label: I read/searched [the docs](https://github.com/cvat-ai/cvat/tree/master#documentation)
- label: I read/searched [the docs](https://opencv.github.io/cvat/docs/)
required: true
- type: textarea
attributes:
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- scriv-insert-here -->

<a id='changelog-2.11.1'></a>
## \[2.11.1\] - 2024-03-05

### Added

- Single shape annotation mode allowing to easily annotate scenarious where a user
only needs to draw one object on one image (<https://github.com/opencv/cvat/pull/7486>)

### Fixed

- Fixed a problem with Korean/Chinese characters in attribute annotation mode
(<https://github.com/opencv/cvat/pull/7380>)

- Fixed incorrect working time calculation in the case where an event
occurred during another event
(<https://github.com/opencv/cvat/pull/7511>)

- Fixed working time not being calculated for the first event in each batch
sent from the UI
(<https://github.com/opencv/cvat/pull/7511>)

- Submit button is enabled while creating a ground truth job
(<https://github.com/opencv/cvat/pull/7540>)

<a id='changelog-2.11.0'></a>
## \[2.11.0\] - 2024-02-23

Expand Down
2 changes: 1 addition & 1 deletion cvat-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cvat-canvas",
"version": "2.19.1",
"version": "2.20.0",
"type": "module",
"description": "Part of Computer Vision Annotation Tool which presents its canvas library",
"main": "src/canvas.ts",
Expand Down
37 changes: 1 addition & 36 deletions cvat-canvas/src/typescript/canvasController.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (C) 2019-2022 Intel Corporation
// Copyright (C) 2022-2023 CVAT.ai Corporation
// Copyright (C) 2022-2024 CVAT.ai Corporation
//
// SPDX-License-Identifier: MIT

Expand Down Expand Up @@ -45,13 +45,6 @@ export interface CanvasController {
zoom(x: number, y: number, direction: number): void;
draw(drawData: DrawData): void;
edit(editData: MasksEditData): void;
interact(interactionData: InteractionData): void;
merge(mergeData: MergeData): void;
split(splitData: SplitData): void;
group(groupData: GroupData): void;
join(joinData: JoinData): void;
slice(sliceData: SliceData): void;
selectRegion(enabled: boolean): void;
enableDrag(x: number, y: number): void;
drag(x: number, y: number): void;
disableDrag(): void;
Expand Down Expand Up @@ -107,34 +100,6 @@ export class CanvasControllerImpl implements CanvasController {
this.model.edit(editData);
}

public interact(interactionData: InteractionData): void {
this.model.interact(interactionData);
}

public merge(mergeData: MergeData): void {
this.model.merge(mergeData);
}

public split(splitData: SplitData): void {
this.model.split(splitData);
}

public group(groupData: GroupData): void {
this.model.group(groupData);
}

public join(joinData: JoinData): void {
this.model.join(joinData);
}

public slice(sliceData: SliceData): void {
this.model.slice(sliceData);
}

public selectRegion(enable: boolean): void {
this.model.selectRegion(enable);
}

public get geometry(): Geometry {
return this.model.geometry;
}
Expand Down
Loading

0 comments on commit 8ea8391

Please sign in to comment.