mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-09-13 05:34:34 +00:00
revert commit #9c992d8
This commit is contained in:
+1
-1
@@ -21,7 +21,6 @@ This release is based on the latest Espressif/Arduino core version 3. It brings
|
|||||||
- Ethernet MAC address changed with the new SDK, breaking DHCP reservations (currently disabled)
|
- Ethernet MAC address changed with the new SDK, breaking DHCP reservations (currently disabled)
|
||||||
- "IPv4 nameserver" showed an IPv6 address when IPv6 was in use
|
- "IPv4 nameserver" showed an IPv6 address when IPv6 was in use
|
||||||
- HA Discovery warning on Uptime after EMS-ESP boot due to NTP not ready
|
- HA Discovery warning on Uptime after EMS-ESP boot due to NTP not ready
|
||||||
- show MQTT connection error only once on the first connect failure
|
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
@@ -33,4 +32,5 @@ This release is based on the latest Espressif/Arduino core version 3. It brings
|
|||||||
- show control setting only for master thermostats (0x10) [#3173](https://github.com/emsesp/EMS-ESP32/issues/3173)
|
- show control setting only for master thermostats (0x10) [#3173](https://github.com/emsesp/EMS-ESP32/issues/3173)
|
||||||
- remove devices without entities not listed in 0x07 telegram
|
- remove devices without entities not listed in 0x07 telegram
|
||||||
- changes to the Dialogs in Dashboard page, removed the run icon in the Commands page. Renamed Execute to Run.
|
- changes to the Dialogs in Dashboard page, removed the run icon in the Commands page. Renamed Execute to Run.
|
||||||
|
- set `None` for undefined values in HA `val_tpl`
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -473,7 +473,7 @@ bool Mqtt::get_publish_onchange(uint8_t device_type) {
|
|||||||
}
|
}
|
||||||
void Mqtt::on_disconnect(espMqttClientTypes::DisconnectReason reason) {
|
void Mqtt::on_disconnect(espMqttClientTypes::DisconnectReason reason) {
|
||||||
// only show the error once on the first connect failure
|
// only show the error once on the first connect failure
|
||||||
if (connectcount_) {
|
if (!connecting_) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
connecting_ = false;
|
connecting_ = false;
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#define EMSESP_APP_VERSION "3.9.0-dev.4"
|
#define EMSESP_APP_VERSION "3.9.0-dev.5"
|
||||||
|
|||||||
Reference in New Issue
Block a user