videomail-client 8.3.4 → 8.3.6
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "videomail-client",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.6",
|
|
4
4
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
5
5
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"prettier:fix": "prettier --write ./src ./test ./prototype/*.html gulpfile.js"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": "^20.
|
|
36
|
-
"npm": "^10.
|
|
35
|
+
"node": "^20.16.0",
|
|
36
|
+
"npm": "^10.8.1"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"webcam",
|
|
@@ -17502,7 +17502,7 @@ function wrappy (fn, cb) {
|
|
|
17502
17502
|
},{}],116:[function(_dereq_,module,exports){
|
|
17503
17503
|
module.exports={
|
|
17504
17504
|
"name": "videomail-client",
|
|
17505
|
-
"version": "8.3.
|
|
17505
|
+
"version": "8.3.6",
|
|
17506
17506
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
17507
17507
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
17508
17508
|
"contributors": [
|
|
@@ -17534,8 +17534,8 @@ module.exports={
|
|
|
17534
17534
|
"prettier:fix": "prettier --write ./src ./test ./prototype/*.html gulpfile.js"
|
|
17535
17535
|
},
|
|
17536
17536
|
"engines": {
|
|
17537
|
-
"node": "^20.
|
|
17538
|
-
"npm": "^10.
|
|
17537
|
+
"node": "^20.16.0",
|
|
17538
|
+
"npm": "^10.8.1"
|
|
17539
17539
|
},
|
|
17540
17540
|
"keywords": [
|
|
17541
17541
|
"webcam",
|
|
@@ -18641,7 +18641,7 @@ var Browser = function Browser(options) {
|
|
|
18641
18641
|
this.getUsefulData = function () {
|
|
18642
18642
|
return {
|
|
18643
18643
|
browser: uaParser.browser,
|
|
18644
|
-
device: uaParser.device,
|
|
18644
|
+
device: uaParser.device.type ? uaParser.device : undefined,
|
|
18645
18645
|
os: uaParser.os,
|
|
18646
18646
|
engine: uaParser.engine,
|
|
18647
18647
|
cpu: uaParser.cpu
|
|
@@ -19583,7 +19583,7 @@ var Buttons = function Buttons(container, options) {
|
|
|
19583
19583
|
radioButtonElement.onchange = options.changeHandler;
|
|
19584
19584
|
}
|
|
19585
19585
|
disable(radioButtonElement);
|
|
19586
|
-
return
|
|
19586
|
+
return radioButtonElement;
|
|
19587
19587
|
}
|
|
19588
19588
|
function makeButton(buttonClass, text, clickHandler, show, id, type, selector) {
|
|
19589
19589
|
var disabled = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : true;
|
|
@@ -19808,11 +19808,13 @@ var Buttons = function Buttons(container, options) {
|
|
|
19808
19808
|
hide(resumeButton);
|
|
19809
19809
|
}
|
|
19810
19810
|
function onEnablingAudio() {
|
|
19811
|
+
debug("Buttons: onEnablingAudio()");
|
|
19811
19812
|
disable(recordButton);
|
|
19812
19813
|
disable(audioOnRadioPair);
|
|
19813
19814
|
disable(audioOffRadioPair);
|
|
19814
19815
|
}
|
|
19815
19816
|
function onDisablingAudio() {
|
|
19817
|
+
debug("Buttons: onDisablingAudio()");
|
|
19816
19818
|
disable(recordButton);
|
|
19817
19819
|
disable(audioOnRadioPair);
|
|
19818
19820
|
disable(audioOffRadioPair);
|