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

CVAT UI: batch of fixes #1705

Merged
merged 25 commits into from
Jun 25, 2020
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
07c5b81
Added image preview on settings page and fixed bugtracker input
ActiveChooN Jun 1, 2020
580e5af
A
ActiveChooN Jun 8, 2020
a2a8217
Merge branch 'develop' into dk/batch-of-fixes
ActiveChooN Jun 8, 2020
5e85f47
added colorpicker library and canvas fix on sidebar closing
ActiveChooN Jun 9, 2020
b050eed
added canvas background color picker,
ActiveChooN Jun 14, 2020
74a5b9c
Merge branch 'develop' of https://github.com/opencv/cvat into develop
ActiveChooN Jun 14, 2020
77efb93
Merge branch 'develop' into dk/batch-of-fixes
ActiveChooN Jun 14, 2020
c9f00e1
upgraded npm package version
ActiveChooN Jun 14, 2020
eefb702
fixed paths
ActiveChooN Jun 14, 2020
4101844
Added CHANGELOG.md
ActiveChooN Jun 14, 2020
564164e
fixed eslint problems
ActiveChooN Jun 15, 2020
5cc2f0b
Merge branch 'develop' of https://github.com/opencv/cvat into develop
ActiveChooN Jun 17, 2020
6d1700e
Merge branch 'develop' into dk/batch-of-fixes
ActiveChooN Jun 17, 2020
9558bf5
Fixed show settings shortcut, grid size and bug tracker escape event
ActiveChooN Jun 18, 2020
be7f47f
fixed autosave and settings tabs padding
ActiveChooN Jun 18, 2020
0c5911f
fixed changelog
ActiveChooN Jun 18, 2020
567e518
fixed CHANGELOG.md
ActiveChooN Jun 18, 2020
56a5fb1
Fixed displaying all text
ActiveChooN Jun 19, 2020
6d15c04
fixed CHNAGELOG.md
ActiveChooN Jun 19, 2020
3e6d77f
moved to standart dom transitionend event
ActiveChooN Jun 19, 2020
80daa43
fixed show all interpolation tracks parameter switch
ActiveChooN Jun 22, 2020
45b09df
Merge branch 'develop' into dk/batch-of-fixes
ActiveChooN Jun 22, 2020
36ec40f
fixed PR
ActiveChooN Jun 23, 2020
86c29fb
Merge branch 'develop' into dk/batch-of-fixes
ActiveChooN Jun 23, 2020
c87e1af
Merge branch 'develop' into dk/batch-of-fixes
ActiveChooN Jun 24, 2020
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added default label color table for mask export (https://github.com/opencv/cvat/pull/1549)
- Added environment variables for Redis and Postgres hosts for Kubernetes deployment support (<https://github.com/opencv/cvat/pull/1641>)
- Added visual identification for unavailable formats (https://github.com/opencv/cvat/pull/1567)
- Added canvas background color selector (<https://github.com/opencv/cvat/issues/1514>)
- Added image settings preview (<https://github.com/opencv/cvat/issues/1458>)
ActiveChooN marked this conversation as resolved.
Show resolved Hide resolved

### Changed
- Removed information about e-mail from the basic user information (<https://github.com/opencv/cvat/pull/1627>)
- Update https install manual. Makes it easier and more robust. Includes automatic renewing of lets encrypt certificates.
- Settings page move to the modal.

### Deprecated
-
Expand All @@ -28,6 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Wrong rexex for account name validation (<https://github.com/opencv/cvat/pull/1667>)
- Wrong description on register view for the username field (<https://github.com/opencv/cvat/pull/1667>)
- Wrong resolution for resizing a shape (<https://github.com/opencv/cvat/pull/1667>)
- Fixed issue tracker (<https://github.com/opencv/cvat/pull/918>)
- Fixed canvas fit after sidebar open/close event (<https://github.com/opencv/cvat/issues/1643>)

### Security
- SQL injection in Django `CVE-2020-9402` (https://github.com/opencv/cvat/pull/1657)
Expand Down
2 changes: 1 addition & 1 deletion cvat-canvas/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 cvat-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cvat-canvas",
"version": "1.1.1",
"version": "1.1.2",
"description": "Part of Computer Vision Annotation Tool which presents its canvas library",
"main": "src/canvas.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion cvat-canvas/src/scss/canvas.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ polyline.cvat_canvas_shape_splitting {
height: calc(100% - 10px);
margin: 5px;
border-radius: 5px;
background-color: white;
background-color: inherit;
overflow: hidden;
position: relative;
}
Expand Down
Loading