bitmovin-player-ui 3.104.0 → 3.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/css/bitmovinplayer-ui.css +1 -5
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/js/bitmovinplayer-ui.js +102 -32
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/seekbar.d.ts +5 -0
- package/dist/js/framework/components/seekbar.js +1 -0
- package/dist/js/framework/components/timelinemarkershandler.d.ts +12 -2
- package/dist/js/framework/components/timelinemarkershandler.js +98 -29
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/src/scss/skin-modern/components/_seekbar.scss +0 -1
- package/src/ts/components/seekbar.ts +7 -0
- package/src/ts/components/timelinemarkershandler.ts +128 -34
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [3.105.0] - 2025-12-16
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- `SeekBarConfig.markerUpdateIntervalMs` to customize the update interval of the TimeLine markers in a live stream
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `TimelineMarker`s move unexpectedly during time-shifting in a live stream
|
|
14
|
+
|
|
7
15
|
## [3.104.0] - 2025-12-09
|
|
8
16
|
|
|
9
17
|
### Fixed
|
|
@@ -1188,6 +1196,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1188
1196
|
## 1.0.0 (2017-02-03)
|
|
1189
1197
|
- First release
|
|
1190
1198
|
|
|
1199
|
+
[3.105.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.104.0...v3.105.0
|
|
1191
1200
|
[3.104.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.103.1...v3.104.0
|
|
1192
1201
|
[3.103.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.102.0...v3.103.1
|
|
1193
1202
|
[3.102.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.101.0...v3.102.0
|