Skip to content

Commit

Permalink
Add custom domain settings
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-lando committed Jun 19, 2024
1 parent c946a74 commit f5a08c7
Show file tree
Hide file tree
Showing 6 changed files with 946 additions and 706 deletions.
13 changes: 13 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
49 changes: 41 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,94 +1,127 @@
# Changelog

All changes to this project will be documented in this file.

## [1.2.29] - 2024-06-19

- Add custom domain

## [1.2.28] - 2023-12-11

- Add experimental methods

## [1.2.27] - 2023-12-08

- Add chromecast & airplay events

## [1.2.26] - 2023-10-05

- Add isLiveStream()

## [1.2.25] - 2023-06-02

- Add ads support

## [1.2.24] - 2023-03-03

- Add `sequence` option

## [1.2.23] - 2023-02-15

- Add `privateSession` option

## [1.2.22] - 2022-11-04

- Add `getPlaying()` method

## [1.2.21] - 2022-05-23

- Apply `setVideoStyleObjectFit()` and `setVideoStyleTransform()` to poster.

## [1.2.20] - 2022-05-23

- Add `setVideoStyleObjectFit()` and `setVideoStyleTransform()` methods.

## [1.2.19] - 2022-05-19

- When loadConfig() is called, apply the last config settings

## [1.2.18] - 2022-05-12

- Fix showControls & hideControls methods when called before the player is ready.

## [1.2.17] - 2022-04-27

- add exitFullscreen(), requestFullscreen(), exitPictureInPicture() and requestPictureInPicture()

## [1.2.16] - 2022-04-25

- add showPoster() and hidePoster()

## [1.2.15] - 2022-04-20

- Add event callback types
- Delay some methods execution after ready event is received
- Add playbackRate option
- Add hideTitle() and showTitle() methods
- Add setAutoplay() method

## [1.2.14] - 2022-04-11

- Add `chromeless` mode
- Add `hidePoster` option

## [1.2.13] - 2022-04-01

- Add the possibility to show/hide the "more" button

## [1.2.12] - 2021-12-23

- Add the possibility to directly provide a DOM Element at instantiation

## [1.2.11] - 2021-12-15

- Add `controls` parameter in `hideControls()` and `showControls()`

## [1.2.10] - 2021-12-10

- Add `allow="autoplay"` in iframe tag

## [1.2.9] - 2021-10-07

- Add setTheme method

## [1.2.8] - 2021-05-28

- Add showSubtitles() / hideSubtitles() methods

## [1.2.7] - 2021-05-28

- Add "token" in SdkOptions type

## [1.2.6] - 2021-04-21

- Add setPlaybackRate(), showControls(), hideControls() & getPlaybackRate methods
- Add new player events
- Add new player events

## [1.2.5] - 2021-03-16

- Add loadConfig method
- Add "hideTitle" & "token" options

## [1.2.4] - 2021-02-25

- Add "hideControls" and "loop" options

## [1.2.3] - 2021-02-02

- Fix a string/number comparaison

## [1.2.2] - 2021-02-02

- getPaused, getMuted, getDuration, getCurrentTime, getVolume and getLoop now return promises
- Add some unit test

## [1.2.1] - 2021-01-15
- Add the possibility to specify metadata

- Add the possibility to specify metadata
Loading

0 comments on commit f5a08c7

Please sign in to comment.