bitmovin-player-ui 3.49.0 → 3.51.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 +18 -5
- package/artifact/artifact.tar.gz +0 -0
- package/dist/js/bitmovinplayer-ui.js +46 -7
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/controlbar.js +16 -2
- package/dist/js/framework/components/subtitleoverlay.js +26 -2
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/volumecontroller.js +1 -0
- package/gulpfile.js +5 -12
- package/package.json +1 -1
- package/spec/components/subtitleoverlay.spec.ts +18 -2
- package/spec/helper/MockHelper.ts +1 -0
- package/spec/volumecontroller.spec.ts +29 -0
- package/src/ts/components/controlbar.ts +19 -2
- package/src/ts/components/subtitleoverlay.ts +27 -2
- package/src/ts/volumecontroller.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,23 +4,35 @@ 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.
|
|
7
|
+
## [3.51.0]
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- On seek/timeshift operations the UI will only remove subtitle cues which do not enclose the seek target instead of removing all.
|
|
11
|
+
|
|
12
|
+
## [3.50.0] - 2023-07-24
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Settings panel does not close on single tap on mobile devices
|
|
16
|
+
- Restoring volume on unmute not working when volume was changed through the player API
|
|
17
|
+
- Gulp `watch` task not working
|
|
18
|
+
|
|
19
|
+
## [3.49.0] - 2023-07-17
|
|
8
20
|
|
|
9
21
|
### Added
|
|
10
22
|
- `onActiveUiChanged` event on the `UIManager` that is dispatched when the UI manager switches to a different UI variant
|
|
11
23
|
- Readonly `currentUi` field on the `UIManager` that exposes the active `UIInstanceManager`
|
|
12
24
|
|
|
13
|
-
## [3.48.0]
|
|
25
|
+
## [3.48.0] - 2023-07-03
|
|
14
26
|
|
|
15
27
|
### Fixed
|
|
16
28
|
- When more than one UI with spatial navigation is managed by the UI manager, all UIs would handle key events, instead of only the active one.
|
|
17
29
|
|
|
18
|
-
## [3.47.0]
|
|
30
|
+
## [3.47.0] - 2023-05-17
|
|
19
31
|
|
|
20
32
|
### Changed
|
|
21
33
|
- Updated package dependencies.
|
|
22
34
|
|
|
23
|
-
## [3.46.0]
|
|
35
|
+
## [3.46.0] - 2023-03-22
|
|
24
36
|
|
|
25
37
|
### Added
|
|
26
38
|
- Config option `forceSubtitlesIntoViewContainer` to handle overflowing subtitle labels
|
|
@@ -860,7 +872,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
860
872
|
## 1.0.0 (2017-02-03)
|
|
861
873
|
- First release
|
|
862
874
|
|
|
863
|
-
[3.
|
|
875
|
+
[3.50.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.49.0...v3.50.0
|
|
876
|
+
[3.49.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.48.0...v3.49.0
|
|
864
877
|
[3.48.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.47.0...v3.48.0
|
|
865
878
|
[3.47.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.46.0...v3.47.0
|
|
866
879
|
[3.46.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.45.0...v3.46.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|