videomail-client 6.0.2 → 6.0.4

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": "6.0.2",
3
+ "version": "6.0.4",
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": [
@@ -104,7 +104,7 @@
104
104
  "cssnano": "5.1.15",
105
105
  "del": "6.1.1",
106
106
  "eslint": "8.35.0",
107
- "eslint-config-prettier": "8.6.0",
107
+ "eslint-config-prettier": "8.7.0",
108
108
  "eslint-plugin-import": "2.27.5",
109
109
  "eslint-plugin-node": "11.1.0",
110
110
  "eslint-plugin-promise": "6.1.1",
@@ -26453,7 +26453,7 @@ function wrappy (fn, cb) {
26453
26453
  },{}],358:[function(_dereq_,module,exports){
26454
26454
  module.exports={
26455
26455
  "name": "videomail-client",
26456
- "version": "6.0.2",
26456
+ "version": "6.0.4",
26457
26457
  "description": "A wicked npm package to record videos directly in the browser, wohooo!",
26458
26458
  "author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
26459
26459
  "contributors": [
@@ -26557,7 +26557,7 @@ module.exports={
26557
26557
  "cssnano": "5.1.15",
26558
26558
  "del": "6.1.1",
26559
26559
  "eslint": "8.35.0",
26560
- "eslint-config-prettier": "8.6.0",
26560
+ "eslint-config-prettier": "8.7.0",
26561
26561
  "eslint-plugin-import": "2.27.5",
26562
26562
  "eslint-plugin-node": "11.1.0",
26563
26563
  "eslint-plugin-promise": "6.1.1",
@@ -27435,6 +27435,7 @@ var Browser = function Browser(options) {
27435
27435
  var isIOS = uaParser.os.name === 'iOS';
27436
27436
  var browserVersion = parseFloat(uaParser.browser.version);
27437
27437
  var isChrome = uaParser.browser.name === 'Chrome';
27438
+ var isBrave = uaParser.browser.name === 'Brave';
27438
27439
  var isChromium = uaParser.browser.name === 'Chromium';
27439
27440
  var firefox = uaParser.browser.name === 'Firefox';
27440
27441
  var osVersion = parseFloat(uaParser.os.version);
@@ -27453,7 +27454,7 @@ var Browser = function Browser(options) {
27453
27454
  var isBadIOS = isIOS && osVersion < 11;
27454
27455
  // unfortunately need to be able to fake https because tape-run can't run on https
27455
27456
  var isHTTPS = options.fakeHttps || window.location.protocol === 'https:';
27456
- var okBrowser = chromeBased || firefox || isAndroid || isOpera || isEdge || isOkSafari || isOkIOS;
27457
+ var okBrowser = chromeBased || firefox || isAndroid || isOpera || isEdge || isOkSafari || isOkIOS || isBrave;
27457
27458
  var self = this;
27458
27459
  var videoType;
27459
27460
  function getRecommendation() {