From 780db5271c0f91265c6d68b1dddb2308768e067e Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sat, 7 Nov 2020 11:09:16 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 3 +++ RELEASENOTES.md | 3 +++ tasmota/settings.ino | 3 +++ 3 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d15684b10..b3e148445 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - Development ## [9.1.0.1] +### Added +- Zigbee support for Mi Door and Contact (#9759) + ### Changed - Core library from v2.7.4.5 to v2.7.4.7 - Platformio compiler option `no target align` enabled (#9749) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 7f801dfa2..9ab1c99f0 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -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. ## Changelog v9.1.0.1 +### Added +- Zigbee support for Mi Door and Contact (#9759) + ### Changed - Core library from v2.7.4.5 to v2.7.4.7 - Platformio compiler option `no target align` enabled (#9749) diff --git a/tasmota/settings.ino b/tasmota/settings.ino index dce815948..0bf23a3c0 100644 --- a/tasmota/settings.ino +++ b/tasmota/settings.ino @@ -1303,6 +1303,9 @@ void SettingsDelta(void) SettingsUpdateText(SET_ADC_PARAM1, parameters); } #endif // ESP8266 + if (Settings.version < 0x09010000) { + Settings.dimmer_step = DEFAULT_DIMMER_STEP; + } Settings.version = VERSION; SettingsSave(1);