MX 2 лет назад
Родитель
Сommit
f39939b04a
3 измененных файлов с 7 добавлено и 2 удалено
  1. 1 1
      application.fam
  2. 5 0
      docs/changelog.md
  3. 1 1
      esp_flasher_app.h

+ 1 - 1
application.fam

@@ -1,7 +1,7 @@
 App(
     appid="esp_flasher",
     name="ESP Flasher",
-    fap_version=(1,2),
+    fap_version=(1,3),
     apptype=FlipperAppType.EXTERNAL,
     entry_point="esp_flasher_app",
     requires=["gui"],

+ 5 - 0
docs/changelog.md

@@ -1,3 +1,8 @@
+## v1.3
+
+No functionality changes. Fixed the build by removing deprecated API calls that weren't needed.
+
+
 ## v1.2
 
 Firmware switching! The app now supports flashing two different firmware apps to slot A and slot B and uses the otadata partition (initialized by boot_app0) to switch between them. Make sure your firmwares are compiled to use the same partition table to avoid issues!

+ 1 - 1
esp_flasher_app.h

@@ -4,7 +4,7 @@
 extern "C" {
 #endif
 
-#define ESP_FLASHER_APP_VERSION "v1.2"
+#define ESP_FLASHER_APP_VERSION "v1.3"
 
 typedef struct EspFlasherApp EspFlasherApp;