From b167955e87b7d38ad04b5d15f246bf4914603e1a Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sun, 26 Jan 2025 15:48:44 +0100 Subject: [PATCH] Change GPIOViewer from v1.6.0 to v1.6.1 (No functional change) --- CHANGELOG.md | 2 ++ RELEASENOTES.md | 3 ++- tasmota/tasmota_xdrv_driver/xdrv_121_gpioviewer.ino | 5 ++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13295e3de..ce627516a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,10 +25,12 @@ All notable changes to this project will be documented in this file. - GPIOViewer from v1.5.9 to v1.6.0 (No functional change) - ESP32 Platform from 2025.01.30 to 2025.01.31 (#22832) - Berry `gpio.pin_mode` frees PWM on pin +- GPIOViewer from v1.6.0 to v1.6.1 (No functional change) ### Fixed - Sonoff SPM `PowerOnState` overrules `SSPMPowerOnState` in mixed 4Relay setup with 4Relay version 1.0.0 - ESP32-Cx compilation fails on Windows (#22832) +- LoraWan decoding of Dragino LDS02 and MerryIoT DW10 (#22880) ### Removed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 09856138c..838172def 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -147,7 +147,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ### Changed - ESP32 Platform from 2024.12.30 to 2025.01.31, Framework (Arduino Core) from v3.1.0.241206 to v3.1.1.250109 and IDF to 5.3.2 [#22832](https://github.com/arendst/Tasmota/issues/22832) -- GPIOViewer from v1.5.6 to v1.6.0 (No functional change) +- GPIOViewer from v1.5.6 to v1.6.1 (No functional change) - Postpone save_data during light animation when fade is Off - Allow negative values for AdcParam/AdcGpio INPUT, TEMP and RANGE parameters [#22809](https://github.com/arendst/Tasmota/issues/22809) - Command `Pixels` has backwards compatible arguments fixing #22755 [#22791](https://github.com/arendst/Tasmota/issues/22791) @@ -160,6 +160,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ### Fixed - Shutter discovery message regression from v14.4.1 [#22730](https://github.com/arendst/Tasmota/issues/22730) +- LoraWan decoding of Dragino LDS02 and MerryIoT DW10 [#22880](https://github.com/arendst/Tasmota/issues/22880) - ESP32-Cx compilation fails on Windows [#22832](https://github.com/arendst/Tasmota/issues/22832) - Sonoff SPM `PowerOnState` overrules `SSPMPowerOnState` in mixed 4Relay setup with 4Relay version 1.0.0 - Webcam compilation with `define USE_WEBCAM` but without `define ENABLE_RTSPSERVER` [#22686](https://github.com/arendst/Tasmota/issues/22686) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_121_gpioviewer.ino b/tasmota/tasmota_xdrv_driver/xdrv_121_gpioviewer.ino index e8190b6b8..6a6bba922 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_121_gpioviewer.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_121_gpioviewer.ino @@ -30,6 +30,9 @@ * GvUrl 1 - Select default url (GV_BASE_URL) * GvUrl https://thelastoutpostworkshop.github.io/microcontroller_devkit/gpio_viewer_1_5/ * + * Note 20250126 + * - GVRelease 1.6.1 (No code change) + * * Note 20250116 * - GVRelease 1.6.0 (No code change) * @@ -83,7 +86,7 @@ #define GV_KEEP_ALIVE 1000 // milliseconds - If no activity after this do a heap size event anyway -const char *GVRelease = "1.6.0"; +const char *GVRelease = "1.6.1"; /*********************************************************************************************/