homebridge-myplace 2.3.2 → 2.3.3

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
@@ -1,3 +1,3 @@
1
1
  ### Homebridge-myplace - An independent plugin for Homebridge bringing Advantage Air MyPlace system, its smaller siblings (E-zone, MyAir, MyAir4, etc) and its cousins (e.g. Fujitsu AnywAir) to Homekit
2
- ##### v2.3.2 (15-11-2025)
3
- ##### (1) Enhancement: Added fallback to cached configuration when no devices is accessible on the local network.
2
+ ##### v2.3.3 (18-11-2025)
3
+ ##### (1) Bug fix - to fix an error of an undefined variable.
package/Cmd5Platform.js CHANGED
@@ -123,7 +123,7 @@ class Cmd5Platform
123
123
  this.processNewCharacteristicDefinitions( );
124
124
 
125
125
  // scan the platform accessories (devices) to identify which ones to be restored from cache
126
- this.log.info( chalk.yellow( "Scanning the config and the cache for accessories to be removed or restored from cache..." ) );
126
+ this.log.info( chalk.yellow( "***Scanning the config and the cache for accessories to be removed or restored from cache..." ) );
127
127
  this.scanToBeRemovedOrRestored( this.log );
128
128
 
129
129
  // Any accessory NOT to be restored should be removed, find them
@@ -1,4 +1,7 @@
1
1
  ### Homebridge-myplace - An independent plugin for Homebridge bringing Advantage Air MyPlace system, its smaller siblings (E-zone, MyAir, MyAir4, etc) and its cousins (e.g. Fujitsu AnywAir) to Homekit
2
+ ##### v2.3.3 (18-11-2025)
3
+ ##### (1) Bug fix - to fix an error of an undefined variable.
4
+
2
5
  ##### v2.3.2 (15-11-2025)
3
6
  ##### (1) Enhancement: Added fallback to cached configuration when no devices is accessible on the local network.
4
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-myplace",
3
3
  "description": "Exec Plugin bringing Advanatge Air MyPlace system to Homekit",
4
- "version": "2.3.2",
4
+ "version": "2.3.3",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Ung Sing"
@@ -9,7 +9,7 @@ function delay(ms) {
9
9
  return new Promise(resolve => setTimeout(resolve, ms));
10
10
  }
11
11
 
12
- async function updateConfig(config, log, storgePath, pluginPath) {
12
+ async function updateConfig(config, log, storagePath, pluginPath) {
13
13
  // Enforce maxAccessories: default 149 (Homebridge hard limit)
14
14
  const maxAccessories = (typeof config.maxAccessories === "number"
15
15
  && config.maxAccessories > 0 && config.maxAccessories < 150)