rx-player 3.32.0 → 3.32.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rx-player",
3
3
  "author": "Canal+",
4
- "version": "3.32.0",
4
+ "version": "3.32.1",
5
5
  "description": "Canal+ HTML5 Video Player",
6
6
  "main": "./dist/rx-player.js",
7
7
  "keywords": [
@@ -1,7 +1,7 @@
1
1
  sonar.projectKey=rx-player
2
2
  sonar.organization=rx-player
3
3
  sonar.projectName=rx-player
4
- sonar.projectVersion=3.32.0
4
+ sonar.projectVersion=3.32.1
5
5
  sonar.sources=./src,./demo,./tests
6
6
  sonar.exclusions=demo/full/bundle.js,demo/standalone/lib.js,demo/bundle.js
7
7
  sonar.host.url=https://sonarcloud.io
@@ -379,7 +379,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
379
379
  // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
380
380
  videoElement.preload = "auto";
381
381
 
382
- this.version = /* PLAYER_VERSION */"3.32.0";
382
+ this.version = /* PLAYER_VERSION */"3.32.1";
383
383
  this.log = log;
384
384
  this.state = "STOPPED";
385
385
  this.videoElement = videoElement;
@@ -3103,7 +3103,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
3103
3103
  return mediaElementTrackChoiceManager;
3104
3104
  }
3105
3105
  }
3106
- Player.version = /* PLAYER_VERSION */"3.32.0";
3106
+ Player.version = /* PLAYER_VERSION */"3.32.1";
3107
3107
 
3108
3108
  /** Every events sent by the RxPlayer's public API. */
3109
3109
  interface IPublicAPIEvent {