Skip to content

Commit c733013

Browse files
author
Rafael Miranda
committed
Release 2.14.6
1 parent a53e3e5 commit c733013

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v2.14.6](https://github.com/openplayerjs/openplayerjs/compare/v2.14.5...v2.14.6)
8+
9+
- Fix ad request muted state [`#427`](https://github.com/openplayerjs/openplayerjs/pull/427)
10+
- build(deps-dev): bump braces from 3.0.2 to 3.0.3 [`#422`](https://github.com/openplayerjs/openplayerjs/pull/422)
11+
- fix(player): Removed crypto alias to favor Web Crypto API; upgraded package. Fixes #424 [`#424`](https://github.com/openplayerjs/openplayerjs/issues/424)
12+
- chore: Upgraded packages and fixed global interface for network connection [`2f2cf56`](https://github.com/openplayerjs/openplayerjs/commit/2f2cf561b76855bc518c544a1223889dea5c3cff)
13+
- Release 2.14.5 [`d547b94`](https://github.com/openplayerjs/openplayerjs/commit/d547b94a5f6baa871f0a5c8296f455c2507fb7a2)
14+
715
#### [v2.14.5](https://github.com/openplayerjs/openplayerjs/compare/v2.14.4...v2.14.5)
816

17+
> 24 August 2024
18+
919
- fix(player): Removed crypto alias to favor Web Crypto API; upgraded package. Fixes #424 [`#424`](https://github.com/openplayerjs/openplayerjs/issues/424)
1020
- chore: Upgraded packages and fixed global interface for network connection [`f1a8219`](https://github.com/openplayerjs/openplayerjs/commit/f1a8219e9029bc698541e9771c6d9456ffcc22fe)
21+
- Release 2.14.5 [`dffc9ce`](https://github.com/openplayerjs/openplayerjs/commit/dffc9ce4bebe0858d74890fded08b03eb62aa8f5)
1122

1223
#### [v2.14.4](https://github.com/openplayerjs/openplayerjs/compare/v2.14.3...v2.14.4)
1324

dist/esm/media/ads.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ class Ads {
806806
__classPrivateFieldGet(this, _Ads_request, "f").nonLinearAdSlotWidth = width;
807807
__classPrivateFieldGet(this, _Ads_request, "f").nonLinearAdSlotHeight = height / 3;
808808
__classPrivateFieldGet(this, _Ads_request, "f").setAdWillAutoPlay(__classPrivateFieldGet(this, _Ads_autostart, "f"));
809-
__classPrivateFieldGet(this, _Ads_request, "f").setAdWillPlayMuted(__classPrivateFieldGet(this, _Ads_autostartMuted, "f"));
809+
__classPrivateFieldGet(this, _Ads_request, "f").setAdWillPlayMuted(__classPrivateFieldGet(this, _Ads_autostartMuted, "f") || __classPrivateFieldGet(this, _Ads_muted, "f"));
810810
__classPrivateFieldGet(this, _Ads_loader, "f").requestAds(__classPrivateFieldGet(this, _Ads_request, "f"));
811811
}
812812
_contentLoadedAction() {

dist/openplayer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5746,7 +5746,7 @@ var Ads = function () {
57465746
ads_classPrivateFieldGet(this, _Ads_request, "f").nonLinearAdSlotWidth = width;
57475747
ads_classPrivateFieldGet(this, _Ads_request, "f").nonLinearAdSlotHeight = height / 3;
57485748
ads_classPrivateFieldGet(this, _Ads_request, "f").setAdWillAutoPlay(ads_classPrivateFieldGet(this, _Ads_autostart, "f"));
5749-
ads_classPrivateFieldGet(this, _Ads_request, "f").setAdWillPlayMuted(ads_classPrivateFieldGet(this, _Ads_autostartMuted, "f"));
5749+
ads_classPrivateFieldGet(this, _Ads_request, "f").setAdWillPlayMuted(ads_classPrivateFieldGet(this, _Ads_autostartMuted, "f") || ads_classPrivateFieldGet(this, _Ads_muted, "f"));
57505750
ads_classPrivateFieldGet(this, _Ads_loader, "f").requestAds(ads_classPrivateFieldGet(this, _Ads_request, "f"));
57515751
}
57525752
}, {

dist/openplayer.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/openplayer.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openplayerjs",
3-
"version": "2.14.5",
3+
"version": "2.14.6",
44
"homepage": "https://www.openplayerjs.com/",
55
"author": {
66
"name": "Rafael Miranda",

0 commit comments

Comments
 (0)