diff --git a/CHANGELOG.md b/CHANGELOG.md index a17731b8c..f385b74bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,22 +3,28 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - Development -## [12.3.1.1] 20221216 +## [12.3.1.2] +### Added + +### Breaking Changed + +### Changed + +### Fixed +- Shutter default motorstop set to 0 (#17403) + +### Removed + +## [12.3.1.1] 20221221 ### Added - Support for IPv6 DNS records (AAAA) and IPv6 ``Ping`` for ESP32 and ESP8266 (#17417) - Berry support for ``crypto.SHA256`` (#17430) - Support for RGB displays (#17414) - Berry add crypto AES_CTR, HDMAC_SHA256, MD5 -### Breaking Changed - ### Changed - ESP32 Framework (Core) from v2.0.5.3 to v2.0.5.4 (IPv6 support) -### Fixed - -### Removed - ## [Released] ## [12.3.1] 20221216 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 1c083e5bb..1cc51965b 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -107,7 +107,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm [Complete list](BUILDS.md) of available feature and sensors. -## Changelog v12.3.1.1 +## Changelog v12.3.1.2 ### Added - Support for RGB displays [#17414](https://github.com/arendst/Tasmota/issues/17414) - Support for IPv6 DNS records (AAAA) and IPv6 ``Ping`` for ESP32 and ESP8266 [#17417](https://github.com/arendst/Tasmota/issues/17417) @@ -120,5 +120,6 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - TuyaMcu rewrite by btsimonh [#17051](https://github.com/arendst/Tasmota/issues/17051) ### Fixed +- Shutter default motorstop set to 0 [#17403](https://github.com/arendst/Tasmota/issues/17403) ### Removed diff --git a/tasmota/include/tasmota_types.h b/tasmota/include/tasmota_types.h index 5a268a666..5e7d5cd16 100644 --- a/tasmota/include/tasmota_types.h +++ b/tasmota/include/tasmota_types.h @@ -731,7 +731,8 @@ typedef struct { uint16_t artnet_universe; // 734 uint16_t modbus_sbaudrate; // 736 uint16_t shutter_motorstop; // 738 - uint8_t free_esp32_73A[3]; // 73A + + uint8_t free_73A[3]; // 73A uint8_t novasds_startingoffset; // 73D uint8_t web_color[18][3]; // 73E diff --git a/tasmota/include/tasmota_version.h b/tasmota/include/tasmota_version.h index 498e76d8f..1e40104cd 100644 --- a/tasmota/include/tasmota_version.h +++ b/tasmota/include/tasmota_version.h @@ -20,6 +20,6 @@ #ifndef _TASMOTA_VERSION_H_ #define _TASMOTA_VERSION_H_ -const uint32_t VERSION = 0x0C030101; // 12.3.1.1 +const uint32_t VERSION = 0x0C030102; // 12.3.1.2 #endif // _TASMOTA_VERSION_H_ diff --git a/tasmota/tasmota_support/settings.ino b/tasmota/tasmota_support/settings.ino index 4837cbdaa..f5b568f72 100644 --- a/tasmota/tasmota_support/settings.ino +++ b/tasmota/tasmota_support/settings.ino @@ -1611,6 +1611,9 @@ void SettingsDelta(void) { Settings->modbus_sbaudrate = Settings->ex_modbus_sbaudrate; Settings->param[P_SERIAL_SKIP] = 0; } + if (Settings->version < 0x0C030102) { // 12.3.1.2 + Settings->shutter_motorstop = 0; + } Settings->version = VERSION; SettingsSave(1);