From 7e81709eb83d5a13c0b838c94c23a0e97cbce7d3 Mon Sep 17 00:00:00 2001 From: lumapu Date: Sun, 21 Jan 2024 14:00:44 +0100 Subject: [PATCH] 0.8.61 * add favicon to header * improved NRF communication * merge PR: provide localized times to display mono classes #1376 * merge PR: Bypass OOM-Crash on minimal version & history access #1378 * merge PR: Add some REST Api Endpoints to avail_endpoints #1380 --- src/CHANGES.md | 3 +++ src/web/RestApi.h | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/CHANGES.md b/src/CHANGES.md index 2c52b9911..d37c7eb68 100644 --- a/src/CHANGES.md +++ b/src/CHANGES.md @@ -3,6 +3,9 @@ ## 0.8.61 - 2024-01-21 * add favicon to header * improved NRF communication +* merge PR: provide localized times to display mono classes #1376 +* merge PR: Bypass OOM-Crash on minimal version & history access #1378 +* merge PR: Add some REST Api Endpoints to avail_endpoints #1380 ## 0.8.60 - 2024-01-20 * merge PR: non blocking nRF loop #1371 diff --git a/src/web/RestApi.h b/src/web/RestApi.h index 003a0592c..98e0afd21 100644 --- a/src/web/RestApi.h +++ b/src/web/RestApi.h @@ -206,8 +206,10 @@ class RestApi { #endif /* !defined(ETHERNET) */ ep[F("system")] = url + F("system"); ep[F("live")] = url + F("live"); + #if defined(ENABLE_HISTORY) ep[F("powerHistory")] = url + F("powerHistory"); ep[F("yieldDayHistory")] = url + F("yieldDayHistory"); + #endif }