Release notes 1.92
Last updated
Last updated
Now, when hovering over the preview of a video file in the file list, the video thumbnail begins to play at an accelerated speed, allowing you to quickly get an overview of the file's content without needing to open it.
In the editor, when hovering over the progress bar, a tooltip now appears showing the frame number and a thumbnail preview. This makes it easier to navigate and precisely select frames within the video.
The "Thumbnail Image URL" parameter has been removed from the project configuration. There is no longer a need to manually create thumbnails for files stored in external storage, as the platform now automatically generates previews.
In earlier versions, both project creation and project configuration update were handled by the same POST /adm/project API endpoint. This endpoint is now deprecated, and new endpoints were added instead:
POST /v1/projects create a new project (same as the old endpoint).
PUT /v1/projects/<projectId>/configuration updates project configuration.
To keep the API consistent, fetching API has been changed accordingly: GET /adm/project is now deprecated, and new endpoints were added instead:
GET /v1/projects/<projectId> to get the entire project (same as the old endpoint).
GET /v1/projects/<projectId>/configuration to fetch project configuration only.
Deprecated endpoints are still supported in this version, but will be removed in one of the following releases.