Skip to content

release 0.1.2 #17

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

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
43 changes: 25 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,43 @@
# Changelog

## [0.1.2]() (2025-01-22)

### Added

- Support for Scene Index

## [0.1.1]() (2024-04-02)

### Added

- Support for Multiple Collections
- Create New Collection : `Connection.createCollection()`
- Get all Collections : `Connection.getCollections()`
- Get a Collection : `Connection.getCollection()`
- Get a Collection : `Connection.getCollection()`
- Update a Collection : `Connection.updateCollection()`


## [0.1.0]() (2024-03-21)

### Added

- Scene Search
- Index Videos on Scene using `Video.indexScenes()`
- Get Scenes Data using `Video.getScenes()`
- Search in Video using `Video.search()` on basis of scenes (pass `searchType` = `"scene"`)
> Note: Collection Scene Search is not available
> Note: Collection Scene Search is not available

### Changed

- Deprecate `TextStyle` with `TextStyleProps`
- Instead of a accepting Instance of `TextStyle` class, `TextAsset` now accepts an object of type `Partial<TextStyleProps>`
- Deprecate `SubtitleStyle` with `SubtitleStyleProps`
- Instead of a accepting Instance of `SubtitleStyle` class, `Video.addSubtitle` now accepts an object of type `Partial<SubtitleStyleProps>`
- Deprecate `indexType` param in `Video.indexSpokenWords()`



## [0.0.4]() (2024-03-07)

### Added

- `Image` class
- Upload image using `Collection.upload()`
- Get an image using `Collection.getImage()`
Expand All @@ -40,47 +47,47 @@
- Create a `ImageAsset` using `ImageAsset()` class
- Overlay `ImageAsset` in timeline using `Timeline.addOverlay()`
- `TextAsset` & `TextStyle` class
- Create a `TextAsset` using `TextAsset()` class
- Create a `TextAsset` using `TextAsset()` class
- Configure styling of `TextAsset` using `TextStyle()`
- `SubtitleStyle`
- Configure subtitle styling by passing a `SubtitleStyle` in `Video.addSubtitle()`
- Keyword Search
Search using Keyword in Video using `Video.search()` (pass searchType = "keyword")
> Note: Collection Keyword Search is not available
> Note: Collection Keyword Search is not available

### Changed
- `Video.index()` -> `Video.indexSpokenWords()`
- param `type` -> `searchType` in `Video.search()`
- param `type` -> `searchType` in `Collection.search()`

### Fixed
- Pass undefined params as `null` to VideoDB Server API

- `Video.index()` -> `Video.indexSpokenWords()`
- param `type` -> `searchType` in `Video.search()`
- param `type` -> `searchType` in `Collection.search()`

### Fixed

- Pass undefined params as `null` to VideoDB Server API

## [0.0.3]() (2024-02-13)

### Added

- Concept of Audio Files 🔈
- Concept of MediaAsset : VideoAsset, AudioAsset 💼
- Concept of Timeline for editing workflows ✂️
- Export `VideodbError`
- Export `VideodbError`
- Minor updates in readme & package.json

### Changed
### Changed

- Http client timeout 30s -> 60s

### Fixed

- Better Error handling
- Param validation in
- Param validation in
- `Coll.getVideo()`
- `Coll.getAudio()`
- `Coll.getVideo()`
- `Coll.deleteAudio()`



## [0.0.2]() (2024-01-24)

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "videodb",
"version": "0.1.1",
"version": "0.1.2",
"description": "A NodeJS wrapper for VideoDB's API written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading