bitmovin-player-ui 3.50.0 → 3.52.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 -6
- package/artifact/artifact.tar.gz +0 -0
- package/dist/js/bitmovinplayer-ui.js +47 -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/subtitleoverlay.js +26 -2
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/spatialnavigation/navigationgroup.js +19 -3
- package/package.json +1 -1
- package/spec/components/subtitleoverlay.spec.ts +18 -2
- package/spec/spatialnavigation/navigationgroup.spec.ts +10 -0
- package/src/ts/components/subtitleoverlay.ts +27 -2
- package/src/ts/spatialnavigation/navigationgroup.ts +18 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,30 +4,40 @@ 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.52.0]
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- When having a spatial navigation and using a mouselike device, components will lose focus when the mouse leaves the hovered component. Spatial navigation will continue at the last active component when using arrow keys again.
|
|
11
|
+
|
|
12
|
+
## [3.51.0] - 2023-09-18
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- On seek/timeshift operations the UI will only remove subtitle cues which do not enclose the seek target instead of removing all.
|
|
16
|
+
|
|
17
|
+
## [3.50.0] - 2023-07-24
|
|
8
18
|
|
|
9
19
|
### Fixed
|
|
10
20
|
- Settings panel does not close on single tap on mobile devices
|
|
11
21
|
- Restoring volume on unmute not working when volume was changed through the player API
|
|
12
22
|
- Gulp `watch` task not working
|
|
13
23
|
|
|
14
|
-
## [3.49.0]
|
|
24
|
+
## [3.49.0] - 2023-07-17
|
|
15
25
|
|
|
16
26
|
### Added
|
|
17
27
|
- `onActiveUiChanged` event on the `UIManager` that is dispatched when the UI manager switches to a different UI variant
|
|
18
28
|
- Readonly `currentUi` field on the `UIManager` that exposes the active `UIInstanceManager`
|
|
19
29
|
|
|
20
|
-
## [3.48.0]
|
|
30
|
+
## [3.48.0] - 2023-07-03
|
|
21
31
|
|
|
22
32
|
### Fixed
|
|
23
33
|
- 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.
|
|
24
34
|
|
|
25
|
-
## [3.47.0]
|
|
35
|
+
## [3.47.0] - 2023-05-17
|
|
26
36
|
|
|
27
37
|
### Changed
|
|
28
38
|
- Updated package dependencies.
|
|
29
39
|
|
|
30
|
-
## [3.46.0]
|
|
40
|
+
## [3.46.0] - 2023-03-22
|
|
31
41
|
|
|
32
42
|
### Added
|
|
33
43
|
- Config option `forceSubtitlesIntoViewContainer` to handle overflowing subtitle labels
|
|
@@ -867,7 +877,9 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
867
877
|
## 1.0.0 (2017-02-03)
|
|
868
878
|
- First release
|
|
869
879
|
|
|
870
|
-
[3.
|
|
880
|
+
[3.51.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.50.0...v3.51.0
|
|
881
|
+
[3.50.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.49.0...v3.50.0
|
|
882
|
+
[3.49.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.48.0...v3.49.0
|
|
871
883
|
[3.48.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.47.0...v3.48.0
|
|
872
884
|
[3.47.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.46.0...v3.47.0
|
|
873
885
|
[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
|