Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v2.1.0 #4556

Merged
merged 37 commits into from
Apr 9, 2022
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b0e6074
Update CHANGELOG and the server version
Mar 4, 2022
2c863f0
Added ATLANTIS in README. (#4423)
smhassanerfani Mar 9, 2022
42fdea9
fixed: Permission error occured when accessing the JobCommits #4434 (…
k1won Mar 9, 2022
c69f10b
fixed: job assignee can remove or update any issue created by the tas…
k1won Mar 10, 2022
3dc4371
Feature/fixed build macos (#4414)
evekeen Mar 10, 2022
53f6699
Fixed bug: Incorrect point deletion with keyboard shortcut (#4420)
klakhov Mar 11, 2022
1225fbb
Enhanced filtration/sorting for tasks/projects/tasks in projects/clou…
bsekachev Mar 11, 2022
1fa2676
Tus for task annotations import (#4327)
klakhov Mar 11, 2022
09e9084
Bump pillow from 9.0.0 to 9.0.1 in /utils/dataset_manifest (#4447)
dependabot[bot] Mar 12, 2022
c360852
Bump pillow from 9.0.0 to 9.0.1 in /utils/dicom_converter (#4446)
dependabot[bot] Mar 12, 2022
7ef553f
Create SECURITY.md
Mar 12, 2022
2b81592
Fix a linter issue with SECURITY.md file
Mar 14, 2022
fc520a3
Intel® Bug Bounty Program (#4454)
Mar 14, 2022
8810125
Remote files test (#4443)
Mar 14, 2022
751937b
Added missing geos dependency (#4451)
evekeen Mar 14, 2022
be334fd
Update REST API documentation (#4391)
Marishka17 Mar 14, 2022
6dd73b0
Improve REST API testing system (#4403)
Mar 16, 2022
93ccf21
Better readme to Helm chart (#4366)
kbegiedza Mar 16, 2022
b7e881f
fix linter issue (#4488)
Marishka17 Mar 18, 2022
d42e37c
Update documentation. Update sections about pages (#4480)
TOsmanov Mar 18, 2022
dd60b2d
REST API tests: patch tasks, post/patch issues (#4465)
ActiveChooN Mar 18, 2022
bceae22
Tus for project dataset (#4485)
klakhov Mar 22, 2022
96af4f1
Support paginated list for job commits #4476 (#4482)
k1won Mar 23, 2022
2a05316
Add REST API GET, POST, PATCH tests for cloud storage (#4353)
Marishka17 Mar 24, 2022
0fc15d7
Bump minimist from 1.2.5 to 1.2.6 in /cvat-core (#4509)
dependabot[bot] Mar 25, 2022
c96e353
Bump minimist from 1.2.5 to 1.2.6 in /cvat-ui (#4510)
dependabot[bot] Mar 25, 2022
940548d
Bump minimist from 1.2.5 to 1.2.6 in /tests (#4511)
dependabot[bot] Mar 25, 2022
2fb2a6a
Add a link on JSON:API
Mar 25, 2022
21251b5
added reset of activeShapeType (#4517)
klakhov Mar 25, 2022
449ae0c
fixed: Unable to upload annotations #4459 (#4513)
k1won Mar 25, 2022
eb63420
Return the response from the AI tool (#4432) (#4505)
amteusch Mar 25, 2022
6fd7a0e
Support CVAT 2.X deployment using helm (#4448)
se-wo Mar 27, 2022
737ee71
fix build dependencies for Siammask (#4486)
VRichardJP Mar 30, 2022
2b6fe74
Fix filter (#4541)
Marishka17 Apr 4, 2022
d22b12d
EXIF orientation support (#4529)
ActiveChooN Apr 4, 2022
de30cb2
REST API tests: project accessibility (#4496)
ivk Apr 5, 2022
119a27b
Release v2.1.0
nmanovic Apr 8, 2022
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
Prev Previous commit
Next Next commit
added reset of activeShapeType (#4517)
  • Loading branch information
klakhov authored Mar 25, 2022
commit 21251b5b793e2cd10ca9eb9152d8832e7994827c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2020-2021 Intel Corporation
// Copyright (C) 2020-2022 Intel Corporation
//
// SPDX-License-Identifier: MIT

Expand Down Expand Up @@ -32,7 +32,11 @@ function mapDispatchToProps(dispatch: any): DispatchToProps {
dispatch(createAnnotationsAsync(sessionInstance, frame, states));
},
onRememberObject(labelID: number): void {
dispatch(rememberObject({ activeObjectType: ObjectType.TAG, activeLabelID: labelID }));
dispatch(rememberObject({
activeObjectType: ObjectType.TAG,
activeLabelID: labelID,
activeShapeType: undefined,
}));
},
};
}
Expand Down