diff --git a/src/ArduinoEasy.ino b/src/ArduinoEasy.ino index 2a70ec6..e1053c9 100644 --- a/src/ArduinoEasy.ino +++ b/src/ArduinoEasy.ino @@ -76,7 +76,7 @@ #define socketdebug false #define ARDUINO_PROJECT_PID 2016110201L #define VERSION 2 -#define BUILD 152 +#define BUILD 153 #define BUILD_NOTES "" #define NODE_TYPE_ID_ESP_EASY_STD 1 diff --git a/src/Networking.ino b/src/Networking.ino index 9c4cac7..c32f848 100644 --- a/src/Networking.ino +++ b/src/Networking.ino @@ -371,6 +371,7 @@ void sendSysInfoUDP(byte repeats) Nodes[Settings.Unit].ip[x] = ip[x]; Nodes[Settings.Unit].age = 0; Nodes[Settings.Unit].build = Settings.Build; + Nodes[Settings.Unit].nodeType = NODE_TYPE_ID; } } diff --git a/src/WebServer.ino b/src/WebServer.ino index 44b9edc..9029e64 100644 --- a/src/WebServer.ino +++ b/src/WebServer.ino @@ -279,7 +279,7 @@ void handle_root(EthernetClient client, String &post) { reply += printWebString; reply += F("
"); - reply += F("
System InfoValueSystem InfoValue"); + reply += F("
System InfoValueSystem InfoValue"); reply += F("
Unit:"); reply += Settings.Unit; @@ -336,9 +336,9 @@ void handle_root(EthernetClient client, String &post) { reply = ""; #if FEATURE_NODELIST_NAMES - reply += F("
Node List:NameBuildTypeIPAge
"); + reply += F("
Node List:NameBuildTypeIPAge"); #else - reply += F("
Node List:BuildTypeIPAge
"); + reply += F("
Node List:BuildTypeIPAge"); #endif for (byte x = 0; x < UNIT_MAX; x++) { diff --git a/src/__ReleaseNotes.ino b/src/__ReleaseNotes.ino index 375fcdb..b242797 100644 --- a/src/__ReleaseNotes.ino +++ b/src/__ReleaseNotes.ino @@ -1,3 +1,7 @@ +// R153 +// Added nodetype to self. +// Minor cosmetic GUI fixes + // R152 21-08-2017 // Fixed a bug with getting NTP time when nodelist is active and fixed a socket issue when combined with MQTT // Dummy WebServer class to mimic WebServer.arg calls from plugins