bitmovin-player-ui 3.86.0 → 3.88.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 +15 -0
- package/artifact/artifact.tar.gz +0 -0
- package/dist/css/bitmovinplayer-ui.css +33 -1
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/js/bitmovinplayer-ui.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/src/scss/skin-modern/components/subtitlesettings/_subtitleoverlay-settings.scss +1 -0
|
@@ -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,6 +4,19 @@ 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.88.0] - 2025-02-25
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Chore: Skip releasing a new version when no changelog entry was added
|
|
11
|
+
- Chore: Fix release workflow
|
|
12
|
+
- Chore: Fix release workflow again
|
|
13
|
+
- Chore: Fix release condition
|
|
14
|
+
|
|
15
|
+
## [3.87.0] - 2025-02-20
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Setting font color in subtitle customization settings not working on Comcast X1 Set-Top Boxes and other older WebKit-based platforms
|
|
19
|
+
|
|
7
20
|
## [3.86.0] - 2025-02-20
|
|
8
21
|
|
|
9
22
|
### Changed
|
|
@@ -1078,6 +1091,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1078
1091
|
## 1.0.0 (2017-02-03)
|
|
1079
1092
|
- First release
|
|
1080
1093
|
|
|
1094
|
+
[3.88.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.87.0...v3.88.0
|
|
1095
|
+
[3.87.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.86.0...v3.87.0
|
|
1081
1096
|
[3.86.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.85.0...v3.86.0
|
|
1082
1097
|
[3.85.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.84.0...v3.85.0
|
|
1083
1098
|
[3.84.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.83.0...v3.84.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|