ESPAsyncWebServer 3.7.8 support

This commit is contained in:
proddy
2025-06-14 09:30:47 +02:00
parent 4bf23e1bda
commit f3cdafe7d0
3 changed files with 15 additions and 14 deletions

View File

@@ -278,10 +278,10 @@ function updateMask(entity: any, de: any, dd: any) {
const old_custom_name = dd.nodes[dd_objIndex].cn;
console.log(
'comparing names, old (' +
old_custom_name +
') with new (' +
new_custom_name +
')'
old_custom_name +
') with new (' +
new_custom_name +
')'
);
if (old_custom_name !== new_custom_name) {
changed = true;
@@ -377,15 +377,15 @@ function check_upgrade(version: string) {
console.log(
'Upgrade this version (' +
THIS_VERSION +
') to dev (' +
dev_version +
') is ' +
(DEV_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
' and to stable (' +
stable_version +
') is ' +
(STABLE_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO')
THIS_VERSION +
') to dev (' +
dev_version +
') is ' +
(DEV_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
' and to stable (' +
stable_version +
') is ' +
(STABLE_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO')
);
data = {
emsesp_version: THIS_VERSION,

View File

@@ -102,7 +102,7 @@ board_build.filesystem = littlefs
lib_deps =
bblanchon/ArduinoJson @ 7.4.1
ESP32Async/AsyncTCP @ 3.4.4
ESP32Async/ESPAsyncWebServer @ 3.7.7
ESP32Async/ESPAsyncWebServer @ 3.7.8
https://github.com/emsesp/EMS-ESP-Modules.git @ 1.0.7
;

View File

@@ -2,6 +2,7 @@
#define HttpEndpoint_h
#include <functional>
#include <WiFi.h>
#include <ESPAsyncWebServer.h>
#include "SecurityManager.h"