bitmovin-player-ui
Advanced tools
Comparing version 3.52.0 to 3.52.1
@@ -7,5 +7,10 @@ # Change Log | ||
## [3.52.0] | ||
## [3.52.1] - 2023-11-13 | ||
### Fixed | ||
- Crash when receiving a `SourceLoaded` event during scrubbing | ||
## [3.52.0] - 2023-09-25 | ||
### Fixed | ||
- 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. | ||
@@ -881,2 +886,4 @@ | ||
[3.52.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.52.0...v3.52.1 | ||
[3.52.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.51.0...v3.52.0 | ||
[3.51.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.50.0...v3.51.0 | ||
@@ -883,0 +890,0 @@ [3.50.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.49.0...v3.50.0 |
@@ -192,3 +192,3 @@ "use strict"; | ||
// but we should not move the playback position to not create a jumping behaviour. | ||
if (scrubbing && event.type === player.exports.PlayerEvent.SegmentRequestFinished && playbackPositionPercentage !== _this.playbackPositionPercentage) { | ||
if (scrubbing && event && event.type === player.exports.PlayerEvent.SegmentRequestFinished && playbackPositionPercentage !== _this.playbackPositionPercentage) { | ||
playbackPositionPercentage = _this.playbackPositionPercentage; | ||
@@ -195,0 +195,0 @@ } |
@@ -5,3 +5,3 @@ "use strict"; | ||
exports.ReplayButton = exports.SettingsPanelItem = exports.SubtitleSettingsPanelPage = exports.SettingsPanelPageOpenButton = exports.SettingsPanelPageBackButton = exports.SettingsPanelPage = exports.AudioTrackListBox = exports.SubtitleListBox = exports.ListBox = exports.SubtitleSettingsResetButton = exports.WindowOpacitySelectBox = exports.WindowColorSelectBox = exports.SubtitleSettingsLabel = exports.SubtitleSettingSelectBox = exports.FontSizeSelectBox = exports.FontOpacitySelectBox = exports.FontFamilySelectBox = exports.FontColorSelectBox = exports.CharacterEdgeSelectBox = exports.BackgroundOpacitySelectBox = exports.BackgroundColorSelectBox = exports.Spacer = exports.PictureInPictureToggleButton = exports.VolumeSlider = exports.AirPlayToggleButton = exports.MetadataLabelContent = exports.MetadataLabel = exports.CloseButton = exports.PlaybackToggleOverlay = exports.CastUIContainer = exports.BufferingOverlay = exports.HugeReplayButton = exports.PlaybackSpeedSelectBox = exports.AdClickOverlay = exports.AdMessageLabel = exports.AdSkipButton = exports.ClickOverlay = void 0; | ||
exports.version = '3.52.0'; | ||
exports.version = '3.52.1'; | ||
// Management | ||
@@ -8,0 +8,0 @@ var uimanager_1 = require("./uimanager"); |
{ | ||
"name": "bitmovin-player-ui", | ||
"version": "3.52.0", | ||
"version": "3.52.1", | ||
"description": "Bitmovin Player UI Framework", | ||
@@ -5,0 +5,0 @@ "main": "./dist/js/framework/main.js", |
@@ -257,3 +257,3 @@ import { ExtendedPlayerAPI, GroupPlaybackSuspension, GroupPlaybackSuspensionReason } from './../groupplaybackapi'; | ||
// but we should not move the playback position to not create a jumping behaviour. | ||
if (scrubbing && event.type === player.exports.PlayerEvent.SegmentRequestFinished && playbackPositionPercentage !== this.playbackPositionPercentage) { | ||
if (scrubbing && event && event.type === player.exports.PlayerEvent.SegmentRequestFinished && playbackPositionPercentage !== this.playbackPositionPercentage) { | ||
playbackPositionPercentage = this.playbackPositionPercentage; | ||
@@ -260,0 +260,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5847319