sort by:
Revision Author Date Message Commit Date
29b249e Cypress test. Project backup/restore. (#4159) 21 January 2022, 13:10:45 UTC
211ae2a Cypress test. Ellipse actions. (#4215) * Update the commands, utils. Case 108 adaptation * Added/updated tests for ellipse 21 January 2022, 10:21:37 UTC
3c750d4 Fixed corner case during search (#4198) * Fixed corner case during search * Updated version & changelog * Added tests 20 January 2022, 10:49:03 UTC
129584b Update documentation. Update CLI section (#4056) 20 January 2022, 07:51:01 UTC
c7fcd3a Fixed bug: Error in Create project from backup for Standard 3D Annotation (#4160) 20 January 2022, 07:32:46 UTC
5e59ba1 Fix project permissons (anybody in org could see the list of projects) (#4201) 20 January 2022, 07:10:26 UTC
2a417a9 Fixed: Don't able to choose the format for git (#4203) 20 January 2022, 07:09:29 UTC
7c0832c Update ELK to 6.8.23 (#4206) 20 January 2022, 07:07:47 UTC
d3db54d Fixed: Issues disappear when using a zoom (#4189) * Fixed: Issues disappear when using a zoom * Fixed creating issues for ellipses and rotated shapes * Updated version & changelog 19 January 2022, 08:16:09 UTC
bc4ff49 Fixed: Could not receive frame N. TypeError: Cannot read properties of undefined (#4187) * Fixed issue with async frames fetching * Updated versions and changelog 18 January 2022, 10:52:40 UTC
182d941 Added YOLOv5 serverless function for auto labeling (#4178) * added yolov5 serverless function for auto labeling * updated CHANGELOG.md Co-authored-by: Alex <aleksander.chernyavskiy@seafar.eu> 17 January 2022, 19:56:58 UTC
f97db1c Updated documentation and screenshot with labels editor (#4190) * Updated documentation and screenshot with labels editor * Resized images 17 January 2022, 13:39:10 UTC
566eb2a Fix Bug 4010 - API method to register does not return authentification token (#4092) * Return auth token key on register without email verification When email verification is turned off using all-auth settings, then on registration, return the auth token key. * Add tests for user registration without email verification * Add test case for user registration when email confirmation is manadatory * Refactor register api tests and add its docstring * updated the license header for iam tests * Add pull request link to changelog * Add comment to explain overriding of ROOT_URLConf * Refactor tests for user registration Split the test case for user registration without email verification into two test cases by overriding ACCOUNT_EMAIL_VERIFICATION as 'none' and 'optional' * Fix doc string * updated changelog Co-authored-by: karthik <gkraja@mindkosh.com> Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com> 17 January 2022, 12:56:43 UTC
7a7b4b1 Remove caching for tasks and jobs (#4165) * Resolved https://github.com/openvinotoolkit/cvat/issues/4088 * Update CHANGELOG * Fix linter issues * Removed CACHEOPS settings from production.py 17 January 2022, 09:59:09 UTC
796991a Added intelligent function when paste labels to another task (#4161) * Added intelligent paste labels function, added notification when remove labels from raw editor * Adjusted raw tab behaviour * Fixed issue with selection * Updated version and changelog, removed previous implementation * Removed outdated comment * Additional checks on the server * Added check for default boolean attr * Updated version * Conditionally show lost labels/attributes * Remove labels only when create Co-authored-by: Nikita Manovich <nikita.manovich@intel.com> 17 January 2022, 08:13:58 UTC
c77d956 Cypress test. Update case 8 to check fix 4151. (#4174) * Update the test to check fix 4151 * Some reworks * Activating the step for Firefox Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 14 January 2022, 17:16:59 UTC
da82f4f Fixed issue: Uncaught TypeError: this.el.node.getScreenCTM() is null … (#4175) * Fixed issue: Uncaught TypeError: this.el.node.getScreenCTM() is null in Firefox * Updated version and changelog * Fixed test 14 January 2022, 14:28:27 UTC
b6f3b05 Update Documentation. Add documentation about ellipses (#4172) * add documentation about ellipses * Update site/content/en/docs/manual/advanced/annotation-with-ellipses.md * Update site/content/en/docs/manual/advanced/annotation-with-ellipses.md * Update site/content/en/docs/manual/advanced/annotation-with-ellipses.md * Update site/content/en/docs/manual/advanced/annotation-with-ellipses.md * Update site/content/en/docs/manual/advanced/annotation-with-ellipses.md * Update site/content/en/docs/manual/advanced/annotation-with-ellipses.md * fix mistake Co-authored-by: Boris Sekachev <boris.sekachev@intel.com> 14 January 2022, 10:09:50 UTC
fc6525e Cypress test. Adjust, enabling tests for issues 2524 2633. (#4166) * Update the command * Rework the test Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 14 January 2022, 06:57:38 UTC
57e5e62 Fixed bug: tus failed to upload chunk at offset 0 over https (#4154) 13 January 2022, 14:35:26 UTC
c9aa9a1 Update Documentation about export, import and backup features (#4150) 13 January 2022, 11:38:37 UTC
dc03234 Bump django from 3.2.10 to 3.2.11 in /cvat/requirements (#4162) Bumps [django](https://github.com/django/django) from 3.2.10 to 3.2.11. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.2.10...3.2.11) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 January 2022, 11:24:04 UTC
1d084c4 Fixed bug: canvas is busy (at least one reproducing way) (#4151) * Fixed bug: canvas is busy (at least one reproducing way) * Updated version & changelog * Fixed license headers 13 January 2022, 10:32:58 UTC
c83d170 Add several flags to task_create CLI (#4119) * Add serveral flags to CLI & generalize CLI code definition.py: - Add use_zip_chunks, start_frame, stop_frame, and chunk_size as CLI flags - Rename --bug to --bug_tracker to be consistent with website and API - No longer include optional kwargs in all requests core.py: - Add a single loop to handle all kwargs for extensibility - Lump optional task_create args into kwargs for brevity * Add --bug as alias for --bug_tracker - Add back old --bug flag for backwards compatability * Update licence header Update licence header for core.py * Remove redundant parameter assignment - Remove hardcoded `image_quality` default value, as this is already handled by the argparse default value. * CHANGELOG entry for new CLI flags * CLI linting fixes - Several linting fixes for CLI * Fix CLI test - Re-add default image_quality in case task_create is called manually * Resolve changelog merge conflict * Update CHANGELOG.md Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com> 13 January 2022, 09:41:14 UTC
e9c00cd Email in org invitations should be case insensitive (#4153) Resolved https://github.com/openvinotoolkit/cvat/issues/4096 13 January 2022, 07:17:20 UTC
f1241fe Updated license year. (#4157) * Updated license year * Update year Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 12 January 2022, 14:42:52 UTC
b85a4ad Added support of ellipses (#4062) 12 January 2022, 14:22:28 UTC
2cd7a38 Bump django-filter from 2.3.0 to 2.4.0 (#4155) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 12 January 2022, 13:46:51 UTC
eb7e719 Make user-data-permission-fix optional (#3994) * Make user-data-permission-fix optional * Update CHANGELOG.md * Update CHANGELOG.md Co-authored-by: u231555 <ferdinand.niedermann@sbb.ch> Co-authored-by: Nikita Manovich <nikita.manovich@intel.com> Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com> 12 January 2022, 11:49:36 UTC
40f05b2 Update numpy to 1.22.0, tensorflow to 2.7.0 (#4146) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 11 January 2022, 17:48:12 UTC
cee4f66 Added the step to check the issue 4140 (#4145) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 11 January 2022, 15:10:25 UTC
297a9cc Fix order (#4087) * Fix order * Update header * Update changelog * Add Prefetch Co-authored-by: Nikita Manovich <nikita.manovich@intel.com> 11 January 2022, 13:39:26 UTC
59f0b3b Fixed temp_file flush issue for cloud storage in cache.py (#4118) Issue Summary: File downloaded from cloud storage is not flushed. In case of lot of files, for some files, changes don't reflect in the actual physical file. Actual file is later accessed by filename, which leads to read error. Issue Error logs: ``` 2022-01-05 09:54:14,992 DEBG 'runserver' stderr output: [Wed Jan 05 09:54:14.992125 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] [2022-01-05 09:54:14,991] ERROR cvat.server.task_12: cannot get requested data type: chunk, number: 0, quality: Quality.COMPRESSED [Wed Jan 05 09:54:14.992147 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] Traceback (most recent call last): [Wed Jan 05 09:54:14.992152 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/home/django/cvat/apps/engine/cache.py", line 96, in prepare_chunk_buff [Wed Jan 05 09:54:14.992156 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] if checksum and not md5_hash(source_path) == checksum: [Wed Jan 05 09:54:14.992159 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/home/django/cvat/apps/engine/utils.py", line 100, in md5_hash [Wed Jan 05 09:54:14.992163 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] frame = Image.open(frame, 'r') [Wed Jan 05 09:54:14.992166 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/opt/venv/lib/python3.8/site-packages/PIL/Image.py", line 3023, in open [Wed Jan 05 09:54:14.992186 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] raise UnidentifiedImageError( [Wed Jan 05 09:54:14.992189 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] PIL.UnidentifiedImageError: cannot identify image file '/tmp/cvat_041w7vsimages#0089c635-ae5f-49d7-baa5-a4d75f0412ca.png' [Wed Jan 05 09:54:14.992192 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] [Wed Jan 05 09:54:14.992196 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] During handling of the above exception, another exception occurred: [Wed Jan 05 09:54:14.992199 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] 2022-01-05 09:54:14,992 DEBG 'runserver' stderr output: [Wed Jan 05 09:54:14.992202 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] Traceback (most recent call last): [Wed Jan 05 09:54:14.992205 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/home/django/cvat/apps/engine/views.py", line 689, in data [Wed Jan 05 09:54:14.992208 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] buff, mime_type = frame_provider.get_chunk(data_id, data_quality) [Wed Jan 05 09:54:14.992211 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/home/django/cvat/apps/engine/frame_provider.py", line 167, in get_chunk [Wed Jan 05 09:54:14.992215 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] return self._loaders[quality].get_chunk_path(chunk_number, quality, self._db_data) [Wed Jan 05 09:54:14.992218 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/home/django/cvat/apps/engine/cache.py", line 32, in get_buff_mime [Wed Jan 05 09:54:14.992221 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] chunk, tag = self.prepare_chunk_buff(db_data, quality, chunk_number) [Wed Jan 05 09:54:14.992224 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] File "/home/django/cvat/apps/engine/cache.py", line 113, in prepare_chunk_buff [Wed Jan 05 09:54:14.992227 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] raise Exception(msg) [Wed Jan 05 09:54:14.992231 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] Exception: cannot identify image file '/tmp/cvat_041w7vsimages#0089c635-ae5f-49d7-baa5-a4d75f0412ca.png' [Wed Jan 05 09:54:14.992414 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] ERROR - 2022-01-05 09:54:14,991 - views - cannot get requested data type: chunk, number: 0, quality: Quality.COMPRESSED [Wed Jan 05 09:54:14.992425 2022] [wsgi:error] [pid 330:tid 139683931096832] [remote 172.20.0.2:56868] Traceback (most recent call last): ``` 11 January 2022, 12:49:01 UTC
cd1f89e Fixed statistics modal when the job is assigned to someone (#4144) * Fixed statistics modal when the job is assigned to someone * Updated version 11 January 2022, 10:54:59 UTC
8e4dd14 Fix task data upload progress bar (#4134) * fix progressbar * updated changelog, changed progress check 10 January 2022, 20:14:31 UTC
4345048 Remove workarounds for pycocotools issues (#4136) * `--no-binary=pycocotools` isn't necessary since pycocotools 2.0.4. * Installing Cython manually hasn't been needed since pycocotools 2.0.1 (and nothing else needs Cython to be installed). 10 January 2022, 20:05:40 UTC
b5a9a0f Fix misspelling of automatically (#4128) 10 January 2022, 11:28:00 UTC
4e65d77 fix: cvat/requirements/base.txt to reduce vulnerabilities (#4131) The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-PILLOW-2331901 - https://snyk.io/vuln/SNYK-PYTHON-PILLOW-2331905 - https://snyk.io/vuln/SNYK-PYTHON-PILLOW-2331907 10 January 2022, 08:17:02 UTC
a744731 Update git ssh url pattern (#4057) * Add ssh:// url pattern to regex Add support for the ssh:// url pattern, since it is a valid ssh url. Also added the ~ sign to the repo pattern, because ssh and git protocol support ~username expansion Co-authored-by: Pijarowski, Matthias <matthias.pijarowski@hensoldt.net> 05 January 2022, 13:12:54 UTC
f915385 Update documentation (Development Environment section) (#4082) 31 December 2021, 05:08:00 UTC
cbb937b fix: cvat/requirements/base.txt to reduce vulnerabilities (#4103) The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-MISTUNE-2328096 31 December 2021, 05:04:14 UTC
d651cd6 Improved documentation site. Adding a copy button for code blocks (#4024) 30 December 2021, 18:25:33 UTC
8629d0f Added aditional check dropdown menu visibility (#4100) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 30 December 2021, 14:07:20 UTC
f066072 Fixed organizations restore (#4098) 30 December 2021, 09:10:41 UTC
877daa4 Update documentation. Add organization section (#4080) * add organization section * fix linter errors * fix mistake * update roles description and other sections * fix linter error * update task-details.md * fix mistake * update review section * fix linter error * apply suggestions * fix linter error 30 December 2021, 07:08:14 UTC
e17d791 Cypress. Update test case_4. (#4089) * Added removing tasks, users, projects. * Update the case_4, function for deleting a task. * Fix command * Apply comments Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 30 December 2021, 07:03:34 UTC
7d3116e Cypress. Fix/update case 69. (#4078) * Fix case 69. * Fixed/updated the test. Added-reworked the commands. * Fix commands Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 29 December 2021, 18:06:05 UTC
6ae08d5 Rework case 39 (#4081) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 28 December 2021, 10:50:40 UTC
b05bb9a Cypress. Update case 108. Find a better way for check shape rotation. (#4075) * Update case 108 * Added step to check copy/paste * Some refactoring Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 28 December 2021, 08:46:59 UTC
b7a50ac Added information about OpenVINO toolkit to login page (#4077) Co-authored-by: Boris Sekachev <boris.sekachev@yandex.ru> Co-authored-by: Boris Sekachev <boris.sekachev@intel.com> Co-authored-by: Nikita Manovich <nikita.manovich@intel.com> 25 December 2021, 16:14:49 UTC
7bdac66 Fix linters worlflows (#4079) 25 December 2021, 04:49:47 UTC
1cd2ea0 Fixed copy/paste for rotated shapes (#4061) * Fixed copy/paste for rotated shapes * Updated version * Fixed issue with cropping rotated box after paste * Checking constraints not only when create, but also when paste * Do not enable autoborders when paste shape * Fixed test. Getting circles coordinates is not correct way to check coordinates matching because they are in different coordinate spaces * Using dedicated function to get points 24 December 2021, 10:16:41 UTC
69d3ad7 Add documentation/tests for tasks large files uploads (#4036) * added api documentation * added test with 108mb file * fixed linter issues * added upload chunk size param * fixed initialization * udpated doc for uploadChunkSize * reworked setting as global * small fix * moved uploadChunkSize setting setup to hooks * fix comments * change this to globalThis 24 December 2021, 10:06:05 UTC
2ebe717 Bump django from 3.2.8 to 3.2.10 in /cvat/requirements (#4067) Bumps [django](https://github.com/django/django) from 3.2.8 to 3.2.10. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.2.8...3.2.10) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 23 December 2021, 18:09:10 UTC
3cfbe80 Fixing cases 91, 92 (#4076) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 23 December 2021, 10:33:42 UTC
7468df8 Fix the test for check Email verification system (#4071) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 23 December 2021, 08:35:50 UTC
4708b5e IAM: Open Policy Agent integration (#3788) Co-authored-by: Boris Sekachev <boris.sekachev@intel.com> Co-authored-by: Dmitry Kruchinin <dmitryx.kruchinin@intel.com> 23 December 2021, 03:47:30 UTC
5281e79 Support any name for a manifest (#4041) * Initial version * Fix support 2 versions && fix case for cloud storages * Fix eslint errors * tmp * Fix manifest validation when data hasn't been copied yet * fix * Update changelog 22 December 2021, 16:07:02 UTC
f74b6f0 Fix grammarly issues (#4059) * Fix grammarly issues * Update license * Update .github/PULL_REQUEST_TEMPLATE.md Co-authored-by: Boris Sekachev <boris.sekachev@intel.com> 22 December 2021, 09:43:45 UTC
defc78e Updated ELK 6.8.21 -> 6.8.22 (#4052) 21 December 2021, 20:21:22 UTC
6abc8da Upate case 1. Added check label color. (#4045) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 21 December 2021, 09:27:04 UTC
3444ab3 Cypress. Update case 111. Added check ability to setup text labels content. (#4050) * Added check label content. * Added check. Some refactoring. Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 21 December 2021, 08:30:21 UTC
32d9fb0 Project backups (#3852) 20 December 2021, 14:24:15 UTC
85938b3 Update workflows for linters (#4039) 17 December 2021, 14:43:23 UTC
579bfb3 Project import simple implementation (#3790) 17 December 2021, 12:39:45 UTC
cde33ac Fix issue: Original pdf file is deleted (#3967) 16 December 2021, 10:57:31 UTC
73a0c64 Update documentation. Update the settings section (#4034) * update settings.md * fix mistakes 16 December 2021, 10:56:12 UTC
6af3be6 Added ability to setup text labels content (#4029) * Added ability to setup text labels content * Updated changelog * Fixed wrong test * Added minimum font size const 16 December 2021, 10:55:51 UTC
3cf5265 Cypress. Test for "Switch text font size and position". (#4027) * Add className * Update the test. * Some reworks. * Fix typo * Revert changes in the case 36 * Move to a different test. Added check a text position * Rework calculate the shape height * Enabling the test for Firefox Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 15 December 2021, 08:38:18 UTC
5e5555d Updated ELK 6.4.0 -> 6.8.21 (#4028) 14 December 2021, 17:40:32 UTC
6b5cfc1 Fixed font-size in firefox (#4026) * Fixed font-size in firefox * Updated versions 14 December 2021, 12:01:23 UTC
23c80c4 Fixed possible color collisions in the generated colormap (#4007) 13 December 2021, 20:16:37 UTC
cc057a7 Large files uploads (#3692) 10 December 2021, 15:11:05 UTC
e39a17b Update documentation. Added tutorial about attach google cloud storage (#3995) * add google cloud storage tutorial * update attach-cloud-storage.md * apply suggestion * apply suggestion v 2 * update images * fix mistakes * Update site/content/en/docs/manual/basics/attach-cloud-storage.md Co-authored-by: Maria Khrustaleva <maria.khrustaleva@intel.com> * fix linter error Co-authored-by: Maria Khrustaleva <maria.khrustaleva@intel.com> 10 December 2021, 10:30:50 UTC
e375c70 Adding test to check "Smooth image" option (#4015) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 10 December 2021, 10:16:54 UTC
e45d57b Cypress. Dummy cloud storages. (#3988) * Creted dummy cloud storages. * Add dummy per CS. Writing new test. * Disabling for Firefox * Code refactoring. * Some rework * Apply comments * Apply comments * Rename function. Add check tooltip text. Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 10 December 2021, 10:16:24 UTC
8cdd5d6 Updated installation.md with respect to information about CVAT_HOST for local installation (#4014) 10 December 2021, 09:38:44 UTC
68fbcde Added sorting methods (#3937) 09 December 2021, 13:45:01 UTC
2ed9f9c update review section (#4005) 09 December 2021, 13:35:58 UTC
468970c Fixed labels order (#3987) 08 December 2021, 20:05:56 UTC
c61da9f Cypress. Update case 97 for check "Fixed issue: rotation property is not dumped when backup a task" (#4001) * Update the case 97 for check the fix 3932 * Refactoring Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 08 December 2021, 11:59:09 UTC
f313a71 Update case 60 for check PR 3931 (#3993) Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 07 December 2021, 12:49:06 UTC
b1c2689 Support automatic tag annotation (#3896) 07 December 2021, 03:42:55 UTC
4c52438 Update documentation about options to switch font size and position of the text (#3989) * update settings section * fix mistakes * Update site/content/en/docs/manual/basics/settings.md * Update site/content/en/docs/manual/basics/settings.md Co-authored-by: Boris Sekachev <boris.sekachev@intel.com> 06 December 2021, 17:11:18 UTC
ab351c2 Added options to switch text font size and position (#3972) 05 December 2021, 10:15:38 UTC
c79a4c1 Cypress. Update case 105. Add check "Google cloud storage" provider fields. (#3980) * Update case 105. Add "Check "Google cloud storage" provider fields" step * Fix eslint issue Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 03 December 2021, 08:00:31 UTC
6351df0 Cypress. Fix case 108 for Firefox. (#3981) * Fix case 108 for Firefox * Remove unnecessary code * Update step Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 03 December 2021, 06:05:06 UTC
9d21b20 update project section (#3979) 02 December 2021, 12:38:12 UTC
45f9fdc Cypress. Test "Rotated bounding boxes" (#3961) * Added test for "Rotated bounding boxes" * Update he test to use toFixed() * Fix typo * Applying comments. * Some reworks * Change assert Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 02 December 2021, 10:49:41 UTC
1d952ac Issue deleting (#3952) 02 December 2021, 04:07:04 UTC
439c6d5 Remove key_file_path field (#3959) * Remove key_file_path field * fix * Update comparison 01 December 2021, 13:57:31 UTC
5bbdbaf update the doc for change default hostname or port (#3915) * update for change default hostname or port Improve the description for how to change the default hostname, and fix the inaccuracy descrption for port change. * Update site/content/en/docs/faq.md Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com> * Update site/content/en/docs/faq.md Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com> * Fix linter issues * Fix linter issues Co-authored-by: Andrey Zhavoronkov <andrey.zhavoronkov@intel.com> Co-authored-by: Nikita Manovich <nikita.manovich@intel.com> 01 December 2021, 12:30:04 UTC
c820723 CVAT_server. Test for "Project updated time". (#3953) 01 December 2021, 03:31:41 UTC
d861dc9 fix: cvat/requirements/base.txt to reduce vulnerabilities (#3970) The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-PYTHONLDAP-1932572 01 December 2021, 03:23:04 UTC
d237cb6 Fix notification (#3960) 30 November 2021, 07:35:37 UTC
2de4724 Update documentation for China users (#3946) 26 November 2021, 12:50:50 UTC
f59d1f5 Support GCS (#3919) Co-authored-by: Boris Sekachev <boris.sekachev@intel.com> 26 November 2021, 12:41:15 UTC
130b815 Cypress. Update the test for check issue 3810. (#3900) * Add command for unpack zip * Test adaptation * Tests adaptation for tasks * Fix ESLint issue for tests. * Fix ESLint issue for cypress support/plugins * Added tests folder to workspaces. Ignore Eslint isuue * Fix deletingRegisteredUsers * Update test for checking issue 3810 * Applying comments * Removing tests from package.json workspaces. * Adding nmp ci for tests folder Co-authored-by: dvkruchinin <dvkruchinin@gmail.com> 26 November 2021, 09:37:52 UTC
3dac403 Update the documentation about the smooth image option (#3947) * update settings section * update image067.jpg * fix linter errors 26 November 2021, 09:36:57 UTC
b5ed09e Project tasks pagination (#3910) * Added project tasks search and pagination * Increased npm versions * Added CHANGELOG * Fixed issues * Fixed styles * Fixed core tests * Fixed core tests * Fixed core tests * Fixed core tests * Fixed parameter * Fixed project update action * Fixed updating project * Fixed comments 26 November 2021, 09:36:34 UTC
back to top