From d53130ce308456a6999a31663b870568451b1df1 Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Thu, 24 Feb 2022 10:10:32 +0100 Subject: [PATCH] Downgrade Arduino core to v1 --- .vscode/extensions.json | 19 +++++++++++-------- CHANGLELOG.md | 9 +++++++-- user_setups/esp32/_esp32.ini | 6 +++--- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index d304a5ef..d2311d2d 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,8 +1,11 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "ms-vscode.cpptools", - "platformio.platformio-ide" - ] -} +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "ms-vscode.cpptools", + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/CHANGLELOG.md b/CHANGLELOG.md index e77b0212..e94a3b51 100644 --- a/CHANGLELOG.md +++ b/CHANGLELOG.md @@ -17,6 +17,10 @@ ### Services - Add SimpleFTPServer to easily upload and download files to the plate *(one simultanious connection only)* +### Architecture +- Moved to Arduino 2.0.2 with native LittleFS library +- Moved to ESP-IDF 4.4 with fix for FragAttacks CVEs + ## v0.6.3 @@ -30,6 +34,9 @@ - Hide cursor during `antiburn` and `idle` if the pointer is enabled - Screenshot images now display properly in Safari on macOS/iOS (thanks @masto) +### MQTT +- Remember last `page` id for mqtt messages + ### Objects - `img.src` now accepts both `http` and `https` urls (thanks @htvekov) - `img.src` now accepts `png` and `binary` image urls, PSram is *highly* recommended @@ -53,8 +60,6 @@ - Expose the device URL in discovery message ### Architecture -- Moved to Arduino 2.0.2 with native LittleFS library -- Moved to ESP-IDF 4.4 with fix for FragAttacks CVEs - Prepare support for ESP32-S2 - **Breaking:** Removed support for ESP8266! diff --git a/user_setups/esp32/_esp32.ini b/user_setups/esp32/_esp32.ini index 2ca0862b..f944695f 100644 --- a/user_setups/esp32/_esp32.ini +++ b/user_setups/esp32/_esp32.ini @@ -105,19 +105,19 @@ extra_scripts = ${esp32.extra_scripts} [esp32_4mb] -extends = exp32, arduino_esp32_v2 +extends = exp32, arduino_esp32_v1 board_upload.flash_size=4MB board_upload.maximum_size = 4194304 board_build.partitions = user_setups/esp32/partitions_4MB.csv [esp32_8mb] -extends = exp32, arduino_esp32_v2 +extends = exp32, arduino_esp32_v1 board_upload.flash_size=8MB board_upload.maximum_size = 8388608 board_build.partitions = user_setups/esp32/partitions_8MB.csv [esp32_16mb] -extends = exp32, arduino_esp32_v2 +extends = exp32, arduino_esp32_v1 board_upload.flash_size = 16MB board_upload.maximum_size = 16777216 board_build.partitions = user_setups/esp32/partitions_16MB.csv