@riddix/hamh 2.1.0-alpha.544 → 2.1.0-alpha.546
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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Home-Assistant-Matter-Hub
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|
|
|
7
7
|
**Expose your Home Assistant devices to Matter controllers like Apple Home, Google Home, and Alexa**
|
|
8
8
|
|
|
@@ -219,6 +219,9 @@ For more details, see the [Robot Vacuum Documentation](https://riddix.github.io/
|
|
|
219
219
|
|
|
220
220
|
### Home Assistant Add-on (Recommended)
|
|
221
221
|
|
|
222
|
+
[](https://my.home-assistant.io/redirect/supervisor_addon/?addon=3fd9e6b0_hamh&repository_url=https%3A%2F%2Fgithub.com%2Friddix%2Fhome-assistant-addons)
|
|
223
|
+
|
|
224
|
+
### Manual steps (testing versions, etc.)
|
|
222
225
|
Add this repository to your Add-on Store:
|
|
223
226
|
|
|
224
227
|
```
|
package/dist/backend/cli.js
CHANGED
|
@@ -167234,6 +167234,11 @@ var Bridge = class {
|
|
|
167234
167234
|
await this.endpointManager.startPlugins();
|
|
167235
167235
|
this.setStatus({ code: BridgeStatus.Running });
|
|
167236
167236
|
this.startAutoForceSyncIfEnabled();
|
|
167237
|
+
if (this.dataProvider.featureFlags?.autoForceSync) {
|
|
167238
|
+
this.forceSync().catch((e) => {
|
|
167239
|
+
this.log.warn("Startup force sync failed:", e);
|
|
167240
|
+
});
|
|
167241
|
+
}
|
|
167237
167242
|
this.wireSessionDiagnostics();
|
|
167238
167243
|
logMemoryUsage(this.log, "bridge running");
|
|
167239
167244
|
diagnosticEventBus.emit("bridge_started", `Bridge started`, {
|
|
@@ -180263,6 +180268,11 @@ var ServerModeBridge = class {
|
|
|
180263
180268
|
await this.server.start();
|
|
180264
180269
|
this.setStatus({ code: BridgeStatus.Running });
|
|
180265
180270
|
this.startAutoForceSyncIfEnabled();
|
|
180271
|
+
if (this.dataProvider.featureFlags?.autoForceSync) {
|
|
180272
|
+
this.forceSync().catch((e) => {
|
|
180273
|
+
this.log.warn("Startup force sync failed:", e);
|
|
180274
|
+
});
|
|
180275
|
+
}
|
|
180266
180276
|
this.wireSessionDiagnostics();
|
|
180267
180277
|
this.scheduleWarmStart();
|
|
180268
180278
|
logMemoryUsage(this.log, "server mode bridge running");
|