node-red-contrib-modbus-modpackqt 3.3.21 → 3.3.23
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 +17 -0
- package/nodes/icons/modpackqt.svg +8 -0
- package/nodes/lib/probe-runtime.js +1 -1
- package/package.json +1 -2
- package/icons/modpackqt.svg +0 -5
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.23] — 2026-05-10
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **Icon now matches the full ModPackQT brand mark** — green rounded
|
|
12
|
+
square with the white "M" wave inside, instead of just the bare
|
|
13
|
+
chart line. Identical to the favicon on modpackqt.com.
|
|
14
|
+
|
|
15
|
+
## [3.3.22] — 2026-05-10
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **Logo icon now actually displays** on every ModPackQT node. In v3.3.21
|
|
20
|
+
the icon file was at the package root, where Node-RED could not find
|
|
21
|
+
it; moved to `nodes/icons/` (adjacent to the node files) so Node-RED
|
|
22
|
+
resolves it correctly.
|
|
23
|
+
|
|
7
24
|
## [3.3.21] — 2026-05-10
|
|
8
25
|
|
|
9
26
|
### Changed
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
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"/>
|
|
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.
|
|
21
|
+
const PALETTE_VERSION = '3.3.23';
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-modbus-modpackqt",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.23",
|
|
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",
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
35
|
"nodes/",
|
|
36
|
-
"icons/",
|
|
37
36
|
"examples/",
|
|
38
37
|
"README.md",
|
|
39
38
|
"LICENSE",
|
package/icons/modpackqt.svg
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
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"/>
|
|
5
|
-
</svg>
|