diff --git a/CHANGELOG.md b/CHANGELOG.md index 483e1eec7..014b13aa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,14 @@ All notable changes to this project will be documented in this file. ## [11.1.0.1] ### Added +- Support for Sonoff MS01 soil moisture sensor (#15335) +- Support for daisy chaining MAX7219 displays (#15345) ### Changed ### Fixed +- SCD40 start low power command (#15361) +- Improv initial or erase device installation failing to provide Configure WiFi option ### Removed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 94dd26733..00240dc5d 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -106,11 +106,15 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo ## Changelog v11.1.0.1 ### Added +- Support for Sonoff MS01 soil moisture sensor [#15335](https://github.com/arendst/Tasmota/issues/15335) +- Support for daisy chaining MAX7219 displays [#15345](https://github.com/arendst/Tasmota/issues/15345) ### Breaking Changed ### Changed ### Fixed +- SCD40 start low power command [#15361](https://github.com/arendst/Tasmota/issues/15361) +- Improv initial or erase device installation failing to provide Configure WiFi option ### Removed diff --git a/tasmota/xdrv_62_improv.ino b/tasmota/xdrv_62_improv.ino index cdb18a91a..1ae694d9d 100644 --- a/tasmota/xdrv_62_improv.ino +++ b/tasmota/xdrv_62_improv.ino @@ -325,7 +325,8 @@ void ImprovEverySecond(void) { } void ImprovInit(void) { - if (!RtcSettings.improv_state) { + if (!RtcSettings.improv_state || // After power on + !Settings->bootcount) { // After reset to defaults caused by GUI option ERASE RtcSettings.improv_state = IMPROV_STATE_AUTHORIZED; // Power on state (persistent during restarts) } Improv.wifi_timeout = IMPROV_WIFI_TIMEOUT; // Try to update state after restart