node-red-contrib-dmx-for-ha 0.6.36 → 0.6.39

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/README.md CHANGED
@@ -471,6 +471,13 @@ Use an **absolute path** starting with `/config/`. A relative path will silently
471
471
 
472
472
  | Version | Changes |
473
473
  |---|---|
474
+ | 0.6.38 | etherten_v2 set as default controller profile — nodes with unset profile now correctly use batched JSON array format |
475
+ | 0.6.37 | ha-mqtt-dmx-group palette registration fixed — duplicate `const node = this` in oneditprepare caused silent browser error preventing node appearing in palette |
476
+ | 0.6.36 | README settings.js path corrected to /addon_configs/a0d7b954_nodered/settings.js |
477
+ | 0.6.35 | pubState OFF fix — recovery and restoreAfterEffect no longer send colour values when state is OFF |
478
+ | 0.6.34 | broker.setMaxListeners(0) added to all 5 nodes — suppresses MaxListeners warning |
479
+ | 0.6.33 | transitionRateLimit exposed in config node UI (was hardcoded) |
480
+ | 0.6.32 | README full rewrite |
474
481
  | 0.6.31 | Group Node v2 — member list (local + remote), internal routing via RED.nodes.getNode(), duplicate detection, loop protection cross-instance. Registry stores nodeId + nodeType. |
475
482
  | 0.6.30 | Debug timer leak fixed — S._debugTimer saved and cleared on node close (all 5 nodes) |
476
483
  | 0.6.29 | Node label updated to match HA device format including subLocation |
@@ -313,7 +313,7 @@
313
313
  </div>
314
314
 
315
315
  <div style="margin-top:16px; padding-top:8px; border-top:1px solid #444; color:#666; font-size:0.8em; text-align:right;">
316
- node-red-contrib-dmx-for-ha &nbsp;v0.6.36
316
+ node-red-contrib-dmx-for-ha &nbsp;v0.6.39
317
317
  </div>
318
318
 
319
319
  </script>
@@ -196,8 +196,6 @@
196
196
  ];
197
197
 
198
198
  // Populate dropdowns
199
- const node = this;
200
-
201
199
  const areaEl = $('#node-input-area');
202
200
  areaEl.empty();
203
201
  areas.forEach(function (a) {
@@ -395,7 +393,7 @@
395
393
  </div>
396
394
 
397
395
  <div style="margin-top:16px; padding-top:8px; border-top:1px solid #444; color:#666; font-size:0.8em; text-align:right;">
398
- node-red-contrib-dmx-for-ha &nbsp;v0.6.36
396
+ node-red-contrib-dmx-for-ha &nbsp;v0.6.39
399
397
  </div>
400
398
 
401
399
  </script>
@@ -160,7 +160,7 @@
160
160
  // DMX controller
161
161
  controllerNum: { value: '1' },
162
162
  universe: { value: '1' },
163
- controllerProfile: { value: 'etherten_v1' },
163
+ controllerProfile: { value: 'etherten_v2' },
164
164
  // Options
165
165
  haIcon: { value: 'mdi:lightbulb' },
166
166
  showEffects: { value: true },
@@ -596,7 +596,7 @@
596
596
  </div>
597
597
 
598
598
  <div style="margin-top:16px; padding-top:8px; border-top:1px solid #444; color:#666; font-size:0.8em; text-align:right;">
599
- node-red-contrib-dmx-for-ha &nbsp;v0.6.36
599
+ node-red-contrib-dmx-for-ha &nbsp;v0.6.39
600
600
  </div>
601
601
 
602
602
  </script>
@@ -148,7 +148,7 @@ module.exports = function (RED) {
148
148
  },
149
149
  controllerNum: config.controllerNum || '1',
150
150
  universe: config.universe || '1',
151
- controllerProfile: config.controllerProfile || 'etherten_v1',
151
+ controllerProfile: config.controllerProfile || 'etherten_v2',
152
152
  haIcon: config.haIcon || 'mdi:lightbulb',
153
153
  showEffects: config.showEffects !== false,
154
154
  transitions: config.transitions !== false,
@@ -318,7 +318,7 @@
318
318
  </div>
319
319
 
320
320
  <div style="margin-top:16px; padding-top:8px; border-top:1px solid #444; color:#666; font-size:0.8em; text-align:right;">
321
- node-red-contrib-dmx-for-ha &nbsp;v0.6.36
321
+ node-red-contrib-dmx-for-ha &nbsp;v0.6.39
322
322
  </div>
323
323
 
324
324
  </script>
@@ -301,7 +301,7 @@
301
301
  </div>
302
302
 
303
303
  <div style="margin-top:16px; padding-top:8px; border-top:1px solid #444; color:#666; font-size:0.8em; text-align:right;">
304
- node-red-contrib-dmx-for-ha &nbsp;v0.6.36
304
+ node-red-contrib-dmx-for-ha &nbsp;v0.6.39
305
305
  </div>
306
306
 
307
307
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-dmx-for-ha",
3
- "version": "0.6.36",
3
+ "version": "0.6.39",
4
4
  "description": "DMX lighting control for Home Assistant via Node-RED and MQTT. Place a node, fill in the settings, deploy. Full HA device registry integration with RGBW/RGBWW/CCT/brightness colour modes, transitions, effects, and group control.",
5
5
  "keywords": [
6
6
  "node-red",