Просмотр исходного кода

Merge esp_flasher from https://github.com/0xchocolate/flipperzero-esp-flasher

Willy-JL 2 лет назад
Родитель
Сommit
642e0ef535

+ 13 - 0
esp_flasher/.github/FUNDING.yml

@@ -0,0 +1,13 @@
+# These are supported funding model platforms
+
+github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
+patreon: # Replace with a single Patreon username
+open_collective: # Replace with a single Open Collective username
+ko_fi: cococode
+tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
+community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
+liberapay: # Replace with a single Liberapay username
+issuehunt: # Replace with a single IssueHunt username
+otechie: # Replace with a single Otechie username
+lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
+custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

+ 4 - 1
esp_flasher/ReadMe.md

@@ -52,7 +52,10 @@ For app feedback, bugs, and feature requests, please [create an issue here](http
 
 You can find me (0xchocolate) on discord as @cococode.
 
-If you'd like to donate to the app development effort:  
+If you'd like to donate to the app development effort:
+
+[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/O4O1R7X6K)
+
 **ETH**: `0xf32A1F0CD6122C97d8953183E53cB889cc087C9b`  
 **BTC**: `bc1qtw7s25cwdkuaups22yna8sttfxn0usm2f35wc3`
 

+ 1 - 1
esp_flasher/application.fam

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

+ 5 - 0
esp_flasher/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/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;