diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fcd5022e..58bea995f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. ## [13.2.0.3] ### Added - DeepSleep support through TIMERS (#20117) -- Command ``WebCanvas linear-gradient(#FF0018 7%,#FFA52C,#FFFF41,#008018,#0000F9,#86007D 93%)`` to set GUI canvas +- Command ``WebCanvas linear-gradient(#F02 7%,#F93,#FF4,#082,#00F,#708 93%)`` to set GUI canvas ### Breaking Changed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 91520a37e..5e421998d 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -119,7 +119,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ## Changelog v13.2.0.3 ### Added - Command ``GpioRead`` to show input state [#19810](https://github.com/arendst/Tasmota/issues/19810) -- Command ``WebCanvas linear-gradient(#FF0018 7%,#FFA52C,#FFFF41,#008018,#0000F9,#86007D 93%)`` to set GUI canvas +- Command ``WebCanvas linear-gradient(#F02 7%,#F93,#FF4,#082,#00F,#708 93%)`` to set GUI canvas - I2C bus2 support to iAQ core sensor [#19799](https://github.com/arendst/Tasmota/issues/19799) - I2C bus2 support to HTU temperature and humidity sensor - I2C bus2 support to BH1750 ambient light sensor diff --git a/tasmota/tasmota_support/settings.ino b/tasmota/tasmota_support/settings.ino index 254a0476d..987192320 100644 --- a/tasmota/tasmota_support/settings.ino +++ b/tasmota/tasmota_support/settings.ino @@ -1762,11 +1762,13 @@ void SettingsDelta(void) { if (Settings->version < 0x0D000003) { // 13.0.0.3 Settings->battery_level_percent = 101; } +/* #if (LANGUAGE_LCID == 1049) if (Settings->version < 0x0D020003) { // 13.2.0.3 SettingsUpdateText(SET_CANVAS, PSTR("linear-gradient(#F02 7%,#F93,#FF4,#082,#00F,#708 93%)")); } #endif +*/ Settings->version = TASMOTA_VERSION; SettingsSave(1);