Skip to content

Commit

Permalink
Merge branch 'release/v4.0.0-beta.3' into next-v4
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Oct 19, 2023
2 parents ca307ac + 22ffe8b commit c9dd85f
Show file tree
Hide file tree
Showing 7 changed files with 180 additions and 103 deletions.
265 changes: 171 additions & 94 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.32.1
4.0.0-beta.3
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rx-player",
"author": "Canal+",
"version": "3.32.1",
"version": "4.0.0-beta.3",
"description": "Canal+ HTML5 Video Player",
"main": "./dist/_esm5.processed/index.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectKey=rx-player
sonar.organization=rx-player
sonar.projectName=rx-player
sonar.projectVersion=3.32.1
sonar.projectVersion=4.0.0-beta.3
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
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
videoElement.preload = "auto";

this.version = /* PLAYER_VERSION */"3.32.1";
this.version = /* PLAYER_VERSION */"4.0.0-beta.3";
this.log = log;
this.state = "STOPPED";
this.videoElement = videoElement;
Expand Down Expand Up @@ -2772,7 +2772,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
}
}
}
Player.version = /* PLAYER_VERSION */"3.32.1";
Player.version = /* PLAYER_VERSION */"4.0.0-beta.3";

/** Every events sent by the RxPlayer's public API. */
interface IPublicAPIEvent {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"outDir": "./dist/_esm5.raw",
"declaration": true,
"target": "es5",
"target": "es2017",
"lib": ["es2017", "dom"],
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -15,7 +15,7 @@
"noUnusedLocals": true,
"types": ["jest"],
"moduleResolution": "node",
"module": "es2015",
"module": "commonjs",
"typeRoots": [
"./scripts/build/constants.d.ts",
"./src/typings/next-tick.d.ts",
Expand Down

0 comments on commit c9dd85f

Please sign in to comment.