From f8773ec50eb42538f3391497c45e8b2486b11dd2 Mon Sep 17 00:00:00 2001 From: mvdbro Date: Wed, 16 Aug 2017 16:51:29 +0200 Subject: [PATCH] R151 --- src/ArduinoEasy.ino | 2 +- src/WebServer.ino | 6 ++++-- src/__ReleaseNotes.ino | 11 ++++++++++- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/ArduinoEasy.ino b/src/ArduinoEasy.ino index cbd0307..fb94bc8 100644 --- a/src/ArduinoEasy.ino +++ b/src/ArduinoEasy.ino @@ -74,7 +74,7 @@ #define socketdebug false #define ARDUINO_PROJECT_PID 2016110201L #define VERSION 2 -#define BUILD 150 +#define BUILD 151 #define BUILD_NOTES "" #define NODE_TYPE_ID_ESP_EASY_STD 1 diff --git a/src/WebServer.ino b/src/WebServer.ino index 2527fc3..cfbda34 100644 --- a/src/WebServer.ino +++ b/src/WebServer.ino @@ -1894,7 +1894,9 @@ boolean handle_custom(EthernetClient client, String path) { { if (Nodes[x].ip[0] != 0 || x == Settings.Unit) { - String name = String(x); + String name = String(x) + F(" - "); + if (x == Settings.Unit) + name += Settings.Name; addSelector_Item(reply, name, x, choice == x, false, F("")); } } @@ -1952,7 +1954,7 @@ boolean handle_custom(EthernetClient client, String path) { if (path.startsWith(F("dashboard"))) { // if the custom page does not exist, create a basic task value overview page in case of dashboard request... - reply += F(""); + reply += F(""); reply += F(""); for (byte x = 0; x < TASKS_MAX; x++) { diff --git a/src/__ReleaseNotes.ino b/src/__ReleaseNotes.ino index f283444..088fe29 100644 --- a/src/__ReleaseNotes.ino +++ b/src/__ReleaseNotes.ino @@ -1,3 +1,13 @@ +// R151 14-08-2017 +// Update Mini Dashboard + +// R150 12-08-2017 +// Fixed some webgui bugs and reduced RAM usage +// Fixed syslog feature +// Added some plugins: Dallas, DHT, DHT12 +// Added authentication for C001 (Base64 lib added) +// Added Mini Dashboard + // R147 08-12-2016 // First alpha version (Proof Of Concept!) // Based on ESP Easy R147 @@ -10,4 +20,3 @@ // Known issues: // WD message was incorrect, failures reported as freemem, freemem is missing, workaround is using string object... // when timed reboot, system does not reboot ??? -