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

AVR_ISP: Update API v58.0 (#162)

Co-authored-by: あく <alleteam@gmail.com>
Skorpionm 1 год назад
Родитель
Сommit
bedc994e58
4 измененных файлов с 7 добавлено и 3 удалено
  1. 4 0
      .catalog/changelog.md
  2. 1 1
      application.fam
  3. 1 1
      helpers/avr_isp_types.h
  4. 1 1
      scenes/avr_isp_scene_input_name.c

+ 4 - 0
.catalog/changelog.md

@@ -0,0 +1,4 @@
+## 1.1
+ - Updade API v58.0
+## 1.0
+ - Initial release

+ 1 - 1
application.fam

@@ -6,7 +6,7 @@ App(
     requires=["gui"],
     stack_size=4 * 1024,
     fap_description="Application for flashing AVR microcontrollers",
-    fap_version="1.0",
+    fap_version="1.1",
     fap_icon="avr_app_icon_10x10.png",
     fap_category="GPIO",
     fap_icon_assets="images",

+ 1 - 1
helpers/avr_isp_types.h

@@ -3,7 +3,7 @@
 #include <furi.h>
 #include <furi_hal.h>
 
-#define AVR_ISP_VERSION_APP "0.1"
+#define AVR_ISP_VERSION_APP FAP_VERSION
 #define AVR_ISP_DEVELOPED "SkorP"
 #define AVR_ISP_GITHUB "https://github.com/flipperdevices/flipperzero-good-faps"
 

+ 1 - 1
scenes/avr_isp_scene_input_name.c

@@ -11,7 +11,7 @@ void avr_isp_scene_input_name_text_callback(void* context) {
 }
 
 void avr_isp_scene_input_name_get_timefilename(FuriString* name) {
-    FuriHalRtcDateTime datetime = {0};
+    DateTime datetime = {0};
     furi_hal_rtc_get_datetime(&datetime);
     furi_string_printf(
         name,