bitmovin-player-ui 3.105.1 → 3.105.3
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 -26
- 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/settingspanel.js +4 -4
- 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/settingspanel.ts +1 -1
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.3] - 2026-03-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Prevent runtime errors in `SettingsPanel` when `hideDelay` is set to `-1` (e.g. in `modernSmallScreenUI`) by only tracking component `ViewMode` changes when a hide timeout is configured.
|
|
11
|
+
|
|
12
|
+
## [3.105.2] - 2026-02-25
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Time-related labels not properly updating the time format if the duration changes from below 1 hour to greater than 1 hour.
|
|
16
|
+
|
|
7
17
|
## [3.105.1] - 2026-01-26
|
|
8
18
|
|
|
9
19
|
### Fixed
|
|
@@ -1201,6 +1211,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1201
1211
|
## 1.0.0 (2017-02-03)
|
|
1202
1212
|
- First release
|
|
1203
1213
|
|
|
1214
|
+
[3.105.3]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.105.2...v3.105.3
|
|
1215
|
+
[3.105.2]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.105.1...v3.105.2
|
|
1204
1216
|
[3.105.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.105.0...v3.105.1
|
|
1205
1217
|
[3.105.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.104.0...v3.105.0
|
|
1206
1218
|
[3.104.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.103.1...v3.104.0
|