mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-23 05:24:46 -07:00
some changes to fbt stuff
This commit is contained in:
@@ -36,13 +36,6 @@ App(
|
|||||||
provides=[
|
provides=[
|
||||||
"music_player",
|
"music_player",
|
||||||
"bt_hid",
|
"bt_hid",
|
||||||
"picopass",
|
|
||||||
"hid_analyzer",
|
|
||||||
"barcode_generator",
|
|
||||||
"mouse_jacker",
|
|
||||||
"nrf_sniff",
|
|
||||||
"sentry_safe",
|
|
||||||
"wifi_marauder",
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -68,3 +61,18 @@ App(
|
|||||||
"unirfremix",
|
"unirfremix",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
App(
|
||||||
|
appid="custom_plugins",
|
||||||
|
name="Custom applications for plug-in menu",
|
||||||
|
apptype=FlipperAppType.METAPACKAGE,
|
||||||
|
provides=[
|
||||||
|
"picopass",
|
||||||
|
"hid_analyzer",
|
||||||
|
"barcode_generator",
|
||||||
|
"mouse_jacker",
|
||||||
|
"nrf_sniff",
|
||||||
|
"sentry_safe",
|
||||||
|
"wifi_marauder",
|
||||||
|
],
|
||||||
|
)
|
||||||
@@ -4,7 +4,10 @@ App(
|
|||||||
apptype=FlipperAppType.APP,
|
apptype=FlipperAppType.APP,
|
||||||
entry_point="unirfremix_app",
|
entry_point="unirfremix_app",
|
||||||
cdefines=["APP_UNIRFREMIX"],
|
cdefines=["APP_UNIRFREMIX"],
|
||||||
requires=["gui"],
|
requires=[
|
||||||
|
"gui",
|
||||||
|
"dialogs",
|
||||||
|
],
|
||||||
icon="A_UniRFRemix_14",
|
icon="A_UniRFRemix_14",
|
||||||
stack_size=2 * 1024,
|
stack_size=2 * 1024,
|
||||||
order=11,
|
order=11,
|
||||||
|
|||||||
@@ -77,6 +77,7 @@ FIRMWARE_APPS = {
|
|||||||
"about",
|
"about",
|
||||||
# Plugins
|
# Plugins
|
||||||
"basic_plugins",
|
"basic_plugins",
|
||||||
|
"custom_plugins",
|
||||||
# Custom Games
|
# Custom Games
|
||||||
"custom_games",
|
"custom_games",
|
||||||
# Debug
|
# Debug
|
||||||
@@ -86,6 +87,24 @@ FIRMWARE_APPS = {
|
|||||||
"basic_services",
|
"basic_services",
|
||||||
"unit_tests",
|
"unit_tests",
|
||||||
],
|
],
|
||||||
|
"no_custom_apps": [
|
||||||
|
"crypto_start",
|
||||||
|
# Svc
|
||||||
|
"basic_services",
|
||||||
|
# Apps
|
||||||
|
"basic_apps",
|
||||||
|
"updater_app",
|
||||||
|
"storage_move_to_sd",
|
||||||
|
"archive",
|
||||||
|
# Settings
|
||||||
|
"passport",
|
||||||
|
"system_settings",
|
||||||
|
"about",
|
||||||
|
# Plugins
|
||||||
|
"basic_plugins",
|
||||||
|
# Debug
|
||||||
|
"debug_apps",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
FIRMWARE_APP_SET = "default"
|
FIRMWARE_APP_SET = "default"
|
||||||
|
|||||||
Reference in New Issue
Block a user