From 24372207de0b5a083e0f205afd702a4476ee72e8 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 4 Mar 2024 11:58:46 +0100 Subject: [PATCH] Update changelogs - Elevate some messages --- CHANGELOG.md | 4 ++-- RELEASENOTES.md | 2 ++ tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino | 4 ++-- tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7aa993c..74a4d7c7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file. ## [13.4.0.2] ### Added - Berry `path.rename()` (#20840) -- HASPmota support for spangroup (styled text) -- HASPmota support for led +- HASPmota support for spangroup (styled text) (#20852) +- HASPmota support for led (#20857) ### Breaking Changed - Drop support for old (insecure) fingerprint format (#20842) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b9dec6ee3..e7d452df6 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -141,6 +141,8 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - LVGL make lv_touch_3_buttons more responsive [#20728](https://github.com/arendst/Tasmota/issues/20728) - HASPmota fix and improve demo with pixel-perfect fonts [#20734](https://github.com/arendst/Tasmota/issues/20734) - HASPmota more attributes [#20744](https://github.com/arendst/Tasmota/issues/20744) +- HASPmota support for spangroup (styled text) [#20852](https://github.com/arendst/Tasmota/issues/20852) +- HASPmota support for led [#20857](https://github.com/arendst/Tasmota/issues/20857) ### Fixed - Shutter inverted using internal commands [#20752](https://github.com/arendst/Tasmota/issues/20752) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino b/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino index 8295cc45a..97daf3f17 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_50_filesystem.ino @@ -357,7 +357,7 @@ bool TfsFileExists(const char *fname){ bool yes = ffsp->exists(fname); if (!yes) { - AddLog(LOG_LEVEL_DEBUG, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash } return yes; } @@ -431,7 +431,7 @@ bool TfsLoadFile(const char *fname, uint8_t *buf, uint32_t len) { File file = ffsp->open(fname, "r"); if (!file) { - AddLog(LOG_LEVEL_INFO, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("TFS: File '%s' not found"), fname +1); // Skip leading slash return false; } diff --git a/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino b/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino index 87ae122a7..7f11df7a2 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_82_esp32_ethernet.ino @@ -211,13 +211,13 @@ void EthernetInit(void) { if (Settings->eth_type < 7) { // CONFIG_ETH_USE_ESP32_EMAC if (!PinUsed(GPIO_ETH_PHY_MDC) && !PinUsed(GPIO_ETH_PHY_MDIO)) { // && should be || but keep for backward compatibility - AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_ETH "No ETH MDC and ETH MDIO GPIO defined")); + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR(D_LOG_ETH "No ETH MDC and ETH MDIO GPIO defined")); return; } } else { // ETH_SPI_SUPPORTS_CUSTOM if (!PinUsed(GPIO_ETH_PHY_MDC) || !PinUsed(GPIO_ETH_PHY_MDIO) || !PinUsed(GPIO_ETH_PHY_POWER)) { - AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_ETH "No ETH MDC (SPI CS), ETH MDIO (SPI IRQ) and ETH POWER (SPI RST) GPIO defined")); + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR(D_LOG_ETH "No ETH MDC (SPI CS), ETH MDIO (SPI IRQ) and ETH POWER (SPI RST) GPIO defined")); return; } }