@mediakind/mkplayer 1.0.12 → 1.0.13

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/doc/index.html CHANGED
@@ -80,6 +80,7 @@
80
80
  <span class="hljs-attr">debug</span>: <span class="hljs-literal">true</span>,
81
81
  <span class="hljs-attr">autoplay</span>: <span class="hljs-literal">true</span>,
82
82
  <span class="hljs-attr">muted</span>: <span class="hljs-literal">true</span>,
83
+ <span class="hljs-attr">key</span>: <span class="hljs-string">&#x27;YOUR-KEY&#x27;</span>
83
84
  };
84
85
 
85
86
  <span class="hljs-keyword">var</span> playerContainer = <span class="hljs-built_in">document</span>.getElementById(<span class="hljs-string">&#x27;player&#x27;</span>);
package/index.html CHANGED
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang='en'>
3
3
  <head>
4
- <title>MKPlayer 1.0.12</title>
4
+ <title>MKPlayer 1.0.13</title>
5
5
  <meta charset='UTF-8'/>
6
6
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
7
7
  <meta name='viewport' content='width=device-width, initial-scale=1.0'>
package/multi-camera.html CHANGED
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang='en'>
3
3
  <head>
4
- <title>MKPlayer 1.0.12</title>
4
+ <title>MKPlayer 1.0.13</title>
5
5
  <meta charset='UTF-8'/>
6
6
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
7
7
  <meta name='viewport' content='width=device-width, initial-scale=1.0'>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediakind/mkplayer",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "MediaKind Web Player",
5
5
  "repository": {
6
6
  "type": "git",
package/src/MKPlayer.ts CHANGED
@@ -250,7 +250,7 @@ export class MKPlayer {
250
250
  * returns the current player version
251
251
  */
252
252
  version(): string {
253
- return '1.0.12';
253
+ return '1.0.13';
254
254
  }
255
255
 
256
256
  private static selectUrl(source: MKStream): string {