Skip to content

Commit 3e3e15e

Browse files
Merge pull request #61 from apivideo/add-custom-domain
Add custom domain settings
2 parents c946a74 + f5a08c7 commit 3e3e15e

File tree

6 files changed

+946
-706
lines changed

6 files changed

+946
-706
lines changed

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"editor.formatOnSaveMode": "file",
3+
"editor.formatOnSave": true,
4+
"editor.codeActionsOnSave": {
5+
"source.organizeImports": "explicit"
6+
},
7+
"[javascript]": {
8+
"editor.defaultFormatter": "esbenp.prettier-vscode"
9+
},
10+
"[typescript]": {
11+
"editor.defaultFormatter": "esbenp.prettier-vscode"
12+
}
13+
}

CHANGELOG.md

Lines changed: 41 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,127 @@
11
# Changelog
2+
23
All changes to this project will be documented in this file.
34

5+
## [1.2.29] - 2024-06-19
6+
7+
- Add custom domain
8+
49
## [1.2.28] - 2023-12-11
10+
511
- Add experimental methods
612

713
## [1.2.27] - 2023-12-08
14+
815
- Add chromecast & airplay events
916

1017
## [1.2.26] - 2023-10-05
18+
1119
- Add isLiveStream()
1220

1321
## [1.2.25] - 2023-06-02
22+
1423
- Add ads support
1524

1625
## [1.2.24] - 2023-03-03
26+
1727
- Add `sequence` option
18-
28+
1929
## [1.2.23] - 2023-02-15
30+
2031
- Add `privateSession` option
2132

2233
## [1.2.22] - 2022-11-04
34+
2335
- Add `getPlaying()` method
2436

2537
## [1.2.21] - 2022-05-23
38+
2639
- Apply `setVideoStyleObjectFit()` and `setVideoStyleTransform()` to poster.
2740

2841
## [1.2.20] - 2022-05-23
42+
2943
- Add `setVideoStyleObjectFit()` and `setVideoStyleTransform()` methods.
30-
44+
3145
## [1.2.19] - 2022-05-19
46+
3247
- When loadConfig() is called, apply the last config settings
33-
48+
3449
## [1.2.18] - 2022-05-12
50+
3551
- Fix showControls & hideControls methods when called before the player is ready.
36-
52+
3753
## [1.2.17] - 2022-04-27
54+
3855
- add exitFullscreen(), requestFullscreen(), exitPictureInPicture() and requestPictureInPicture()
3956

4057
## [1.2.16] - 2022-04-25
58+
4159
- add showPoster() and hidePoster()
4260

4361
## [1.2.15] - 2022-04-20
62+
4463
- Add event callback types
4564
- Delay some methods execution after ready event is received
4665
- Add playbackRate option
4766
- Add hideTitle() and showTitle() methods
4867
- Add setAutoplay() method
4968

5069
## [1.2.14] - 2022-04-11
70+
5171
- Add `chromeless` mode
5272
- Add `hidePoster` option
5373

5474
## [1.2.13] - 2022-04-01
75+
5576
- Add the possibility to show/hide the "more" button
5677

5778
## [1.2.12] - 2021-12-23
79+
5880
- Add the possibility to directly provide a DOM Element at instantiation
59-
81+
6082
## [1.2.11] - 2021-12-15
83+
6184
- Add `controls` parameter in `hideControls()` and `showControls()`
6285

6386
## [1.2.10] - 2021-12-10
87+
6488
- Add `allow="autoplay"` in iframe tag
6589

6690
## [1.2.9] - 2021-10-07
91+
6792
- Add setTheme method
6893

6994
## [1.2.8] - 2021-05-28
95+
7096
- Add showSubtitles() / hideSubtitles() methods
71-
97+
7298
## [1.2.7] - 2021-05-28
99+
73100
- Add "token" in SdkOptions type
74101

75102
## [1.2.6] - 2021-04-21
103+
76104
- Add setPlaybackRate(), showControls(), hideControls() & getPlaybackRate methods
77-
- Add new player events
105+
- Add new player events
78106

79107
## [1.2.5] - 2021-03-16
108+
80109
- Add loadConfig method
81110
- Add "hideTitle" & "token" options
82111

83112
## [1.2.4] - 2021-02-25
113+
84114
- Add "hideControls" and "loop" options
85115

86116
## [1.2.3] - 2021-02-02
117+
87118
- Fix a string/number comparaison
88119

89120
## [1.2.2] - 2021-02-02
121+
90122
- getPaused, getMuted, getDuration, getCurrentTime, getVolume and getLoop now return promises
91123
- Add some unit test
92124

93125
## [1.2.1] - 2021-01-15
94-
- Add the possibility to specify metadata
126+
127+
- Add the possibility to specify metadata

0 commit comments

Comments
 (0)