Skip to content

Commit 08202d0

Browse files
authored
Merge pull request #17 from video-db/release
release 0.1.2
2 parents 8717ccc + 384a225 commit 08202d0

File tree

2 files changed

+26
-19
lines changed

2 files changed

+26
-19
lines changed

CHANGELOG.md

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,43 @@
11
# Changelog
22

3+
## [0.1.2]() (2025-01-22)
4+
5+
### Added
6+
7+
- Support for Scene Index
8+
39
## [0.1.1]() (2024-04-02)
410

511
### Added
12+
613
- Support for Multiple Collections
714
- Create New Collection : `Connection.createCollection()`
815
- Get all Collections : `Connection.getCollections()`
9-
- Get a Collection : `Connection.getCollection()`
16+
- Get a Collection : `Connection.getCollection()`
1017
- Update a Collection : `Connection.updateCollection()`
1118

12-
1319
## [0.1.0]() (2024-03-21)
1420

1521
### Added
22+
1623
- Scene Search
1724
- Index Videos on Scene using `Video.indexScenes()`
1825
- Get Scenes Data using `Video.getScenes()`
1926
- Search in Video using `Video.search()` on basis of scenes (pass `searchType` = `"scene"`)
20-
> Note: Collection Scene Search is not available
27+
> Note: Collection Scene Search is not available
2128
2229
### Changed
30+
2331
- Deprecate `TextStyle` with `TextStyleProps`
2432
- Instead of a accepting Instance of `TextStyle` class, `TextAsset` now accepts an object of type `Partial<TextStyleProps>`
2533
- Deprecate `SubtitleStyle` with `SubtitleStyleProps`
2634
- Instead of a accepting Instance of `SubtitleStyle` class, `Video.addSubtitle` now accepts an object of type `Partial<SubtitleStyleProps>`
2735
- Deprecate `indexType` param in `Video.indexSpokenWords()`
2836

29-
30-
3137
## [0.0.4]() (2024-03-07)
3238

3339
### Added
40+
3441
- `Image` class
3542
- Upload image using `Collection.upload()`
3643
- Get an image using `Collection.getImage()`
@@ -40,47 +47,47 @@
4047
- Create a `ImageAsset` using `ImageAsset()` class
4148
- Overlay `ImageAsset` in timeline using `Timeline.addOverlay()`
4249
- `TextAsset` & `TextStyle` class
43-
- Create a `TextAsset` using `TextAsset()` class
50+
- Create a `TextAsset` using `TextAsset()` class
4451
- Configure styling of `TextAsset` using `TextStyle()`
4552
- `SubtitleStyle`
4653
- Configure subtitle styling by passing a `SubtitleStyle` in `Video.addSubtitle()`
4754
- Keyword Search
4855
Search using Keyword in Video using `Video.search()` (pass searchType = "keyword")
49-
> Note: Collection Keyword Search is not available
56+
> Note: Collection Keyword Search is not available
5057
5158
### Changed
52-
- `Video.index()` -> `Video.indexSpokenWords()`
53-
- param `type` -> `searchType` in `Video.search()`
54-
- param `type` -> `searchType` in `Collection.search()`
55-
56-
### Fixed
57-
- Pass undefined params as `null` to VideoDB Server API
5859

60+
- `Video.index()` -> `Video.indexSpokenWords()`
61+
- param `type` -> `searchType` in `Video.search()`
62+
- param `type` -> `searchType` in `Collection.search()`
5963

64+
### Fixed
6065

66+
- Pass undefined params as `null` to VideoDB Server API
6167

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

6470
### Added
71+
6572
- Concept of Audio Files 🔈
6673
- Concept of MediaAsset : VideoAsset, AudioAsset 💼
6774
- Concept of Timeline for editing workflows ✂️
68-
- Export `VideodbError`
75+
- Export `VideodbError`
6976
- Minor updates in readme & package.json
7077

71-
### Changed
78+
### Changed
79+
7280
- Http client timeout 30s -> 60s
7381

7482
### Fixed
83+
7584
- Better Error handling
76-
- Param validation in
85+
- Param validation in
7786
- `Coll.getVideo()`
7887
- `Coll.getAudio()`
7988
- `Coll.getVideo()`
8089
- `Coll.deleteAudio()`
8190

82-
83-
8491
## [0.0.2]() (2024-01-24)
8592

8693
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "videodb",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A NodeJS wrapper for VideoDB's API written in TypeScript",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)