bitmovin-player-ui 3.87.0 → 3.89.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/.github/workflows/tag-release-version.yml +25 -1
- package/CHANGELOG.md +16 -1
- package/artifact/artifact.tar.gz +0 -0
- package/dist/css/bitmovinplayer-ui.css +20 -17
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/js/bitmovinplayer-ui.js +139 -45
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/subtitleoverlay.d.ts +12 -3
- package/dist/js/framework/components/subtitleoverlay.js +95 -29
- package/dist/js/framework/components/subtitlesettings/fontsizeselectbox.d.ts +4 -1
- package/dist/js/framework/components/subtitlesettings/fontsizeselectbox.js +32 -14
- package/dist/js/framework/components/subtitlesettings/subtitlesettingspanelpage.js +10 -0
- package/dist/js/framework/main.js +1 -1
- package/gulpfile.js +2 -1
- package/package.json +1 -1
- package/spec/components/subtitleoverlay.spec.ts +35 -0
- package/spec/helper/MockHelper.ts +2 -0
- package/src/scss/skin-modern/components/_subtitleoverlay-cea608.scss +4 -2
- package/src/ts/components/subtitleoverlay.ts +106 -27
- package/src/ts/components/subtitlesettings/fontsizeselectbox.ts +39 -17
- package/src/ts/components/subtitlesettings/subtitlesettingspanelpage.ts +12 -1
|
@@ -8,8 +8,32 @@ on:
|
|
|
8
8
|
- develop
|
|
9
9
|
|
|
10
10
|
jobs:
|
|
11
|
-
|
|
11
|
+
verify-changelog:
|
|
12
12
|
if: github.event.pull_request.merged == true
|
|
13
|
+
outputs:
|
|
14
|
+
HAS_CHANGELOG: ${{ steps.ensure-changelog.outputs.HAS_CHANGELOG }}
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- name: Ensure Changelog
|
|
21
|
+
id: ensure-changelog
|
|
22
|
+
shell: bash
|
|
23
|
+
run: |
|
|
24
|
+
changes=$(gh pr view ${{github.event.pull_request.number}} --json files -q '.files[].path')
|
|
25
|
+
if echo $changes | grep -q CHANGELOG.md; then
|
|
26
|
+
echo "CHANGELOG.md has been updated"
|
|
27
|
+
echo "HAS_CHANGELOG=true" >> $GITHUB_OUTPUT
|
|
28
|
+
else
|
|
29
|
+
echo "CHANGELOG.md has not been updated, skipping release"
|
|
30
|
+
fi
|
|
31
|
+
env:
|
|
32
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
33
|
+
|
|
34
|
+
trigger-ui-release:
|
|
35
|
+
needs: verify-changelog
|
|
36
|
+
if: ${{ needs.verify-changelog.outputs.HAS_CHANGELOG }}
|
|
13
37
|
runs-on: ubuntu-latest
|
|
14
38
|
steps:
|
|
15
39
|
- name: Checkout
|
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,22 @@ 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.89.0] - 2025-03-24
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Changing font size now also takes an effect in CEA-608 captions with cap from 50% to 200%. Larger than default font size also disables the grid view.
|
|
11
|
+
|
|
12
|
+
## [3.88.0] - 2025-02-25
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Chore: Skip releasing a new version when no changelog entry was added
|
|
16
|
+
- Chore: Fix release workflow
|
|
17
|
+
- Chore: Fix release workflow again
|
|
18
|
+
- Chore: Fix release condition
|
|
19
|
+
|
|
7
20
|
## [3.87.0] - 2025-02-20
|
|
8
21
|
|
|
9
|
-
|
|
22
|
+
### Fixed
|
|
10
23
|
- Setting font color in subtitle customization settings not working on Comcast X1 Set-Top Boxes and other older WebKit-based platforms
|
|
11
24
|
|
|
12
25
|
## [3.86.0] - 2025-02-20
|
|
@@ -1083,6 +1096,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1083
1096
|
## 1.0.0 (2017-02-03)
|
|
1084
1097
|
- First release
|
|
1085
1098
|
|
|
1099
|
+
[3.89.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.88.0...v3.89.0
|
|
1100
|
+
[3.88.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.87.0...v3.88.0
|
|
1086
1101
|
[3.87.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.86.0...v3.87.0
|
|
1087
1102
|
[3.86.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.85.0...v3.86.0
|
|
1088
1103
|
[3.85.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.84.0...v3.85.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|