diff --git a/src/CHANGES.md b/src/CHANGES.md index 4e5900ad..f4c89d23 100644 --- a/src/CHANGES.md +++ b/src/CHANGES.md @@ -1,5 +1,9 @@ # Development Changes +## 0.6.7 - 2023-04-13 +* merge PR #883, improved store of settings and javascript, thx @tastendruecker123 +* support `.` and `,` as floating point seperator in setup #881 + ## 0.6.6 - 2023-04-12 * increased distance for `import` button in mobile view #879 * changed `led_high_active` to `bool` #879 diff --git a/src/defines.h b/src/defines.h index b3a961a1..1ace50df 100644 --- a/src/defines.h +++ b/src/defines.h @@ -13,7 +13,7 @@ //------------------------------------- #define VERSION_MAJOR 0 #define VERSION_MINOR 6 -#define VERSION_PATCH 6 +#define VERSION_PATCH 7 //------------------------------------- typedef struct { diff --git a/src/web/html/api.js b/src/web/html/api.js index cdc9e748..13ca50b5 100644 --- a/src/web/html/api.js +++ b/src/web/html/api.js @@ -103,11 +103,9 @@ function parseVersion(obj) { } function parseESP(obj) { - if(document.getElementById("esp_type").childNodes.length < 1) { - document.getElementById("esp_type").append( - document.createTextNode("Board: " + obj["esp_type"]) - ); - } + document.getElementById("esp_type").replaceChildren( + document.createTextNode("Board: " + obj["esp_type"]) + ); } function parseRssi(obj) { diff --git a/src/web/html/save.html b/src/web/html/save.html index f3b1896d..4c924c40 100644 --- a/src/web/html/save.html +++ b/src/web/html/save.html @@ -13,7 +13,6 @@ {#HTML_FOOTER} -
+ {#HTML_NAV}