@homebridge-plugins/homebridge-tado 8.1.0 → 8.1.1

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,8 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## v8.1.1 - 2025-10-20
4
+ - Fix config UI not working on HOOBS 5 (#177)
5
+
3
6
  ## v8.1.0 - 2025-10-19
4
- - Add option to use a custom tado api url
5
- - Add option to skip authentication for tado api
7
+ - Add option to use a custom tado api url (#176)
8
+ - Add option to skip authentication for tado api (#176)
9
+ - Update dependencies
6
10
 
7
11
  ## v8.0.2 - 2025-07-22
8
12
  - Update dependencies
@@ -1407,7 +1407,7 @@ async function fetchDevices(credentials, refresh, resync) {
1407
1407
  try {
1408
1408
 
1409
1409
  //check version before load ui
1410
- if (window.compareVersions(window.homebridge.serverEnv.env.packageVersion, '4.34.0') < 0) {
1410
+ if (window.homebridge.serverEnv.env && window.compareVersions(window.homebridge.serverEnv.env.packageVersion, '4.34.0') < 0) {
1411
1411
  await showOldSchema(true);
1412
1412
  return;
1413
1413
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebridge-plugins/homebridge-tado",
3
- "version": "8.1.0",
3
+ "version": "8.1.1",
4
4
  "description": "Homebridge plugin for controlling tado° devices.",
5
5
  "main": "index.js",
6
6
  "scripts": {