Skip to content

Commit

Permalink
Fix manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Nov 4, 2024
1 parent 4c8c43a commit 528e2e6
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 14 deletions.
8 changes: 2 additions & 6 deletions applications/main/infrared/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ App(
appid="infrared_cli",
targets=["f7"],
apptype=FlipperAppType.PLUGIN,
entry_point="infrared_cli_plugin_ep",
entry_point="infrared_cli_start_ir_plugin_ep",
requires=["cli"],
sources=[
"infrared_cli.c",
Expand All @@ -31,10 +31,6 @@ App(
apptype=FlipperAppType.STARTUP,
targets=["f7"],
entry_point="infrared_on_system_start",
sources=[
"infrared_cli.c",
"infrared_brute_force.c",
"infrared_signal.c",
],
sources=["infrared_cli.c"],
order=20,
)
4 changes: 2 additions & 2 deletions applications/main/subghz/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ App(
appid="subghz_cli",
targets=["f7"],
apptype=FlipperAppType.PLUGIN,
entry_point="subghz_cli_plugin_ep",
entry_point="subghz_cli_command_plugin_ep",
requires=["cli"],
sources=["subghz_cli.c", "helpers/subghz_chat.c"],
)
Expand All @@ -59,7 +59,7 @@ App(
targets=["f7"],
apptype=FlipperAppType.STARTUP,
entry_point="subghz_on_system_start",
sources=["subghz_cli.c", "helpers/subghz_chat.c"],
# sources=["subghz_cli.c"],
order=40,
)

Expand Down
1 change: 0 additions & 1 deletion applications/services/bt/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="bt_cli_plugin_ep",
requires=["cli"],
sources=["bt_cli.c", "bt_service/bt_settings_api.c"],
)

App(
Expand Down
1 change: 0 additions & 1 deletion applications/services/crypto/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="crypto_cli_plugin_ep",
requires=["cli"],
sources=["crypto_cli.c"],
)

App(
Expand Down
1 change: 0 additions & 1 deletion applications/services/input/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="input_cli_plugin_ep",
requires=["cli"],
sources=["input_cli.c"],
)
1 change: 0 additions & 1 deletion applications/services/loader/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="loader_cli_plugin_ep",
requires=["cli"],
sources=["loader_cli.c"],
)

App(
Expand Down
1 change: 0 additions & 1 deletion applications/services/power/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="power_cli_plugin_ep",
requires=["cli"],
sources=["power_cli.c"],
)

App(
Expand Down
2 changes: 1 addition & 1 deletion applications/system/js_app/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ App(
appid="js_cli",
targets=["f7"],
apptype=FlipperAppType.PLUGIN,
entry_point="js_cli_plugin_ep",
entry_point="js_cli_execute_plugin_ep",
requires=["cli"],
sources=[
"js_app.c",
Expand Down

0 comments on commit 528e2e6

Please sign in to comment.