mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-23 10:46:31 +00:00
Bump version v12.3.1.2
- Fix shutter default motorstop set to 0 (#17403)
This commit is contained in:
parent
9fa29c4f39
commit
3555d88bee
20
CHANGELOG.md
20
CHANGELOG.md
@ -3,22 +3,28 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
## [Unreleased] - Development
|
## [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
|
### Added
|
||||||
- Support for IPv6 DNS records (AAAA) and IPv6 ``Ping`` for ESP32 and ESP8266 (#17417)
|
- Support for IPv6 DNS records (AAAA) and IPv6 ``Ping`` for ESP32 and ESP8266 (#17417)
|
||||||
- Berry support for ``crypto.SHA256`` (#17430)
|
- Berry support for ``crypto.SHA256`` (#17430)
|
||||||
- Support for RGB displays (#17414)
|
- Support for RGB displays (#17414)
|
||||||
- Berry add crypto AES_CTR, HDMAC_SHA256, MD5
|
- Berry add crypto AES_CTR, HDMAC_SHA256, MD5
|
||||||
|
|
||||||
### Breaking Changed
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- ESP32 Framework (Core) from v2.0.5.3 to v2.0.5.4 (IPv6 support)
|
- ESP32 Framework (Core) from v2.0.5.3 to v2.0.5.4 (IPv6 support)
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
## [Released]
|
## [Released]
|
||||||
|
|
||||||
## [12.3.1] 20221216
|
## [12.3.1] 20221216
|
||||||
|
@ -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.
|
[Complete list](BUILDS.md) of available feature and sensors.
|
||||||
|
|
||||||
## Changelog v12.3.1.1
|
## Changelog v12.3.1.2
|
||||||
### Added
|
### Added
|
||||||
- Support for RGB displays [#17414](https://github.com/arendst/Tasmota/issues/17414)
|
- 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)
|
- 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)
|
- TuyaMcu rewrite by btsimonh [#17051](https://github.com/arendst/Tasmota/issues/17051)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- Shutter default motorstop set to 0 [#17403](https://github.com/arendst/Tasmota/issues/17403)
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
@ -731,7 +731,8 @@ typedef struct {
|
|||||||
uint16_t artnet_universe; // 734
|
uint16_t artnet_universe; // 734
|
||||||
uint16_t modbus_sbaudrate; // 736
|
uint16_t modbus_sbaudrate; // 736
|
||||||
uint16_t shutter_motorstop; // 738
|
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 novasds_startingoffset; // 73D
|
||||||
uint8_t web_color[18][3]; // 73E
|
uint8_t web_color[18][3]; // 73E
|
||||||
|
@ -20,6 +20,6 @@
|
|||||||
#ifndef _TASMOTA_VERSION_H_
|
#ifndef _TASMOTA_VERSION_H_
|
||||||
#define _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_
|
#endif // _TASMOTA_VERSION_H_
|
||||||
|
@ -1611,6 +1611,9 @@ void SettingsDelta(void) {
|
|||||||
Settings->modbus_sbaudrate = Settings->ex_modbus_sbaudrate;
|
Settings->modbus_sbaudrate = Settings->ex_modbus_sbaudrate;
|
||||||
Settings->param[P_SERIAL_SKIP] = 0;
|
Settings->param[P_SERIAL_SKIP] = 0;
|
||||||
}
|
}
|
||||||
|
if (Settings->version < 0x0C030102) { // 12.3.1.2
|
||||||
|
Settings->shutter_motorstop = 0;
|
||||||
|
}
|
||||||
|
|
||||||
Settings->version = VERSION;
|
Settings->version = VERSION;
|
||||||
SettingsSave(1);
|
SettingsSave(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user