Browse Source

Merge branch 'development03' into Zero-Export

pull/1155/head
DanielR92 2 years ago
parent
commit
85d4709ecd
  1. 3
      src/CHANGES.md
  2. 2
      src/app.h
  3. 2
      src/defines.h

3
src/CHANGES.md

@ -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

2
src/app.h

@ -106,7 +106,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");
@ -293,7 +292,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);

2
src/defines.h

@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 7
#define VERSION_PATCH 57
#define VERSION_PATCH 58
//-------------------------------------
typedef struct {

Loading…
Cancel
Save