node-red-contrib-modbus-modpackqt 3.2.1 → 3.2.2

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,14 @@ 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.2.2] — 2026-05-10
8
+
9
+ ### Changed
10
+
11
+ - `modpackqt-master-read` default **Poll Interval** is now **1000 ms**
12
+ (was 0 / disabled). Existing flows keep their saved value — only newly
13
+ dropped nodes get the new default.
14
+
7
15
  ## [3.2.1] — 2026-05-10
8
16
 
9
17
  ### Changed — Picker-first node UI
@@ -18,7 +18,7 @@
18
18
  const http = require('http');
19
19
  const { URL } = require('url');
20
20
 
21
- const PALETTE_VERSION = '3.2.1';
21
+ const PALETTE_VERSION = '3.2.2';
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;
@@ -11,7 +11,7 @@
11
11
  functionCode: { value: '3', required: true },
12
12
  address: { value: 0, required: true, validate: RED.validators.number() },
13
13
  quantity: { value: 1, required: true, validate: RED.validators.number() },
14
- pollInterval: { value: 0, validate: RED.validators.number() }
14
+ pollInterval: { value: 1000, validate: RED.validators.number() }
15
15
  },
16
16
  inputs: 1,
17
17
  outputs: 1,
@@ -125,7 +125,7 @@
125
125
  </div>
126
126
  <div class="form-row">
127
127
  <label for="node-input-pollInterval"><i class="fa fa-clock-o"></i> Poll Interval (ms)</label>
128
- <input type="number" id="node-input-pollInterval" min="0" placeholder="0 = disabled">
128
+ <input type="number" id="node-input-pollInterval" min="0" placeholder="1000 (0 = disabled, input-only)">
129
129
  </div>
130
130
 
131
131
  <div class="form-row" style="margin:14px 0 4px 0;border-top:1px solid #e5e7eb;padding-top:10px">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-modbus-modpackqt",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
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",