node-red-contrib-modbus-modpackqt 3.3.22 → 3.3.24

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/CHANGELOG.md CHANGED
@@ -4,6 +4,23 @@ All notable changes to **node-red-contrib-modbus-modpackqt** are documented
4
4
  here. This project follows [Semantic Versioning](https://semver.org/) — pin a
5
5
  major version (`^2.0.0`) in production.
6
6
 
7
+ ## [3.3.24] — 2026-05-10
8
+
9
+ ### Changed
10
+
11
+ - **Renamed "Account Key" → "Cloud Gateway Key"** in the master-probe and
12
+ slave-server node dialogs. Same field, clearer name — matches the
13
+ "Cloud Gateways" section in modpackqt.com → Settings where the key
14
+ is created.
15
+
16
+ ## [3.3.23] — 2026-05-10
17
+
18
+ ### Changed
19
+
20
+ - **Icon now matches the full ModPackQT brand mark** — green rounded
21
+ square with the white "M" wave inside, instead of just the bare
22
+ chart line. Identical to the favicon on modpackqt.com.
23
+
7
24
  ## [3.3.22] — 2026-05-10
8
25
 
9
26
  ### Fixed
@@ -1,5 +1,8 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
2
- <path d="M14 70 L32 32 L48 60 L64 26 L82 56" fill="none" stroke="#ffffff" stroke-width="11" stroke-linecap="round" stroke-linejoin="round"/>
3
- <circle cx="14" cy="70" r="6" fill="#ffffff"/>
4
- <circle cx="82" cy="56" r="6" fill="#ffffff"/>
2
+ <rect width="100" height="100" rx="22" fill="#16a34a"/>
3
+ <path d="M20 72 L34 30 L50 58 L66 30 L80 72"
4
+ fill="none" stroke="#ffffff" stroke-width="11"
5
+ stroke-linecap="round" stroke-linejoin="round"/>
6
+ <circle cx="20" cy="72" r="6" fill="#ffffff"/>
7
+ <circle cx="80" cy="72" r="6" fill="#ffffff"/>
5
8
  </svg>
@@ -18,7 +18,7 @@
18
18
  const http = require('http');
19
19
  const { URL } = require('url');
20
20
 
21
- const PALETTE_VERSION = '3.3.22';
21
+ const PALETTE_VERSION = '3.3.24';
22
22
  const DEFAULT_PORT = parseInt(process.env.MODPACKQT_PROBE_PORT, 10) || 8502;
23
23
  const BIND_HOST = process.env.MODPACKQT_PROBE_HOST || '127.0.0.1';
24
24
  const PORT_RETRY = 5;
@@ -46,7 +46,7 @@
46
46
  .done((info) => { runtimeInfo = info || {}; buildLink(); })
47
47
  .fail(() => buildLink());
48
48
 
49
- // ── My Connections picker — uses this node's own Account Key
49
+ // ── My Connections picker — uses this node's own Cloud Gateway Key
50
50
  const $sel = $('#node-input-modpackqt-conn-picker');
51
51
  const $hint = $('#modpackqt-conn-picker-hint');
52
52
  const reload = () => {
@@ -77,7 +77,7 @@
77
77
  .fail((xhr) => {
78
78
  const msg = (xhr.responseJSON && xhr.responseJSON.error) || ('HTTP ' + xhr.status);
79
79
  $sel.empty().append($('<option>').val('').text('— ' + msg + ' —'));
80
- $hint.text('Could not load connections — check the Account Key above.');
80
+ $hint.text('Could not load connections — check the Cloud Gateway Key above.');
81
81
  });
82
82
  };
83
83
  $('#modpackqt-conn-picker-refresh').on('click', (e) => { e.preventDefault(); reload(); });
@@ -102,7 +102,7 @@
102
102
  </div>
103
103
 
104
104
  <div class="form-row">
105
- <label for="node-input-apiKey"><i class="fa fa-key"></i> Account Key</label>
105
+ <label for="node-input-apiKey"><i class="fa fa-key"></i> Cloud Gateway Key</label>
106
106
  <input type="password" id="node-input-apiKey" placeholder="Paste your ModPackQT tunnel key">
107
107
  </div>
108
108
  <div class="form-tips" style="font-size:11px;color:#6b7280;margin:-8px 0 12px 105px">
@@ -152,7 +152,7 @@
152
152
  Click <b>Open in ModPackQT Console</b> to launch the web tester
153
153
  live-attached to it.</p>
154
154
 
155
- <h3>Account Key</h3>
155
+ <h3>Cloud Gateway Key</h3>
156
156
  <p>Paste your ModPackQT tunnel key — generate one at
157
157
  <a href="https://modpackqt.com/settings" target="_blank" rel="noopener">modpackqt.com → Settings → Cloud Gateways</a>.
158
158
  The key loads your saved connections into the picker AND lets the web console authenticate to this probe.
@@ -95,7 +95,7 @@
95
95
  </div>
96
96
 
97
97
  <div class="form-row">
98
- <label for="node-input-apiKey"><i class="fa fa-key"></i> Account Key</label>
98
+ <label for="node-input-apiKey"><i class="fa fa-key"></i> Cloud Gateway Key</label>
99
99
  <input type="password" id="node-input-apiKey" placeholder="Paste your ModPackQT tunnel key">
100
100
  </div>
101
101
  <div class="form-tips" style="font-size:11px;color:#6b7280;margin:-8px 0 12px 105px">
@@ -149,7 +149,7 @@
149
149
  <li>On your slave-read / slave-write nodes, select this node in the <b>Slave Server</b> dropdown.</li>
150
150
  <li>Click <b>Open in ModPackQT Console</b> to manage the register layout from the web.</li>
151
151
  </ol>
152
- <h3>Account Key</h3>
152
+ <h3>Cloud Gateway Key</h3>
153
153
  <p>Generate at <a href="https://modpackqt.com/settings" target="_blank" rel="noopener">modpackqt.com → Settings → Cloud Gateways</a>.
154
154
  Lets the web console connect and loads your saved slave configs.</p>
155
155
  <h3>Port note</h3>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-modbus-modpackqt",
3
- "version": "3.3.22",
3
+ "version": "3.3.24",
4
4
  "description": "Modbus commissioning, testing & analysis tools for Node-RED. Embedded Modbus TCP/RTU master + slave server, FC1/FC2/FC3/FC4 reads, FC5/FC6/FC15/FC16 writes, built-in slave register store, and a passive traffic monitor for debugging. 100% free, MIT, no usage limits. By ModPackQT — open the matching web console at modpackqt.com for register decoding, simulation and AI assistance.",
5
5
  "keywords": [
6
6
  "node-red",