mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
ESPAsyncWebServer 3.7.8 support
This commit is contained in:
@@ -278,10 +278,10 @@ function updateMask(entity: any, de: any, dd: any) {
|
|||||||
const old_custom_name = dd.nodes[dd_objIndex].cn;
|
const old_custom_name = dd.nodes[dd_objIndex].cn;
|
||||||
console.log(
|
console.log(
|
||||||
'comparing names, old (' +
|
'comparing names, old (' +
|
||||||
old_custom_name +
|
old_custom_name +
|
||||||
') with new (' +
|
') with new (' +
|
||||||
new_custom_name +
|
new_custom_name +
|
||||||
')'
|
')'
|
||||||
);
|
);
|
||||||
if (old_custom_name !== new_custom_name) {
|
if (old_custom_name !== new_custom_name) {
|
||||||
changed = true;
|
changed = true;
|
||||||
@@ -377,15 +377,15 @@ function check_upgrade(version: string) {
|
|||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
'Upgrade this version (' +
|
'Upgrade this version (' +
|
||||||
THIS_VERSION +
|
THIS_VERSION +
|
||||||
') to dev (' +
|
') to dev (' +
|
||||||
dev_version +
|
dev_version +
|
||||||
') is ' +
|
') is ' +
|
||||||
(DEV_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
|
(DEV_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
|
||||||
' and to stable (' +
|
' and to stable (' +
|
||||||
stable_version +
|
stable_version +
|
||||||
') is ' +
|
') is ' +
|
||||||
(STABLE_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO')
|
(STABLE_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO')
|
||||||
);
|
);
|
||||||
data = {
|
data = {
|
||||||
emsesp_version: THIS_VERSION,
|
emsesp_version: THIS_VERSION,
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ board_build.filesystem = littlefs
|
|||||||
lib_deps =
|
lib_deps =
|
||||||
bblanchon/ArduinoJson @ 7.4.1
|
bblanchon/ArduinoJson @ 7.4.1
|
||||||
ESP32Async/AsyncTCP @ 3.4.4
|
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
|
https://github.com/emsesp/EMS-ESP-Modules.git @ 1.0.7
|
||||||
|
|
||||||
;
|
;
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
#define HttpEndpoint_h
|
#define HttpEndpoint_h
|
||||||
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <WiFi.h>
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
|
|
||||||
#include "SecurityManager.h"
|
#include "SecurityManager.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user