bitmovin-player-ui 3.35.0 → 3.38.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 +20 -0
- package/README.md +1 -1
- package/dist/css/bitmovinplayer-ui.css +2 -1
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/js/bitmovinplayer-ui.js +89 -38
- package/dist/js/bitmovinplayer-ui.min.js +7 -7
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/playbacktimelabel.js +8 -5
- package/dist/js/framework/components/seekbar.d.ts +5 -0
- package/dist/js/framework/components/seekbar.js +15 -6
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/uiconfig.d.ts +5 -0
- package/dist/js/framework/uimanager.js +1 -1
- package/dist/js/framework/vttutils.js +63 -24
- package/package.json +1 -1
- package/spec/components/playbacktimelabel.spec.ts +33 -1
- package/spec/helper/PlayerEventEmitter.ts +7 -0
- package/spec/vttutils.spec.ts +28 -27
- package/src/scss/skin-modern/components/_subtitleoverlay.scss +1 -0
- package/src/ts/components/playbacktimelabel.ts +12 -7
- package/src/ts/components/seekbar.ts +24 -6
- package/src/ts/uiconfig.ts +5 -0
- package/src/ts/uimanager.ts +1 -0
- package/src/ts/vttutils.ts +91 -20
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ 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.38.0] - 2022-08-30
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Duration format not getting updated from `mm:ss` to `hh:mm:ss`
|
|
11
|
+
|
|
12
|
+
## [3.37.0] - 2022-04-12
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Incorrect line alignment for subtitle cues from WebVTT tracks.
|
|
16
|
+
- Incorrect edges of reference for vertical writing cues in block positioning from WebVTT tracks.
|
|
17
|
+
- An empty line is added in vertical subtitle cues.
|
|
18
|
+
|
|
19
|
+
## [3.36.0] - 2022-03-15
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- Seek preview is now configurable via `UIConfig.enableSeekPreview` or `SeekBarConfig.enableSeekPreview`
|
|
23
|
+
|
|
7
24
|
## [3.35.0] - 2022-03-01
|
|
8
25
|
|
|
9
26
|
### Fixed
|
|
@@ -778,6 +795,9 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
778
795
|
## 1.0.0 (2017-02-03)
|
|
779
796
|
- First release
|
|
780
797
|
|
|
798
|
+
[3.38.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.37.0...v3.38.0
|
|
799
|
+
[3.37.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.36.0...v3.37.0
|
|
800
|
+
[3.36.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.35.0...v3.36.0
|
|
781
801
|
[3.35.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.34.0...v3.35.0
|
|
782
802
|
[3.34.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.33.0...v3.34.0
|
|
783
803
|
[3.33.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.32.0...v3.33.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Bitmovin Player UI [](https://badge.fury.io/js/bitmovin-player-ui) [](https://badge.fury.io/js/bitmovin-player-ui) [](https://app.travis-ci.com/bitmovin/bitmovin-player-ui)
|
|
2
2
|
The Bitmovin Adaptive Streaming Player UI
|
|
3
3
|
|
|
4
4
|
Read more about the usage, along with other important information about the Bitmovin Player at https://bitmovin.com/ and https://bitmovin.com/docs/player.
|