bitmovin-player-ui 3.85.0 → 3.87.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/ci.yml +4 -4
- package/.github/workflows/release.yml +1 -1
- package/CHANGELOG.md +17 -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
package/.github/workflows/ci.yml
CHANGED
|
@@ -16,16 +16,16 @@ jobs:
|
|
|
16
16
|
steps:
|
|
17
17
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
18
18
|
- name: Checkout
|
|
19
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
20
|
|
|
21
21
|
- name: Set up node.js
|
|
22
|
-
uses: actions/setup-node@
|
|
22
|
+
uses: actions/setup-node@v4
|
|
23
23
|
with:
|
|
24
24
|
node-version-file: .nvmrc
|
|
25
25
|
|
|
26
26
|
- name: Cache node modules
|
|
27
27
|
id: cache-nodemodules
|
|
28
|
-
uses: actions/cache@
|
|
28
|
+
uses: actions/cache@v4
|
|
29
29
|
env:
|
|
30
30
|
cache-name: cache-node-modules
|
|
31
31
|
with:
|
|
@@ -46,7 +46,7 @@ jobs:
|
|
|
46
46
|
run: tar -czvf artifact.tar.gz dist
|
|
47
47
|
shell: bash
|
|
48
48
|
|
|
49
|
-
- uses: actions/upload-artifact@
|
|
49
|
+
- uses: actions/upload-artifact@v4
|
|
50
50
|
with:
|
|
51
51
|
path: |
|
|
52
52
|
${{ github.workspace }}/artifact.tar.gz
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ 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.87.0] - 2025-02-20
|
|
8
|
+
|
|
9
|
+
## Fixed
|
|
10
|
+
- Setting font color in subtitle customization settings not working on Comcast X1 Set-Top Boxes and other older WebKit-based platforms
|
|
11
|
+
|
|
12
|
+
## [3.86.0] - 2025-02-20
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Chore: Update github actions to v4
|
|
16
|
+
|
|
17
|
+
## [3.85.0] - 2025-01-16
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Chore: Update assets to use Bitmovin CDN
|
|
21
|
+
|
|
7
22
|
## [3.84.0] - 2025-01-15
|
|
8
23
|
|
|
9
24
|
### Added
|
|
@@ -1068,6 +1083,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
1068
1083
|
## 1.0.0 (2017-02-03)
|
|
1069
1084
|
- First release
|
|
1070
1085
|
|
|
1086
|
+
[3.87.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.86.0...v3.87.0
|
|
1087
|
+
[3.86.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.85.0...v3.86.0
|
|
1071
1088
|
[3.85.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.84.0...v3.85.0
|
|
1072
1089
|
[3.84.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.83.0...v3.84.0
|
|
1073
1090
|
[3.83.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.82.0...v3.83.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|