Added simple filter queries for collections in the server API. Such
queries should cover simpler cases, while more complex filters should
use the JSON syntax.
- Added simple filters for collection endpoints in API (e.g.
`/tasks?project_id=42&user=myusername`)
- Removed duplicating collection endpoints in API in favor of their full
versions:
- `/projects/{id}/tasks` -> `/tasks?project_id={id}`
- `/tasks/{id}/jobs` -> `/jobs?task_id={id}`
- `/jobs/{id}/issues` -> `/issues?job_id={id}`
- `/issue/{id}/comments` -> `/comments?issue_id={id}`
- Corresponding owning objects now return a link to the collection:
- `/projects/{id}`: `.tasks`
- `/tasks/{id}`: `.jobs`
- `/jobs/{id}`: `.issues`
- `/issue/{id}`: `.comments`
- Fixed errors in the generated server API schema:
- Input and output types in all the basic model methods (`Create`,
`Update`, `Retrieve`, `Delete`)
- Removed invalid separation for the project list operation response
type
- File structure for projects in the dataset cache is updated to store
the new project representation. Old caches will be invalidated.
- Added tests
* typescripted some files
* typescripted cloud storage
* reverted api-implementation, fixed minor errors
* updated changelog
* fixed jest test
* updated file: to link:
Co-authored-by: Boris Sekachev <boris.sekachev@yandex.ru>
* Added tests to create/get a task with skeletons
* Added some dummy data for tests
* Added a couple of tests
* Aborted extra changes
* Added a couple of put tests
* Removed extra lines
* Added test to check object state logic for complex objects
* Updated eslint config file
* Fixed config
* Removed extra space
* Fixed lint-staged config
* Fix different project configs
* Sorted out all eslint configurations
* Return package-lock file created with npm 7 (just in case of compatibility issues), prev was 8
* Changed based image to lts slim
Huge feature (200+ commits from different developers). It completely changes layout of data (please expect very long DB migration process if you have a lot of tasks). The primary idea is to send data as zip chunks (e.g. 36 images in one chunk) or encoded video chunks and decode them on the client side. It helps to solve the problem with latency when you try to view a separate frame in the UI quickly (play mode).
Another important feature of the patch is to provide access to the original images. Thus for annotations the client uses compressed chunks but if you want to export a dataset Datumaro will use original chunks (but video will be decoded with original quality and encoded with maximum/optimal quality in any case).
* Drawn z-order switcher
* Z layer was added to state
* Added ZLayer API method cvat-canvas
* Added sorting by Z
* Displaying points in top
* Removed old code
* Improved sort function
* Drawn a couple of icons
* Send to foreground / send to background
* Updated unit tests
* Added unit tests for filter parser
* Removed extra code
* Updated README.md
* Keyframes navigation
* Synchronized objects on canvas and in side panel
* Fixed minor bug with collapse
* Fixed css property 'pointer-events'
* Drawn appearance block
* Removed extra force reflow
* Finished appearance block, fixed couple bugs
* Improved save() in cvat-core, changed approach to highlight shapes
* Fixed exception in edit function, fixed filling for polylines and points, fixed wrong image navigation, remove and copy
* Added lock
* Some fixes with points
* Minor appearance fixes
* Fixed insert for points
* Fixed unit tests
* Fixed control
* Fixed list size
* Added propagate
* Minor fix with attr saving
* Some div changed to buttons
* Locked some buttons for unimplemented functionalities
* Statistics modal, changing a job status
* Minor fix with shapes counting
* Couple of fixes to improve visibility
* Added fullscreen
* SVG Canvas -> HTML Canvas frame (#1113)
* SVG Frame -> HTML Canvas frame
* Fixed links for analytics and help
* Delete task functionality
* Added navigation for create and open task
* Added icon for help
* Added easy plugin checker
* Header dependes on installed plugins
* Menu depends on installed plugins
* Shared actions menu component, base layout for task page
* Task page based (relations with redux, base layout)
* Added attribute form
* Finished label creator
* Added jobs table
* Added job assignee
* Save updated labels on server
* Added imports plugin, updated webpack
* Editable bug tracker
* Clean task update
* Change assignee