Update changelogs

This commit is contained in:
Theo Arends 2023-12-05 10:07:02 +01:00
parent e00d5ff914
commit 728f91b602
3 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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);