Skip to content
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Fixed a issue on iOS where the player crashed when it was destroyed while in fullscreen.

### Changed

- Moved the `hlsDateRange` property from `SourceConfiguration` to its correct location in `TypedSource`.

## [10.1.0] - 25-10-06

### Added
Expand Down
14 changes: 7 additions & 7 deletions src/api/source/SourceDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,6 @@ export interface SourceConfiguration {
*/
timeServer?: string;

/**
* Whether the player should parse and expose date ranges from HLS playlists.
*
* @defaultValue `false`
*/
hlsDateRange?: boolean;

/**
* Describes the metadata of a source.
*
Expand Down Expand Up @@ -327,6 +320,13 @@ export interface BaseSource {
*/
timeServer?: string;

/**
* Whether the player should parse and expose date ranges from HLS manifests.
*
* @defaultValue `false`
*/
hlsDateRange?: boolean;

/**
* Whether the source should be played in the low-latency-mode of the player.
*
Expand Down
Loading