bitmovin-player-ui 3.31.0 → 3.32.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 +11 -4
- package/dist/js/bitmovinplayer-ui.js +158 -116
- package/dist/js/bitmovinplayer-ui.min.js +8 -8
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/seekbar.d.ts +2 -0
- package/dist/js/framework/components/seekbar.js +46 -24
- package/dist/js/framework/components/seekbarbufferlevel.d.ts +2 -0
- package/dist/js/framework/components/seekbarbufferlevel.js +18 -0
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/spec/components/seekbar.spec.ts +110 -0
- package/spec/helper/MockHelper.ts +1 -0
- package/spec/helper/PlayerEventEmitter.ts +16 -0
- package/src/ts/components/seekbar.ts +55 -31
- package/src/ts/components/seekbarbufferlevel.ts +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,22 +4,28 @@ 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.32.0] - 2021-12-21 - 2021-12-21
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- The scrubber could jump to an old position during a seek operation when it was dragged.
|
|
11
|
+
- The Seekbar scrubber could jump to an old position on touch devices when the buffer updates during a seek operation.
|
|
12
|
+
|
|
13
|
+
## [3.31.0] - 2021-10-12
|
|
8
14
|
|
|
9
15
|
### Added
|
|
10
16
|
- Style reset for subtitle overlay element to prevent undesired CSS rules collisions.
|
|
11
17
|
|
|
12
|
-
## [3.30.0]
|
|
18
|
+
## [3.30.0] - 2021-09-14
|
|
13
19
|
|
|
14
20
|
### Added
|
|
15
21
|
- Sort `AudioTracks` inside the `AudioTrackSelectBox` and the `AudioTrackListBox` by their identifier.
|
|
16
22
|
|
|
17
|
-
## [3.29.0]
|
|
23
|
+
## [3.29.0] - 2021-08-19
|
|
18
24
|
|
|
19
25
|
### Fixed
|
|
20
26
|
- An empty line being added to subtitle boxes when VTT positioning attributes are present.
|
|
21
27
|
|
|
22
|
-
## [3.28.1]
|
|
28
|
+
## [3.28.1] - 2021-06-25
|
|
23
29
|
|
|
24
30
|
### Fixed
|
|
25
31
|
- Broken build for previous release `3.28.0`
|
|
@@ -754,6 +760,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
754
760
|
## 1.0.0 (2017-02-03)
|
|
755
761
|
- First release
|
|
756
762
|
|
|
763
|
+
[3.32.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.31.0...v3.32.0
|
|
757
764
|
[3.31.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.30.0...v3.31.0
|
|
758
765
|
[3.30.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.29.0...v3.30.0
|
|
759
766
|
[3.29.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.1...v3.29.0
|