Skip to content

Commit 1afe0cd

Browse files
committed
Merge branch 'release/10.2.1'
* release/10.2.1: Final commit of version 10.2.1 Rebuild for the next version
2 parents 206ab0e + 91c907d commit 1afe0cd

11 files changed

Lines changed: 61 additions & 53 deletions

File tree

.vscode/extensions.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"recommendations": [
3-
"dbaeumer.vscode-eslint",
4-
"prettier.prettier-vscode",
5-
]
2+
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
63
}

dist/videomail-for-ninja-forms.zip

60 Bytes
Binary file not shown.

package-lock.json

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "videomail-for-ninja-forms",
3-
"version": "10.2.0",
3+
"version": "10.2.1",
44
"description": "With this add-on recording videos in Wordpress Ninja Forms comes true.",
55
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
66
"contributors": [
@@ -58,7 +58,7 @@
5858
]
5959
},
6060
"dependencies": {
61-
"videomail-client": "13.8.3"
61+
"videomail-client": "13.8.6"
6262
},
6363
"devDependencies": {
6464
"@babel/core": "7.29.0",

readme.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: michael.heuberger, kbjohnson90
33
Tags: video, email, recorder, sign language
44
Requires at least: 6.0
55
Tested up to: 6.9.1
6-
Stable tag: 10.2.0
6+
Stable tag: 10.2.1
77
Requires PHP: 8.1.0
88
Donate link: https://videomail.io/faq
99
License: CC0-1.0
@@ -72,6 +72,15 @@ To get help, just use any of these contacts at [https://binarykitchen.com](https
7272

7373
== Changelog ==
7474

75+
= 10.2.1 (1 Apr 2026) =
76+
77+
**Fix**
78+
* Make WebSocket connection more robust
79+
80+
**Chore**
81+
* Upgrade VC dependency
82+
* Switch Prettier extension
83+
7584
= 10.2.0 (21 Mar 2026) =
7685

7786
**Change:**

src/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Remember, you can't use any import/require statements here
2-
const PLUGIN_VERSION = "10.2.0";
2+
const PLUGIN_VERSION = "10.2.1";
33

44
// manual switch to have more stuff printed to console
55
let DEBUG = false;

src/php/videomail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
final class NF_Videomail {
33

44
const NAME = 'Videomail';
5-
const VERSION = '10.2.0';
5+
const VERSION = '10.2.1';
66
const AUTHOR = 'Michael Heuberger + Kyle B. Johnson';
77
const SLUG = 'videomail';
88
const PREFIX = 'NF_Videomail';

target/js/main-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

target/js/videomail-client/index-min.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10832,7 +10832,7 @@
1083210832
var client = __webpack_require__("./node_modules/superagent/lib/client.js");
1083310833
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
1083410834
var package_namespaceObject = {
10835-
rE: "13.8.3"
10835+
rE: "13.8.6"
1083610836
};
1083710837
function isAudioEnabled(options) {
1083810838
return Boolean(options.audio.enabled);
@@ -17060,7 +17060,9 @@
1706017060
const url2Connect = `${this.options.socketUrl}?${encodeURIComponent(constants.WHITELIST_KEY_LABEL)}=${encodeURIComponent(this.options.whitelistKey)}`;
1706117061
this.options.logger.debug(`Recorder: initializing web socket to ${url2Connect}`);
1706217062
try {
17063-
this.stream = stream_default()(url2Connect);
17063+
this.stream = stream_default()(url2Connect, {
17064+
perMessageDeflate: false
17065+
});
1706417066
} catch (exc) {
1706517067
this.connecting = this.connected = false;
1706617068
const err = error_createError({

target/php/videomail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
final class NF_Videomail {
33

44
const NAME = 'Videomail';
5-
const VERSION = '10.2.0';
5+
const VERSION = '10.2.1';
66
const AUTHOR = 'Michael Heuberger + Kyle B. Johnson';
77
const SLUG = 'videomail';
88
const PREFIX = 'NF_Videomail';

0 commit comments

Comments
 (0)