Update change logs
This commit is contained in:
parent
e5a6cad5e3
commit
07a1a982cd
@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
|
||||
## [15.1.0.3]
|
||||
### Added
|
||||
- Support for ESP32-P4 rev.3 (#24146)
|
||||
- Support for Analog Gauges (#24153)
|
||||
|
||||
### Breaking Changed
|
||||
|
||||
@ -15,6 +16,7 @@ All notable changes to this project will be documented in this file.
|
||||
### Fixed
|
||||
- ESP32-P4 Hosted MCU updated to v2.6.6 solving WiFi boot issues (#24146)
|
||||
- ESP32-Solo1 using pre-compiled Arduino libraries (#24146)
|
||||
- PCA9685 V2 driver PWMTO fading logic and overflow (#24159)
|
||||
|
||||
### Removed
|
||||
|
||||
|
||||
@ -115,6 +115,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
||||
## Changelog v15.1.0.3
|
||||
### Added
|
||||
- Support for ESP32-P4 rev.3 [#24146](https://github.com/arendst/Tasmota/issues/24118)
|
||||
- Support for Analog Gauges [#24153](https://github.com/arendst/Tasmota/issues/24153)
|
||||
- Commands `DaliSend` and `DaliQuery` allow extended commands with prefix for DeviceType defaulting to DT6
|
||||
- ESP8266 GPIOViewer memory map if enabled with `#define GV_USE_ESPINFO`
|
||||
- HostedMCU file update using command `HostedLoad <version>|<filename>`
|
||||
@ -142,6 +143,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
||||
- InfluxDb receives IPAddress as a value regression from v15.0.1.3 [#24031](https://github.com/arendst/Tasmota/issues/24031)
|
||||
- Scripter UDP and switch case [#24060](https://github.com/arendst/Tasmota/issues/24060)
|
||||
- TuyaMCU v1 soft lock when WIFI_SELECT / WIFI_RESET is initiated [#24063](https://github.com/arendst/Tasmota/issues/24063)
|
||||
- PCA9685 V2 driver PWMTO fading logic and overflow [#24159](https://github.com/arendst/Tasmota/issues/24159)
|
||||
- DALI protocol errors
|
||||
- TLS fix ECDSA and add `SetOption165 1` to enable ECDSA in addition to RSA [#24000](https://github.com/arendst/Tasmota/issues/24000)
|
||||
- ESP32-P4 Hosted MCU updated to v2.6.6 solving WiFi boot issues [#24146](https://github.com/arendst/Tasmota/issues/24118)
|
||||
|
||||
@ -947,7 +947,7 @@ constexpr uint32_t feature[] = {
|
||||
0x00004000 | // xnrg_25_v9240.ino
|
||||
#endif
|
||||
#ifdef USE_TELNET
|
||||
0x00008000 | // xdrv_80_telnet.ino
|
||||
0x00008000 | // xdrv_78_telnet.ino
|
||||
#endif
|
||||
#ifdef USE_XYZMODEM
|
||||
0x00010000 | // xdrv_120_xyzmodem.ino
|
||||
@ -958,7 +958,9 @@ constexpr uint32_t feature[] = {
|
||||
#if defined(USE_I2C) && defined(USE_AP33772S)
|
||||
0x00040000 | // xdrv_119_i2c_ap33772s
|
||||
#endif
|
||||
// 0x00080000 | //
|
||||
#ifdef USE_VID6608
|
||||
0x00080000 | // xdrv_92_vid6608.ino
|
||||
#endif
|
||||
// 0x00100000 | //
|
||||
// 0x00200000 | //
|
||||
// 0x00400000 | //
|
||||
|
||||
@ -312,7 +312,7 @@ a_features = [[
|
||||
"USE_SPI_LORA","USE_SPL06_007","USE_QMP6988","USE_WOOLIIS",
|
||||
"USE_HX711_M5SCALES","USE_RX8010","USE_PCF85063","USE_ESP32_TWAI",
|
||||
"USE_C8_CO2_5K","USE_WIZMOTE","USE_V9240","USE_TELNET",
|
||||
"USE_XYZMODEM","USE_WIREGUARD","USE_AP33772S","",
|
||||
"USE_XYZMODEM","USE_WIREGUARD","USE_AP33772S","USE_VID6608",
|
||||
"","","","",
|
||||
"","","","",
|
||||
"","","",""
|
||||
@ -343,7 +343,7 @@ else:
|
||||
obj = json.load(fp)
|
||||
|
||||
def StartDecode():
|
||||
print ("\n*** decode-status.py v14.6.0.2 by Theo Arends and Jacek Ziolkowski ***")
|
||||
print ("\n*** decode-status.py v15.1.0.3 by Theo Arends and Jacek Ziolkowski ***")
|
||||
|
||||
# print("Decoding\n{}".format(obj))
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user