bitmovin-player-ui 3.103.1 → 3.104.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 +7 -0
- package/dist/js/bitmovinplayer-ui.js +5 -5
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/recommendationoverlay.js +1 -1
- package/dist/js/framework/components/seekbarlabel.js +2 -2
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/mobilev3playerapi.d.ts +2 -1
- package/package.json +2 -2
- package/spec/helper/PlayerEventEmitter.ts +5 -3
- package/src/ts/components/recommendationoverlay.ts +1 -1
- package/src/ts/components/seekbarlabel.ts +2 -2
- package/src/ts/mobilev3playerapi.ts +2 -1
- package/src/ts/uimanager.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.104.0] - 2025-12-09
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Incorrect sytnax of CSS `URL` functions, leading to problems with URLs containing special characters like `(` or `)`
|
|
11
|
+
- Type incompatibility warnings with Player version 8.235.0 and higher
|
|
12
|
+
|
|
7
13
|
## [3.103.1] - 2025-10-07
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
@@ -1182,6 +1188,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1182
1188
|
## 1.0.0 (2017-02-03)
|
|
1183
1189
|
- First release
|
|
1184
1190
|
|
|
1191
|
+
[3.104.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.103.1...v3.104.0
|
|
1185
1192
|
[3.103.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.102.0...v3.103.1
|
|
1186
1193
|
[3.102.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.101.0...v3.102.0
|
|
1187
1194
|
[3.101.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.100.0...v3.101.0
|