videomail-client 6.0.7 → 6.0.8
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/TODO.md
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
| src/js/wrappers/container.js | 293 | figure out how to fire dom's onload event again
|
|
9
9
|
| src/js/wrappers/container.js | 294 | or how to run all the scripts over again
|
|
10
10
|
| src/js/wrappers/optionsWrapper.js | 27 | fix this, it's not really an option
|
|
11
|
-
| src/js/wrappers/visuals/recorder.js |
|
|
12
|
-
| src/js/wrappers/visuals/recorder.js |
|
|
13
|
-
| src/js/wrappers/visuals/recorder.js |
|
|
14
|
-
| src/js/wrappers/visuals/recorder.js |
|
|
11
|
+
| src/js/wrappers/visuals/recorder.js | 582 | in https://github.com/binarykitchen/videomail-client/issues/142
|
|
12
|
+
| src/js/wrappers/visuals/recorder.js | 619 | retry with navigator.getUserMedia_() maybe?
|
|
13
|
+
| src/js/wrappers/visuals/recorder.js | 759 | commented out because for some reasons server does
|
|
14
|
+
| src/js/wrappers/visuals/recorder.js | 764 | consider removing this later or have it for debug=1 only?
|
|
15
15
|
| src/js/wrappers/visuals/userMedia.js | 309 | consider removing that if it's not the case anymore (for better performance)
|
|
16
16
|
| gulpfile.js | 1 | write this in ES6 once i have figured out how to
|
|
17
17
|
| gulpfile.js | 58 | fix this, so that it also works when not minified, this
|
package/package.json
CHANGED
|
@@ -26459,7 +26459,7 @@ function wrappy (fn, cb) {
|
|
|
26459
26459
|
},{}],358:[function(_dereq_,module,exports){
|
|
26460
26460
|
module.exports={
|
|
26461
26461
|
"name": "videomail-client",
|
|
26462
|
-
"version": "6.0.
|
|
26462
|
+
"version": "6.0.8",
|
|
26463
26463
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
26464
26464
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
26465
26465
|
"contributors": [
|
|
@@ -31283,11 +31283,11 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
31283
31283
|
}
|
|
31284
31284
|
if (stream) {
|
|
31285
31285
|
// // useful for debugging streams
|
|
31286
|
-
|
|
31286
|
+
|
|
31287
31287
|
// if (!stream.originalEmit) {
|
|
31288
31288
|
// stream.originalEmit = stream.emit
|
|
31289
31289
|
// }
|
|
31290
|
-
|
|
31290
|
+
|
|
31291
31291
|
// stream.emit = function (type) {
|
|
31292
31292
|
// if (stream) {
|
|
31293
31293
|
// debug(PIPE_SYMBOL + 'Debugging stream event:', type)
|
|
@@ -31333,13 +31333,10 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
31333
31333
|
}
|
|
31334
31334
|
});
|
|
31335
31335
|
stream.on('error', function (err) {
|
|
31336
|
-
debug(PIPE_SYMBOL + 'Stream *error* event emitted');
|
|
31337
|
-
debug(err);
|
|
31336
|
+
debug(PIPE_SYMBOL + 'Stream *error* event emitted', err);
|
|
31338
31337
|
connecting = connected = false;
|
|
31339
31338
|
var videomailError;
|
|
31340
31339
|
if (browser.isIOS()) {
|
|
31341
|
-
_videomailError["default"].create(err);
|
|
31342
|
-
|
|
31343
31340
|
// setting custom text since that err object isn't really an error
|
|
31344
31341
|
// on iphones when locked, and unlocked, this err is actually
|
|
31345
31342
|
// an event object with stuff we can't use at all (an external bug)
|