Skip to content

Commit

Permalink
Fixed #532 Added recordrtc@5.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
muaz-khan committed Jun 18, 2019
1 parent 5b8d164 commit 7621f38
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 29 deletions.
32 changes: 19 additions & 13 deletions RecordRTC.js
@@ -1,9 +1,9 @@
'use strict';

// Last time updated: 2019-06-15 1:10:26 AM UTC
// Last time updated: 2019-06-18 3:20:07 AM UTC

// ________________
// RecordRTC v5.5.6
// RecordRTC v5.5.7

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

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

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

RecordRTC.version = '5.5.6';
RecordRTC.version = '5.5.7';

if (typeof module !== 'undefined' /* && !!module.exports*/ ) {
module.exports = RecordRTC;
Expand Down Expand Up @@ -4823,10 +4823,10 @@ if (typeof RecordRTC !== 'undefined') {
RecordRTC.GifRecorder = GifRecorder;
}

// Last time updated: 2019-06-15 1:07:23 AM UTC
// Last time updated: 2019-06-18 3:19:53 AM UTC

// ________________________
// MultiStreamsMixer v1.2.0
// MultiStreamsMixer v1.2.1

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

Expand All @@ -4840,6 +4840,10 @@ function MultiStreamsMixer(arrayOfMediaStreams, elementClass) {
var browserFakeUserAgent = 'Fake/5.0 (FakeOS) AppleWebKit/123 (KHTML, like Gecko) Fake/12.3.4567.89 Fake/123.45';

(function(that) {
if (typeof RecordRTC !== 'undefined') {
return;
}

if (!that) {
return;
}
Expand Down Expand Up @@ -5375,14 +5379,16 @@ function MultiStreamsMixer(arrayOfMediaStreams, elementClass) {

}

if (typeof module !== 'undefined' /* && !!module.exports*/ ) {
module.exports = MultiStreamsMixer;
}
if (typeof RecordRTC === 'undefined') {
if (typeof module !== 'undefined' /* && !!module.exports*/ ) {
module.exports = MultiStreamsMixer;
}

if (typeof define === 'function' && define.amd) {
define('MultiStreamsMixer', [], function() {
return MultiStreamsMixer;
});
if (typeof define === 'function' && define.amd) {
define('MultiStreamsMixer', [], function() {
return MultiStreamsMixer;
});
}
}

// ______________________
Expand Down
10 changes: 5 additions & 5 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.6",
"version": "5.5.7",
"authors": [
{
"name": "Muaz Khan",
Expand Down
24 changes: 15 additions & 9 deletions dev/MultiStreamsMixer.js
@@ -1,7 +1,7 @@
// Last time updated: 2019-06-15 1:07:23 AM UTC
// Last time updated: 2019-06-18 3:19:53 AM UTC

// ________________________
// MultiStreamsMixer v1.2.0
// MultiStreamsMixer v1.2.1

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

Expand All @@ -15,6 +15,10 @@ function MultiStreamsMixer(arrayOfMediaStreams, elementClass) {
var browserFakeUserAgent = 'Fake/5.0 (FakeOS) AppleWebKit/123 (KHTML, like Gecko) Fake/12.3.4567.89 Fake/123.45';

(function(that) {
if (typeof RecordRTC !== 'undefined') {
return;
}

if (!that) {
return;
}
Expand Down Expand Up @@ -550,12 +554,14 @@ function MultiStreamsMixer(arrayOfMediaStreams, elementClass) {

}

if (typeof module !== 'undefined' /* && !!module.exports*/ ) {
module.exports = MultiStreamsMixer;
}
if (typeof RecordRTC === 'undefined') {
if (typeof module !== 'undefined' /* && !!module.exports*/ ) {
module.exports = MultiStreamsMixer;
}

if (typeof define === 'function' && define.amd) {
define('MultiStreamsMixer', [], function() {
return MultiStreamsMixer;
});
if (typeof define === 'function' && define.amd) {
define('MultiStreamsMixer', [], function() {
return MultiStreamsMixer;
});
}
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "recordrtc",
"preferGlobal": false,
"version": "5.5.6",
"version": "5.5.7",
"author": {
"name": "Muaz Khan",
"email": "muazkh@gmail.com",
Expand Down

0 comments on commit 7621f38

Please sign in to comment.