bitmovin-player-ui 3.83.0 → 3.85.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 +8 -0
- package/artifact/artifact.tar.gz +0 -0
- package/dist/css/bitmovinplayer-ui.css +121 -10
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/index.html +23 -23
- package/dist/js/bitmovinplayer-ui.js +301 -113
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/listselector.d.ts +1 -1
- package/dist/js/framework/components/subtitlesettings/characteredgecolorselectbox.d.ts +12 -0
- package/dist/js/framework/components/subtitlesettings/characteredgecolorselectbox.js +70 -0
- package/dist/js/framework/components/subtitlesettings/characteredgeselectbox.js +20 -6
- package/dist/js/framework/components/subtitlesettings/fontstyleselectbox.d.ts +12 -0
- package/dist/js/framework/components/subtitlesettings/fontstyleselectbox.js +64 -0
- package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.d.ts +1 -1
- package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.d.ts +2 -0
- package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.js +16 -0
- package/dist/js/framework/components/subtitlesettings/subtitlesettingspanelpage.js +8 -0
- package/dist/js/framework/localization/languages/de.json +4 -0
- package/dist/js/framework/localization/languages/en.json +4 -0
- package/dist/js/framework/localization/languages/es.json +4 -0
- package/dist/js/framework/main.js +1 -1
- package/dist/simple.html +5 -5
- package/package.json +1 -1
- package/src/html/index.html +23 -23
- package/src/html/simple.html +5 -5
- package/src/scss/skin-modern/_mixins.scss +15 -0
- package/src/scss/skin-modern/components/subtitlesettings/_subtitleoverlay-settings.scss +24 -9
- package/src/ts/components/listselector.ts +1 -1
- package/src/ts/components/subtitlesettings/characteredgecolorselectbox.ts +57 -0
- package/src/ts/components/subtitlesettings/characteredgeselectbox.ts +21 -7
- package/src/ts/components/subtitlesettings/fontstyleselectbox.ts +50 -0
- package/src/ts/components/subtitlesettings/subtitlesettingselectbox.ts +1 -1
- package/src/ts/components/subtitlesettings/subtitlesettingsmanager.ts +12 -0
- package/src/ts/components/subtitlesettings/subtitlesettingspanelpage.ts +8 -0
- package/src/ts/localization/languages/de.json +4 -0
- package/src/ts/localization/languages/en.json +4 -0
- package/src/ts/localization/languages/es.json +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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
|
+
|
|
7
13
|
## [3.83.0] - 2025-01-14
|
|
8
14
|
|
|
9
15
|
## Fixed
|
|
@@ -1062,6 +1068,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1062
1068
|
## 1.0.0 (2017-02-03)
|
|
1063
1069
|
- First release
|
|
1064
1070
|
|
|
1071
|
+
[3.85.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.84.0...v3.85.0
|
|
1072
|
+
[3.84.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.83.0...v3.84.0
|
|
1065
1073
|
[3.83.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.82.0...v3.83.0
|
|
1066
1074
|
[3.82.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.81.0...v3.82.0
|
|
1067
1075
|
[3.81.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.80.0...v3.81.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|