Skip to content

Commit

Permalink
Merge branch 'release/v4.0.0-rc.2' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Feb 7, 2024
2 parents fd582d1 + c4150bc commit 84828c2
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,21 @@
## v4.0.0-rc.2 (2024-02-07)

### Features

- MULTI_THREAD: `attachWorker` now returns a Promise to indicate when WebWorker attachment failed [#1374]

### Bug fixes

- dash: Don't unnecessarily reload external `<UTCTiming>` resources at each refresh if it failed for the first request of the Manifest [#1370]
- dash: The `DASH_WASM` feature do not rely on WebAssembly's sign-extension operators anymore as that is poorly supported on older Samsung and LG TVs [#1372]
- MULTI_THREAD: properly categorize forced subtitles in multithread scenarios

### Other improvements

- build: automatically install Rust and WASM toolchain locally if unavailable when building the RxPlayer [#1373]
- doc: Update our documentation generator and fix all invalid anchors in it
- npm: prevent the publishing of unnecessary files on the npm registry [#1377, #1378]

## v4.0.0-rc.1 (2024-01-24)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
4.0.0-rc.1
4.0.0-rc.2
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "rx-player",
"author": "Canal+",
"version": "4.0.0-rc.1",
"version": "4.0.0-rc.2",
"description": "Canal+ HTML5 Video Player",
"main": "./dist/commonjs/index.js",
"module": "./dist/es2017/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
@@ -1,7 +1,7 @@
sonar.projectKey=rx-player
sonar.organization=rx-player
sonar.projectName=rx-player
sonar.projectVersion=4.0.0-rc.1
sonar.projectVersion=4.0.0-rc.2
sonar.sources=./src,./demo,./tests
sonar.exclusions=demo/full/bundle.js,demo/standalone/lib.js,demo/bundle.js
sonar.host.url=https://sonarcloud.io
4 changes: 2 additions & 2 deletions src/core/api/public_api.ts
Expand Up @@ -375,7 +375,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
videoElement.preload = "auto";

this.version = /* PLAYER_VERSION */"4.0.0-rc.1";
this.version = /* PLAYER_VERSION */"4.0.0-rc.2";
this.log = log;
this.state = "STOPPED";
this.videoElement = videoElement;
Expand Down Expand Up @@ -3064,7 +3064,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
}
}
}
Player.version = /* PLAYER_VERSION */"4.0.0-rc.1";
Player.version = /* PLAYER_VERSION */"4.0.0-rc.2";

/** Every events sent by the RxPlayer's public API. */
interface IPublicAPIEvent {
Expand Down

0 comments on commit 84828c2

Please sign in to comment.