mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-03 17:59:16 +00:00
9b2d80d6b7
* FBT, applications: add MENUEXTERNAL app type * FBT, uFBT: build MENUEXTERNAL as EXTERNAL app * Loader menu: show external menu apps * LFRFID: move to sd card * FBT: always build External Applications list * Archive: look for external apps path * Infrared: move to sd card * Apps: add "start" apps * iButton: move to sd card * BadUSB: move to sd card * External apps: update icons * GPIO: move to sd card * Loader: look for external apps path * U2F: move to sd * SubGHz: move to sd * Apps: "on_start" metapackage * NFC: move to sd * Sync f7 and f18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
31 lines
600 B
Text
31 lines
600 B
Text
App(
|
|
appid="main_apps",
|
|
name="Basic applications for main menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"gpio",
|
|
"ibutton",
|
|
"infrared",
|
|
"lfrfid",
|
|
"nfc",
|
|
"subghz",
|
|
"bad_usb",
|
|
"u2f",
|
|
"archive",
|
|
"main_apps_on_start",
|
|
],
|
|
)
|
|
|
|
App(
|
|
appid="main_apps_on_start",
|
|
name="On start hooks",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"ibutton_start",
|
|
"onewire_start",
|
|
"subghz_start",
|
|
"infrared_start",
|
|
"lfrfid_start",
|
|
"nfc_start",
|
|
],
|
|
)
|