Fix Order

This commit is contained in:
RogueMaster
2022-09-17 05:08:20 -04:00
parent 9836880ca4
commit b2f0e0ae62
8 changed files with 12 additions and 12 deletions

View File

@@ -1,12 +1,12 @@
App(
appid="arkanoid_game",
appid="GAME_Arkanoid",
name="Arkanoid",
apptype=FlipperAppType.EXTERNAL,
entry_point="arkanoid_game_app",
cdefines=["APP_ARKANOID_GAME"],
requires=["gui"],
stack_size=1 * 1024,
order=30,
order=20,
fap_icon="arkanoid_10px.png",
fap_category="Games",
)

View File

@@ -1,5 +1,5 @@
App(
appid="INTAPP_Chess",
appid="GAME_Chess",
name="Chess",
apptype=FlipperAppType.EXTERNAL,
entry_point="chess_app",

View File

@@ -1,5 +1,5 @@
App(
appid="game_doom",
appid="GAME_DOOM",
name="DOOM",
apptype=FlipperAppType.EXTERNAL,
entry_point="doom_app",

View File

@@ -1,5 +1,5 @@
App(
appid="game_flappybird",
appid="GAME_FlappyBird",
name="Flappy Bird",
apptype=FlipperAppType.EXTERNAL,
entry_point="flappy_game_app",

View File

@@ -1,12 +1,12 @@
App(
appid="snake_game",
appid="GAME_Snake",
name="Snake Game",
apptype=FlipperAppType.PLUGIN,
entry_point="snake_game_app",
cdefines=["APP_SNAKE_GAME"],
requires=["gui"],
stack_size=1 * 1024,
order=30,
order=210,
fap_icon="snake_10px.png",
fap_category="Games",
)

View File

@@ -1,12 +1,12 @@
App(
appid="tetris_game",
appid="GAME_Tetris",
name="Tetris",
apptype=FlipperAppType.EXTERNAL,
entry_point="tetris_game_app",
cdefines=["APP_TETRIS_GAME"],
requires=["gui"],
stack_size=2 * 1024,
order=20,
order=240,
fap_icon="tetris_10px.png",
fap_category="Games",
)

View File

@@ -1,12 +1,12 @@
App(
appid="tictactoe_game",
appid="GAME_TicTacToe",
name="Tic Tac Toe",
apptype=FlipperAppType.EXTERNAL,
entry_point="tictactoe_game_app",
cdefines=["APP_TICTACTOE_GAME"],
requires=["gui"],
stack_size=1 * 1024,
order=40,
order=250,
fap_icon="tictactoe_10px.png",
fap_category="Games",
)

View File

@@ -1,5 +1,5 @@
App(
appid="game_zombiez",
appid="GAME_Zombiez",
name="Zombiez",
apptype=FlipperAppType.EXTERNAL,
entry_point="zombiez_game_app",