From e11cc4947b228db74084faaa41172669dbf84344 Mon Sep 17 00:00:00 2001 From: 0xchocolate <109879152+0xchocolate@users.noreply.github.com> Date: Sat, 3 Aug 2024 10:41:04 -0700 Subject: [PATCH 1/2] Fix fap build (#28) * Update application.fam Duplicate cdefines to fix new toolchain errors * Update version --- application.fam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application.fam b/application.fam index 33abcfd..4b95c1f 100644 --- a/application.fam +++ b/application.fam @@ -1,7 +1,7 @@ App( appid="esp_flasher", name="ESP Flasher", - fap_version=(1,5), + fap_version=(1,6), apptype=FlipperAppType.EXTERNAL, entry_point="esp_flasher_app", requires=["gui"], @@ -25,6 +25,6 @@ App( cdefines=["SERIAL_FLASHER_INTERFACE_UART=1", "MD5_ENABLED=1", "SERIAL_FLASHER_WRITE_BLOCK_RETRIES=10"], ), ], - cdefines=["SERIAL_FLASHER_INTERFACE_UART=1"], + cdefines=["SERIAL_FLASHER_INTERFACE_UART=1", "MD5_ENABLED=1", "SERIAL_FLASHER_WRITE_BLOCK_RETRIES=10"], fap_icon_assets="assets", ) From f4ee1505dc11864f63d70efdeddfce7e295042c3 Mon Sep 17 00:00:00 2001 From: 0xchocolate <109879152+0xchocolate@users.noreply.github.com> Date: Tue, 20 Aug 2024 08:27:32 -0700 Subject: [PATCH 2/2] Update changelog.md for app catalog --- docs/changelog.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 0bab426..54e9717 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,10 +1,15 @@ -## v1.5 +## v1.6 -Fixes app to build with the new API. Thanks @Willy-JL for doing the hard part! +No functional changes, just fixing the build after apparent toolchain updates on dev. <3 @0xchocolate (cococode) +## v1.5 + +Fixes app to build with the new API. Thanks @Willy-JL for doing the hard part! + + ## v1.4 Turbo mode (gotta go fast)! The app now supports flashing as fast as possible (921600 baud with built-in retries). In my testing, this sped up a 1:37min flash to 23 seconds. Now we can't go back to the slow way!