* MQTT fix reconnection by new lib version #780
* display 'failed' if no Update was selected #813
This commit is contained in:
lumapu 2023-03-27 21:27:49 +02:00
parent a1aedce59e
commit fae46c4667
4 changed files with 10 additions and 8 deletions

View file

@ -2,6 +2,10 @@
(starting from release version `0.5.66`)
## 0.5.110
* MQTT fix reconnection by new lib version #780
* display 'failed' if no Update was selected #813
## 0.5.109
* reduced heap fragmentation by optimizing MqTT #768
* ePaper: centered text thx @knickohr

View file

@ -13,7 +13,7 @@
//-------------------------------------
#define VERSION_MAJOR 0
#define VERSION_MINOR 5
#define VERSION_PATCH 109
#define VERSION_PATCH 110
//-------------------------------------
typedef struct {

View file

@ -37,7 +37,7 @@ lib_deps =
https://github.com/yubox-node-org/ESPAsyncWebServer
nrf24/RF24 @ ^1.4.5
paulstoffregen/Time @ ^1.6.1
https://github.com/bertmelis/espMqttClient#v1.4.1
https://github.com/bertmelis/espMqttClient#v1.4.2
bblanchon/ArduinoJson @ ^6.21.0
https://github.com/JChristensen/Timezone @ ^1.2.4
olikraus/U8g2 @ ^2.34.16

View file

@ -141,16 +141,14 @@ class Web {
}
}
if (!Update.hasError()) {
if (Update.write(data, len) != len) {
if (Update.write(data, len) != len)
Update.printError(Serial);
}
}
if (final) {
if (Update.end(true)) {
if (Update.end(true))
Serial.printf("Update Success: %uB\n", index + len);
} else {
else
Update.printError(Serial);
}
}
}
@ -245,7 +243,7 @@ class Web {
}
void showUpdate(AsyncWebServerRequest *request) {
bool reboot = !Update.hasError();
bool reboot = (!Update.hasError() && Update.size() > 0);
String html = F("<!doctype html><html><head><title>Update</title><meta http-equiv=\"refresh\" content=\"20; URL=/\"></head><body>Update: ");
if (reboot)