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.
@@ -8,8 +8,32 @@ on:
8
8
  - develop
9
9
 
10
10
  jobs:
11
- trigger-ui-release:
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
- ## Fixed
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
Binary file