Browse Source

chore: make consistent with RM app.fam

xtruan 2 years ago
parent
commit
03e41e79fe
2 changed files with 6 additions and 4 deletions
  1. 5 3
      application.fam
  2. 1 1
      flipchess.h

+ 5 - 3
application.fam

@@ -1,5 +1,5 @@
 App(
-    appid="flipchess",
+    appid="chess",
     name="Chess",
     apptype=FlipperAppType.EXTERNAL,
     entry_point="flipchess_app",
@@ -7,11 +7,13 @@ App(
         "gui",
     ],
     stack_size=4 * 1024,
-    order=40,
+    order=10,
     fap_icon="flipchess_10px.png",
     fap_icon_assets="icons",
+    fap_icon_assets_symbol="flipchess",
     fap_category="Games",
-    fap_description="Chess for Flipper",
     fap_author="Struan Clark (xtruan)",
     fap_weburl="https://github.com/xtruan/flipper-chess",
+    fap_version=(1, 5),
+    fap_description="Chess for Flipper",
 )

+ 1 - 1
flipchess.h

@@ -16,7 +16,7 @@
 #include "views/flipchess_startscreen.h"
 #include "views/flipchess_scene_1.h"
 
-#define FLIPCHESS_VERSION "v0.1.4"
+#define FLIPCHESS_VERSION "v1.5.0"
 
 #define TEXT_BUFFER_SIZE 96
 #define TEXT_SIZE (TEXT_BUFFER_SIZE - 1)