Update changelog

This commit is contained in:
Theo Arends 2020-11-07 11:09:16 +01:00
parent 37d74810ba
commit 780db5271c
3 changed files with 9 additions and 0 deletions

View File

@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - Development ## [Unreleased] - Development
## [9.1.0.1] ## [9.1.0.1]
### Added
- Zigbee support for Mi Door and Contact (#9759)
### Changed ### Changed
- Core library from v2.7.4.5 to v2.7.4.7 - Core library from v2.7.4.5 to v2.7.4.7
- Platformio compiler option `no target align` enabled (#9749) - Platformio compiler option `no target align` enabled (#9749)

View File

@ -58,6 +58,9 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota
[Complete list](BUILDS.md) of available feature and sensors. [Complete list](BUILDS.md) of available feature and sensors.
## Changelog v9.1.0.1 ## Changelog v9.1.0.1
### Added
- Zigbee support for Mi Door and Contact (#9759)
### Changed ### Changed
- Core library from v2.7.4.5 to v2.7.4.7 - Core library from v2.7.4.5 to v2.7.4.7
- Platformio compiler option `no target align` enabled (#9749) - Platformio compiler option `no target align` enabled (#9749)

View File

@ -1303,6 +1303,9 @@ void SettingsDelta(void)
SettingsUpdateText(SET_ADC_PARAM1, parameters); SettingsUpdateText(SET_ADC_PARAM1, parameters);
} }
#endif // ESP8266 #endif // ESP8266
if (Settings.version < 0x09010000) {
Settings.dimmer_step = DEFAULT_DIMMER_STEP;
}
Settings.version = VERSION; Settings.version = VERSION;
SettingsSave(1); SettingsSave(1);