mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-25 23:06:11 +02:00
parent
ff63f5236d
commit
d0c834f17a
3 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
# Development Changes
|
||||
|
||||
## 0.5.58
|
||||
* fix ESP8266 save settings issue #1166
|
||||
|
||||
## 0.7.57 - 2023-09-18
|
||||
* fix Alarms are always in queue (since 0.7.56)
|
||||
* fix display active power control to long for small devices #1165
|
||||
|
|
|
@ -102,7 +102,6 @@ class app : public IApp, public ah::Scheduler {
|
|||
mSavePending = true;
|
||||
mSaveReboot = reboot;
|
||||
if(reboot) {
|
||||
onNetwork(false);
|
||||
ah::Scheduler::resetTicker();
|
||||
}
|
||||
once(std::bind(&app::tickSave, this), 3, "save");
|
||||
|
@ -285,7 +284,6 @@ class app : public IApp, public ah::Scheduler {
|
|||
|
||||
void tickReboot(void) {
|
||||
DPRINTLN(DBG_INFO, F("Rebooting..."));
|
||||
onNetwork(false);
|
||||
ah::Scheduler::resetTicker();
|
||||
WiFi.disconnect();
|
||||
delay(200);
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
//-------------------------------------
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 7
|
||||
#define VERSION_PATCH 57
|
||||
#define VERSION_PATCH 58
|
||||
|
||||
//-------------------------------------
|
||||
typedef struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue