Skip to content

Commit

Permalink
update builds and version
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Oct 19, 2023
1 parent 6597a83 commit 3a671da
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.32.0
3.32.1
2 changes: 1 addition & 1 deletion dist/rx-player.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

import RxPlayer from "./_esm5.processed/index";
import RxPlayer from "./_esm5.processed/core/api/index";
export default RxPlayer;
4 changes: 2 additions & 2 deletions dist/rx-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -52658,7 +52658,7 @@ var Player = /*#__PURE__*/function (_EventEmitter) {
// Workaround to support Firefox autoplay on FF 42.
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
videoElement.preload = "auto";
_this.version = /* PLAYER_VERSION */"3.32.0";
_this.version = /* PLAYER_VERSION */"3.32.1";
_this.log = log/* default */.Z;
_this.state = "STOPPED";
_this.videoElement = videoElement;
Expand Down Expand Up @@ -55072,7 +55072,7 @@ var Player = /*#__PURE__*/function (_EventEmitter) {
}]);
return Player;
}(event_emitter/* default */.Z);
Player.version = /* PLAYER_VERSION */"3.32.0";
Player.version = /* PLAYER_VERSION */"3.32.1";
/* harmony default export */ var public_api = (Player);
;// CONCATENATED MODULE: ./src/core/api/index.ts
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/rx-player.min.js

Large diffs are not rendered by default.

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.0",
"version": "3.32.1",
"description": "Canal+ HTML5 Video Player",
"main": "./dist/rx-player.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.0
sonar.projectVersion=3.32.1
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 @@ -379,7 +379,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.0";
this.version = /* PLAYER_VERSION */"3.32.1";
this.log = log;
this.state = "STOPPED";
this.videoElement = videoElement;
Expand Down Expand Up @@ -3103,7 +3103,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
return mediaElementTrackChoiceManager;
}
}
Player.version = /* PLAYER_VERSION */"3.32.0";
Player.version = /* PLAYER_VERSION */"3.32.1";

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

0 comments on commit 3a671da

Please sign in to comment.