diff --git a/wled00/wled00.ino b/wled00/wled00.ino index 49ae7d72..87f2993c 100644 --- a/wled00/wled00.ino +++ b/wled00/wled00.ino @@ -30,7 +30,7 @@ #include "WS2812FX.h" //version in format yymmddb (b = daily build) -#define VERSION 1802222 +#define VERSION 1802231 const String versionString = "0.5.0"; //AP and OTA default passwords (change them!) diff --git a/wled00/wled01_eeprom.ino b/wled00/wled01_eeprom.ino index b377ce79..b3e9d3e9 100644 --- a/wled00/wled01_eeprom.ino +++ b/wled00/wled01_eeprom.ino @@ -291,6 +291,10 @@ void loadSettingsFromEEPROM(bool first) if (EEPROM.read(i) == 0) break; cssFont += char(EEPROM.read(i)); } + } else //keep receiving notification behavior from pre0.5.0 after update + { + receiveNotificationColor = receiveNotificationBrightness; + receiveNotificationEffects = receiveNotificationBrightness; } receiveNotifications = (receiveNotificationBrightness || receiveNotificationColor || receiveNotificationEffects); diff --git a/wled00/wled02_xml.ino b/wled00/wled02_xml.ino index f71f65f4..5cbff75d 100644 --- a/wled00/wled02_xml.ino +++ b/wled00/wled02_xml.ino @@ -148,7 +148,7 @@ String getSettings(uint8_t subPage) resp += ds + "CSECR" + v + col_sec_s[0] +";"; resp += ds + "CSECG" + v + col_sec_s[1] +";"; resp += ds + "CSECB" + v + col_sec_s[2] +";"; - resp += ds + "CSECW" + v + white_s +";"; + resp += ds + "CSECW" + v + white_sec_s +";"; resp += ds + "BOOTN" + c + turnOnAtBoot +";"; resp += ds + "BOOTP" + v + bootPreset +";"; resp += ds + "FXDEF" + v + effectDefault +";";