@homebridge-plugins/homebridge-tado 8.6.1 → 8.6.2

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,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## v8.6.2 — 2025-11-02
4
+ - Fix: Config-UI: Show skip auth field as checkbox and improve instruction texts
5
+
3
6
  ## v8.6.1 — 2025-11-01
4
7
  - Fix: Improve error logging for failed API requests (#179)
5
8
 
@@ -570,9 +570,9 @@
570
570
  "description": "Optional: Skip creation of history service."
571
571
  },
572
572
  "preferSiriTemperature": {
573
- "title": "Prefer Siri temperature changes",
573
+ "title": "Prefer Siri Temperature Changes",
574
574
  "type": "boolean",
575
- "description": "Prefers temperature changes when the Auto (state=3) mode is sent simultaneously. Default: false."
575
+ "description": "Prefer temperature changes when the state auto is sent simultaneously with a temperature change. Default: false."
576
576
  }
577
577
  }
578
578
  },
@@ -83,16 +83,16 @@
83
83
  <i class="fa fa-arrow-left" aria-hidden="true"></i>
84
84
  </button>
85
85
  <img src="images/tado_logo.png" alt="Tado meets Homebridge" width="150px" class="center-it mt-4 tadoLogo">
86
- <h6 class="text-center">To start the process, we need some data from the home you want to add in homebridge. <br>
87
- Please fill out all marked fields.</h6>
86
+ <h6 class="text-center">To start the process, we need to authenticate with the Tado account of the home you want to
87
+ add to Homebridge.<br>Please fill out all marked fields:</h6>
88
88
  <div class="container mt-5">
89
89
  <div class="form-group">
90
- <label for="homeUsername">Username <span class="text-danger">*</span> </label>
91
- <input type="text" class="form-control" id="homeUsername">
92
- <label for="homeTadoApiUrl">Tado API URL (optional) </label>
90
+ <label for="homeUsername">Username<span class="text-danger">*</span></label>
91
+ <input type="text" class="form-control" id="homeUsername" placeholder="your-tado@mail.com">
92
+ <label for="homeTadoApiUrl">Tado API URL (optional)</label>
93
93
  <input type="text" class="form-control" id="homeTadoApiUrl">
94
- <label for="homeSkipAuth">Skip Authentication (optional) </label>
95
- <input type="checkbox" class="form-control" id="homeSkipAuth">
94
+ <label for="homeSkipAuth">Skip Authentication (optional)</label>
95
+ <input type="checkbox" class="form-checkbox" id="homeSkipAuth">
96
96
  </div>
97
97
  <button id="auth" type="submit" class="btn btn-primary float-right mt-3 mr-0">Next</button>
98
98
  </div>
@@ -101,7 +101,8 @@
101
101
  <!-- fetchDevices -->
102
102
  <div id="fetchDevices" style="display:none;">
103
103
  <img src="images/tado_logo.png" alt="Tado meets Homebridge" width="150px" class="center-it mt-2 tadoLogo">
104
- <h6 class="text-center">Devices are searched. <br> Please be patient for a moment.</h6>
104
+ <h6 class="text-center">Devices are being searched.<br>Please follow the instructions below and be patient for a
105
+ moment.</h6>
105
106
  <h6 class="text-center" id="authenticationInstructions" style="display:none;font-weight:bold;"></h6>
106
107
  <div id="fetchDevicesBar" class="mt-5"></div>
107
108
  </div>
@@ -562,9 +562,9 @@ const schema = {
562
562
  'description': 'Optional: Skip creation of history service.'
563
563
  },
564
564
  'preferSiriTemperature': {
565
- 'title': 'Prefer Siri temperature changes',
565
+ 'title': 'Prefer Siri Temperature Changes',
566
566
  'type': 'boolean',
567
- 'description': 'Prefers temperature changes when the Auto (state=3) mode is sent simultaneously. Default: false.'
567
+ 'description': 'Prefer temperature changes when the state auto is sent simultaneously with a temperature change. Default: false.'
568
568
  }
569
569
  },
570
570
  'layout': [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebridge-plugins/homebridge-tado",
3
- "version": "8.6.1",
3
+ "version": "8.6.2",
4
4
  "description": "Homebridge plugin for controlling tado° devices.",
5
5
  "main": "index.js",
6
6
  "scripts": {