mirror of https://github.com/arendst/Tasmota.git
Update changelogs
This commit is contained in:
parent
4e6ba4fccc
commit
7824378755
|
@ -7,7 +7,8 @@ All notable changes to this project will be documented in this file.
|
|||
### Added
|
||||
- Enabled watchdog for ESP32 and variants (#21422)
|
||||
- Optional command ``WebRun`` (as WebQuery extension) (#21364)
|
||||
- Knx dimmer and color (#21434)
|
||||
- Support for Knx dimmer and color (#21434)
|
||||
- Support for Matter 1.3 Water leak detectors (#21456)
|
||||
|
||||
### Breaking Changed
|
||||
|
||||
|
@ -23,8 +24,10 @@ All notable changes to this project will be documented in this file.
|
|||
- Watchdog restart or freeze if ``displaytext`` is more than 128 characters (#21401)
|
||||
- Avoid connection errors when switching to safeboot to upload OTA firmware (#21428)
|
||||
- Berry Leds matrix alternate more and error about 'bri' attribute (#21431)
|
||||
- Wrong timeout in `WebQuery` and `webclient` since Core3
|
||||
- Zigbee crash when removing `ZbName`
|
||||
- Wrong timeout in `WebQuery` and `webclient` since Core3 (#21442)
|
||||
- Webradio crash with invalid url (#21446)
|
||||
- Zigbee crash when removing `ZbName` (#21449)
|
||||
- ESP32 BLE fix scanning (#21451)
|
||||
|
||||
### Removed
|
||||
- Support of old insecure fingerprint algorithm. Deprecated since v8.4.0 (#21417)
|
||||
|
|
|
@ -122,8 +122,9 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
|||
## Changelog v14.0.0.1
|
||||
### Added
|
||||
- Optional command ``WebRun`` (as WebQuery extension) [#21364](https://github.com/arendst/Tasmota/issues/21364)
|
||||
- Knx dimmer and color [#21434](https://github.com/arendst/Tasmota/issues/21434)
|
||||
- Support for Knx dimmer and color [#21434](https://github.com/arendst/Tasmota/issues/21434)
|
||||
- Enabled watchdog for ESP32 and variants [#21422](https://github.com/arendst/Tasmota/issues/21422)
|
||||
- Support for Matter 1.3 Water leak detectors [#21456](https://github.com/arendst/Tasmota/issues/21456)
|
||||
|
||||
### Breaking Changed
|
||||
|
||||
|
@ -137,7 +138,11 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
|||
### Fixed
|
||||
- Domoticz re-subscribe on MQTT reconnect. Regression from v13.4.0.3 [#21281](https://github.com/arendst/Tasmota/issues/21281)
|
||||
- Watchdog restart or freeze if ``displaytext`` is more than 128 characters [#21401](https://github.com/arendst/Tasmota/issues/21401)
|
||||
- Wrong timeout in `WebQuery` and `webclient` since Core3 [#21442](https://github.com/arendst/Tasmota/issues/21442)
|
||||
- Zigbee crash when removing `ZbName` [#21449](https://github.com/arendst/Tasmota/issues/21449)
|
||||
- Avoid connection errors when switching to safeboot to upload OTA firmware [#21428](https://github.com/arendst/Tasmota/issues/21428)
|
||||
- ESP32 BLE fix scanning [#21451](https://github.com/arendst/Tasmota/issues/21451)
|
||||
- Webradio crash with invalid url [#21446](https://github.com/arendst/Tasmota/issues/21446)
|
||||
- Berry Leds matrix alternate more and error about 'bri' attribute [#21431](https://github.com/arendst/Tasmota/issues/21431)
|
||||
|
||||
### Removed
|
||||
|
|
|
@ -700,6 +700,10 @@
|
|||
//#define USE_CANSNIFFER // Add support for can bus sniffer using MCP2515 (+5k code)
|
||||
#define USE_MCP23XXX_DRV // [I2cDriver77] Enable MCP23xxx support as virtual switch/button/relay (+3k(I2C)/+5k(SPI) code)
|
||||
#define USE_SHELLY_PRO // Add support for Shelly Pro
|
||||
#define USE_SPI_LORA // Add support for LoRaSend and LoRaCommand (+4k code)
|
||||
#define USE_LORA_SX126X // Add driver support for LoRa on SX126x based devices like LiliGo T3S3 Lora32 (+16k code)
|
||||
#define USE_LORA_SX127X // Add driver support for LoRa on SX127x based devices like M5Stack LoRa868, RFM95W (+5k code)
|
||||
#define USE_LORAWAN_BRIDGE // Add support for LoRaWan bridge (+8k code)
|
||||
|
||||
#define USE_MHZ19 // Add support for MH-Z19 CO2 sensor (+2k code)
|
||||
#define USE_SENSEAIR // Add support for SenseAir K30, K70 and S8 CO2 sensor (+2k3 code)
|
||||
|
|
Loading…
Reference in New Issue