node-red-contrib-modbus-modpackqt 3.3.17 → 3.3.18

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.3.18] — 2026-05-10
8
+
9
+ ### Changed
10
+
11
+ - **Master-probe and slave-server nodes are now orange** (`#f97316`)
12
+ instead of violet — easier to spot at a glance and visually
13
+ distinct from other ModPackQT nodes on the canvas.
14
+
7
15
  ## [3.3.17] — 2026-05-10
8
16
 
9
17
  ### Changed
@@ -18,7 +18,7 @@
18
18
  const http = require('http');
19
19
  const { URL } = require('url');
20
20
 
21
- const PALETTE_VERSION = '3.3.17';
21
+ const PALETTE_VERSION = '3.3.18';
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;
@@ -1,7 +1,7 @@
1
1
  <script type="text/javascript">
2
2
  RED.nodes.registerType('modpackqt-master-probe', {
3
3
  category: 'ModPackQT',
4
- color: '#7c3aed',
4
+ color: '#f97316',
5
5
  defaults: {
6
6
  name: { value: '' },
7
7
  server: { value: '', type: 'modpackqt-probe-config', required: true },
@@ -1,7 +1,7 @@
1
1
  <script type="text/javascript">
2
2
  RED.nodes.registerType('modpackqt-slave-server', {
3
3
  category: 'ModPackQT',
4
- color: '#7c3aed',
4
+ color: '#f97316',
5
5
  defaults: {
6
6
  name: { value: '' },
7
7
  bindHost: { value: '0.0.0.0' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-modbus-modpackqt",
3
- "version": "3.3.17",
3
+ "version": "3.3.18",
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",