Skip to content

Commit

Permalink
0.5.58
Browse files Browse the repository at this point in the history
* fix ESP8266 save settings issue #1166
  • Loading branch information
lumapu committed Sep 19, 2023
1 parent ff63f52 commit d0c834f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 0 additions & 2 deletions src/app.h
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 7
#define VERSION_PATCH 57
#define VERSION_PATCH 58

//-------------------------------------
typedef struct {
Expand Down

0 comments on commit d0c834f

Please sign in to comment.