Skip to content

Commit

Permalink
5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
muaz-khan committed May 16, 2020
1 parent 7fe370f commit 56af2e4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -74,8 +74,8 @@ navigator.mediaDevices.getUserMedia({
<!-- recommended -->
<script src="https://www.WebRTC-Experiment.com/RecordRTC.js"></script>

<!-- use 5.5.9 or any other version on cdnjs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/RecordRTC/5.5.9/RecordRTC.js"></script>
<!-- use 5.6.0 or any other version on cdnjs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/RecordRTC/5.6.0/RecordRTC.js"></script>

<!-- NPM i.e. "npm install recordrtc" -->
<script src="node_modules/recordrtc/RecordRTC.js"></script>
Expand Down
10 changes: 5 additions & 5 deletions RecordRTC.js
@@ -1,9 +1,9 @@
'use strict';

// Last time updated: 2020-04-24 4:39:01 PM UTC
// Last time updated: 2020-05-16 3:19:43 PM UTC

// ________________
// RecordRTC v5.5.9
// RecordRTC v5.6.0

// Open-Sourced: https://github.com/muaz-khan/RecordRTC

Expand Down Expand Up @@ -781,7 +781,7 @@ function RecordRTC(mediaStream, config) {
* @example
* alert(recorder.version);
*/
version: '5.5.9'
version: '5.6.0'
};

if (!this) {
Expand All @@ -799,7 +799,7 @@ function RecordRTC(mediaStream, config) {
return returnObject;
}

RecordRTC.version = '5.5.9';
RecordRTC.version = '5.6.0';

if (typeof module !== 'undefined' /* && !!module.exports*/ ) {
module.exports = RecordRTC;
Expand Down Expand Up @@ -5924,7 +5924,7 @@ function RecordRTCPromisesHandler(mediaStream, options) {
* @example
* alert(recorder.version);
*/
this.version = '5.5.9';
this.version = '5.6.0';
}

if (typeof RecordRTC !== 'undefined') {
Expand Down
8 changes: 4 additions & 4 deletions RecordRTC.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "recordrtc",
"version": "5.5.9",
"version": "5.6.0",
"authors": [
{
"name": "Muaz Khan",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "recordrtc",
"preferGlobal": false,
"version": "5.5.9",
"version": "5.6.0",
"author": {
"name": "Muaz Khan",
"email": "muazkh@gmail.com",
Expand Down

0 comments on commit 56af2e4

Please sign in to comment.