Bump version v12.3.1.2

- Fix shutter default motorstop set to 0 (#17403)
This commit is contained in:
Theo Arends 2022-12-21 15:20:33 +01:00
parent 9fa29c4f39
commit 3555d88bee
5 changed files with 21 additions and 10 deletions

View File

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

View File

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

View File

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

View File

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

View File

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