videomail-client 8.2.2 → 8.3.1
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 +1 -2
- package/prototype/bad_browser.html +1 -1
- package/prototype/bad_ios.html +1 -1
- package/prototype/contact_form.html +1 -1
- package/prototype/correct_existing_videomail.html +1 -1
- package/prototype/correct_non_existing_videomail.html +1 -1
- package/prototype/direct_submit.html +1 -1
- package/prototype/entertain.html +1 -1
- package/prototype/experimental_audio.html +1 -1
- package/prototype/facing_mode_button.html +1 -1
- package/prototype/form_without_email.html +1 -1
- package/prototype/high_quality.html +3 -3
- package/prototype/invalid_site_name.html +1 -1
- package/prototype/js/videomail-client.js +6 -4
- package/prototype/js/videomail-client.min.js +1 -1
- package/prototype/js/videomail-client.min.js.map +1 -1
- package/prototype/player_only.html +1 -1
- package/prototype/predefined.html +1 -1
- package/prototype/simple.html +1 -1
- package/prototype/simple_jpegs.html +1 -1
- package/prototype/user_media_on_record.html +1 -1
- package/prototype/videomail_optional_form.html +1 -1
- package/prototype/with_cc_and_bcc.html +1 -1
- package/src/js/index.js +4 -3
- package/videomail-client.code-workspace +25 -0
- package/.eslintignore +0 -1
- package/.eslintrc.js +0 -46
- package/.nvmrc +0 -1
- package/.prettierignore +0 -1
- package/.travis.yml +0 -14
- package/audit-ci.json +0 -12
- package/babel.config.js +0 -38
- package/browserstack.png +0 -0
- package/env/dev/cert.pem +0 -26
- package/env/dev/key.pem +0 -28
- package/env/dev/release.sh +0 -96
- package/gulpfile.js +0 -241
- package/prettier.config.js +0 -8
- package/test/core/client.test.js +0 -64
- package/test/core/resource.test.js +0 -12
- package/test/util/audioRecorder.test.js +0 -13
- package/test/util/browser.test.js +0 -157
- package/test/util/collectLogger.test.js +0 -13
- package/test/util/eventEmitter.test.js +0 -13
- package/test/util/humanize.test.js +0 -21
- package/test/util/pretty.test.js +0 -116
- package/test/util/videomailError.test.js +0 -323
- package/test/wrappers/buttons.test.js +0 -15
- package/test/wrappers/container.test.js +0 -18
- package/test/wrappers/form.test.js +0 -13
- package/test/wrappers/notifier.test.js +0 -13
- package/test/wrappers/recorder.test.js +0 -18
- package/test/wrappers/replay.test.js +0 -15
- package/test/wrappers/userMedia.test.js +0 -13
- package/test/wrappers/visuals.test.js +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "videomail-client",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.3.1",
|
|
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": [
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
},
|
|
17
17
|
"license": "CC0-1.0",
|
|
18
18
|
"readmeFilename": "README.md",
|
|
19
|
-
"module": "src/js/index.js",
|
|
20
19
|
"main": "prototype/js/videomail-client.js",
|
|
21
20
|
"scripts": {
|
|
22
21
|
"build": "gulp build",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<div id="videomail"></div>
|
|
10
10
|
<script src="/js/videomail-client.js"></script>
|
|
11
11
|
<script>
|
|
12
|
-
var videomailClient = new VideomailClient({
|
|
12
|
+
var videomailClient = new VideomailClient.default({
|
|
13
13
|
verbose: true,
|
|
14
14
|
adjustFormOnBrowserError: true,
|
|
15
15
|
fakeUaString: "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)",
|
package/prototype/bad_ios.html
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<div id="videomail"></div>
|
|
10
10
|
<script src="/js/videomail-client.js"></script>
|
|
11
11
|
<script>
|
|
12
|
-
var videomailClient = new VideomailClient({
|
|
12
|
+
var videomailClient = new VideomailClient.default({
|
|
13
13
|
verbose: true,
|
|
14
14
|
adjustFormOnBrowserError: true,
|
|
15
15
|
fakeUaString:
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
|
|
66
66
|
<script src="/js/videomail-client.js"></script>
|
|
67
67
|
<script>
|
|
68
|
-
var videomailClient = new VideomailClient({
|
|
68
|
+
var videomailClient = new VideomailClient.default({
|
|
69
69
|
verbose: true,
|
|
70
70
|
submitWithVideomail: true,
|
|
71
71
|
video: { limitSeconds: 120, width: 320, countdown: false },
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
|
|
38
38
|
<script src="/js/videomail-client.js"></script>
|
|
39
39
|
<script>
|
|
40
|
-
var videomailClient = new VideomailClient({
|
|
40
|
+
var videomailClient = new VideomailClient.default({
|
|
41
41
|
verbose: true,
|
|
42
42
|
enablePause: false,
|
|
43
43
|
video: { limitSeconds: 3600, width: 460, countdown: false },
|
package/prototype/entertain.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<div id="videomail"></div>
|
|
13
13
|
<script src="/js/videomail-client.js"></script>
|
|
14
14
|
<script>
|
|
15
|
-
var videomailClient = new VideomailClient({
|
|
15
|
+
var videomailClient = new VideomailClient.default({
|
|
16
16
|
verbose: true,
|
|
17
17
|
enableAutoPause: false,
|
|
18
18
|
disableSubmit: true,
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
performance issues and will use a lower one instead.
|
|
14
14
|
</p>
|
|
15
15
|
<div id="videomail"></div>
|
|
16
|
-
<script src="
|
|
17
|
-
<script>
|
|
18
|
-
var videomailClient = new VideomailClient({
|
|
16
|
+
<script src="./js/videomail-client.js"></script>
|
|
17
|
+
<script type="module">
|
|
18
|
+
var videomailClient = new VideomailClient.default({
|
|
19
19
|
verbose: true,
|
|
20
20
|
enableAutoPause: false,
|
|
21
21
|
disableSubmit: true,
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div id="videomail"></div>
|
|
15
15
|
<script src="/js/videomail-client.js"></script>
|
|
16
16
|
<script>
|
|
17
|
-
var videomailClient = new VideomailClient({
|
|
17
|
+
var videomailClient = new VideomailClient.default({
|
|
18
18
|
// here you should enter your site name.
|
|
19
19
|
// if you do not have one, register it first here:
|
|
20
20
|
// www.videomail.io/whitelist
|
|
@@ -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.
|
|
17505
|
+
"version": "8.3.1",
|
|
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": [
|
|
@@ -17518,7 +17518,6 @@ module.exports={
|
|
|
17518
17518
|
},
|
|
17519
17519
|
"license": "CC0-1.0",
|
|
17520
17520
|
"readmeFilename": "README.md",
|
|
17521
|
-
"module": "src/js/index.js",
|
|
17522
17521
|
"main": "prototype/js/videomail-client.js",
|
|
17523
17522
|
"scripts": {
|
|
17524
17523
|
"build": "gulp build",
|
|
@@ -23947,8 +23946,11 @@ if (!navigator) {
|
|
|
23947
23946
|
// Ensures Videomail functionality is not broken on exotic browsers with shims.
|
|
23948
23947
|
(0, _standardize.default)(window, navigator);
|
|
23949
23948
|
}
|
|
23950
|
-
|
|
23951
|
-
|
|
23949
|
+
|
|
23950
|
+
// Provide both ways
|
|
23951
|
+
|
|
23952
|
+
// export { Client };
|
|
23953
|
+
var _default = exports.default = _client.default;
|
|
23952
23954
|
|
|
23953
23955
|
},{"./client":117,"./util/standardize":129,"@babel/runtime/helpers/interopRequireDefault":3}]},{},["videomail-client"])("videomail-client")
|
|
23954
23956
|
});
|