jblanked 10 месяцев назад
Родитель
Сommit
8c1c403ac1
3 измененных файлов с 5 добавлено и 5 удалено
  1. 3 3
      app.c
  2. 1 1
      application.fam
  3. 1 1
      flip_world.h

+ 3 - 3
app.c

@@ -44,9 +44,9 @@ int32_t flip_world_main(void *p)
         easy_flipper_dialog("FlipperHTTP Error", "Ensure your WiFi Developer\nBoard or Pico W is connected\nand the latest FlipperHTTP\nfirmware is installed.");
 
     // save app version
-    // char app_version[16];
-    // snprintf(app_version, sizeof(app_version), "%f", (double)VERSION);
-    save_char("app_version", VERSION);
+    char app_version[16];
+    snprintf(app_version, sizeof(app_version), "%f", (double)VERSION);
+    save_char("app_version", app_version);
 
     // Run the view dispatcher
     view_dispatcher_run(app->view_dispatcher);

+ 1 - 1
application.fam

@@ -17,5 +17,5 @@ App(
     ),
     fap_author="JBlanked",
     fap_weburl="https://github.com/jblanked/FlipWorld",
-    fap_version="0.6.1",
+    fap_version="0.7",
 )

+ 1 - 1
flip_world.h

@@ -15,7 +15,7 @@
 //
 
 #define TAG "FlipWorld"
-#define VERSION "0.6.1"
+#define VERSION 0.7
 #define VERSION_TAG TAG " " FAP_VERSION
 
 // Define the submenu items for our FlipWorld application