bitmovin-player-ui 3.82.0 → 3.84.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/css/bitmovinplayer-ui.css +121 -10
  4. package/dist/css/bitmovinplayer-ui.min.css +1 -1
  5. package/dist/js/bitmovinplayer-ui.js +303 -115
  6. package/dist/js/bitmovinplayer-ui.min.js +1 -1
  7. package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
  8. package/dist/js/framework/components/listselector.d.ts +1 -1
  9. package/dist/js/framework/components/seekbar.js +2 -2
  10. package/dist/js/framework/components/subtitlesettings/characteredgecolorselectbox.d.ts +12 -0
  11. package/dist/js/framework/components/subtitlesettings/characteredgecolorselectbox.js +70 -0
  12. package/dist/js/framework/components/subtitlesettings/characteredgeselectbox.js +20 -6
  13. package/dist/js/framework/components/subtitlesettings/fontstyleselectbox.d.ts +12 -0
  14. package/dist/js/framework/components/subtitlesettings/fontstyleselectbox.js +64 -0
  15. package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.d.ts +1 -1
  16. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.d.ts +2 -0
  17. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.js +16 -0
  18. package/dist/js/framework/components/subtitlesettings/subtitlesettingspanelpage.js +8 -0
  19. package/dist/js/framework/localization/languages/de.json +4 -0
  20. package/dist/js/framework/localization/languages/en.json +4 -0
  21. package/dist/js/framework/localization/languages/es.json +4 -0
  22. package/dist/js/framework/main.js +1 -1
  23. package/package.json +1 -1
  24. package/src/scss/skin-modern/_mixins.scss +15 -0
  25. package/src/scss/skin-modern/components/subtitlesettings/_subtitleoverlay-settings.scss +24 -9
  26. package/src/ts/components/listselector.ts +1 -1
  27. package/src/ts/components/seekbar.ts +2 -2
  28. package/src/ts/components/subtitlesettings/characteredgecolorselectbox.ts +57 -0
  29. package/src/ts/components/subtitlesettings/characteredgeselectbox.ts +21 -7
  30. package/src/ts/components/subtitlesettings/fontstyleselectbox.ts +50 -0
  31. package/src/ts/components/subtitlesettings/subtitlesettingselectbox.ts +1 -1
  32. package/src/ts/components/subtitlesettings/subtitlesettingsmanager.ts +12 -0
  33. package/src/ts/components/subtitlesettings/subtitlesettingspanelpage.ts +8 -0
  34. package/src/ts/localization/languages/de.json +4 -0
  35. package/src/ts/localization/languages/en.json +4 -0
  36. package/src/ts/localization/languages/es.json +4 -0
package/CHANGELOG.md CHANGED
@@ -4,6 +4,17 @@ 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.84.0] - 2025-01-15
8
+
9
+ ### Added
10
+ - Support for changing the font style of subtitles and closed captions
11
+ - Support for changing the edge color of characters of subtitles and closed captions
12
+
13
+ ## [3.83.0] - 2025-01-14
14
+
15
+ ## Fixed
16
+ - Exception when disabling smooth playback position updating by setting `SeekbarConfig.smoothPlaybackPositionUpdateIntervalMs` to `-1`
17
+
7
18
  ## [3.82.0] - 2025-01-13
8
19
 
9
20
  ### Added
@@ -1057,6 +1068,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
1057
1068
  ## 1.0.0 (2017-02-03)
1058
1069
  - First release
1059
1070
 
1071
+ [3.84.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.83.0...v3.84.0
1072
+ [3.83.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.82.0...v3.83.0
1060
1073
  [3.82.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.81.0...v3.82.0
1061
1074
  [3.81.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.80.0...v3.81.0
1062
1075
  [3.80.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.79.0...v3.80.0
Binary file