sort by:
Revision Author Date Message Commit Date
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
958206c Update documentation about review mode (#3944) * update review section * update review section 25 November 2021, 08:06:51 UTC
4632128 Preserve the order of the label attributes in the object item details. (#3945) * preserve the order of the label attributes in the object item details * updated changelog, cvat-ui v++ 24 November 2021, 13:13:01 UTC
c6ed6d1 Added smooth image option (#3933) 24 November 2021, 08:30:54 UTC
c787f04 Fixed issue: autoborder points are visible for invisible shapes (#3931) * Fixed issue: autoborder points are visible for invisible shapes * Update version & changelog 24 November 2021, 08:02:31 UTC
1f33f50 Add FiftyOne to partners list (#3943) * Add FiftyOne to partners list * remove screenshot * Fix linter issues Co-authored-by: Nikita Manovich <nikita.manovich@intel.com> 23 November 2021, 20:15:14 UTC
11f14cd Export rotation field when backup a task (#3932) 23 November 2021, 07:34:03 UTC
723b2a8 update docs rotated bbox (#3924) 22 November 2021, 06:53:16 UTC
7bab58e Added rotated bounding boxes (#3832) Co-authored-by: Maxim Zhiltsov <maxim.zhiltsov@intel.com> 18 November 2021, 16:28:03 UTC
14262fa Interaction handler keyboard handlers fix (#3881) * initinal implementaion * additional action, README and version changes * update changelog * remove excess reducer * comment fixes * changelog update * canvas3d destroy call upd 15 November 2021, 16:08:36 UTC
cddc76a Merge branch 'develop' of github.com:openvinotoolkit/cvat into develop 15 November 2021, 07:51:17 UTC
57a5182 Updated CHANGELOG and version. 15 November 2021, 07:50:45 UTC
cf6f997 Fix an image in documentation: tracker_siammask_detrac.gif 15 November 2021, 07:33:57 UTC
aa39723 Merge branch 'release-1.7.0' into develop 15 November 2021, 07:16:57 UTC
4487d52 Allow full configuration of nuclio (#3894) * Allow full configuration of nuclio * Add to changelog 13 November 2021, 18:50:56 UTC
722dc74 Moved wheel check to diff test and skipping it. (#3890) 12 November 2021, 09:12:40 UTC
40604d8 Cogito company as a partner in README.md (#3892) 10 November 2021, 17:45:43 UTC
5002290 Update doc (#3891) 10 November 2021, 11:42:03 UTC
e4aa0ea Add KITTI format (#3757) 09 November 2021, 20:27:44 UTC
cc801b2 Add LFW format (#3770) 09 November 2021, 12:15:39 UTC
4bdaf3c Add Cityscapes format (#3758) 09 November 2021, 11:48:53 UTC
cc1b819 Add Open Images format (#3679) 09 November 2021, 10:55:39 UTC
2bb8643 Updated release date, froze CHANGELOG 09 November 2021, 06:23:15 UTC
1ea23e3 Keramblock develop (#3880) * Fixes for helm chart * added changelog note Co-authored-by: Michael Kirpichev <m.kirpichev@haut.ai> 08 November 2021, 12:03:48 UTC
e774991 Add note about redis server in WSL (#3828) 05 November 2021, 07:34:43 UTC
d7ea098 Disabled some 3d tests for GitHub CI (#3860) 03 November 2021, 14:05:38 UTC
6e49f1b fix (#3859) 03 November 2021, 11:08:47 UTC
2cbe1d5 Add documentation about remove annotation in a frame range (#3854) * update docs * fix mistakes 03 November 2021, 06:59:03 UTC
back to top