bitmovin-player-ui 3.105.0 → 3.105.2
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 +12 -0
- package/dist/js/bitmovinplayer-ui.js +32 -24
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/playbacktimelabel.js +10 -9
- package/dist/js/framework/components/seekbarlabel.d.ts +1 -0
- package/dist/js/framework/components/seekbarlabel.js +16 -11
- package/dist/js/framework/components/timelinemarkershandler.js +4 -2
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/src/ts/components/playbacktimelabel.ts +12 -10
- package/src/ts/components/seekbarlabel.ts +17 -11
- package/src/ts/components/timelinemarkershandler.ts +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.2] - 2026-02-25
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Time-related labels not properly updating the time format if the duration changes from below 1 hour to greater than 1 hour.
|
|
11
|
+
|
|
12
|
+
## [3.105.1] - 2026-01-26
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Uncaught JS errors after destroying the player while a live source is loaded
|
|
16
|
+
|
|
7
17
|
## [3.105.0] - 2025-12-16
|
|
8
18
|
|
|
9
19
|
### Added
|
|
@@ -1196,6 +1206,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1196
1206
|
## 1.0.0 (2017-02-03)
|
|
1197
1207
|
- First release
|
|
1198
1208
|
|
|
1209
|
+
[3.105.2]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.105.1...v3.105.2
|
|
1210
|
+
[3.105.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.105.0...v3.105.1
|
|
1199
1211
|
[3.105.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.104.0...v3.105.0
|
|
1200
1212
|
[3.104.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.103.1...v3.104.0
|
|
1201
1213
|
[3.103.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.102.0...v3.103.1
|