mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
Shorter app names (prep for wii ui)
This commit is contained in:
@@ -14,12 +14,12 @@
|
||||
static const char* flipper_app_name[] = {
|
||||
[ArchiveFileTypeIButton] = "iButton",
|
||||
[ArchiveFileTypeNFC] = "NFC",
|
||||
[ArchiveFileTypeSubGhz] = "Sub-GHz",
|
||||
[ArchiveFileTypeLFRFID] = "125 kHz RFID",
|
||||
[ArchiveFileTypeSubGhz] = "SubGHz",
|
||||
[ArchiveFileTypeLFRFID] = "RFID",
|
||||
[ArchiveFileTypeInfrared] = "Infrared",
|
||||
[ArchiveFileTypeBadKb] = "Bad KB",
|
||||
[ArchiveFileTypeU2f] = "U2F",
|
||||
[ArchiveFileTypeApplication] = "Applications",
|
||||
[ArchiveFileTypeApplication] = "Apps",
|
||||
[ArchiveFileTypeUpdateManifest] = "UpdaterApp",
|
||||
};
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
App(
|
||||
appid="fap_loader",
|
||||
name="Applications",
|
||||
name="Apps",
|
||||
apptype=FlipperAppType.APP,
|
||||
entry_point="fap_loader_app",
|
||||
cdefines=["APP_FAP_LOADER"],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
App(
|
||||
appid="lfrfid",
|
||||
name="125 kHz RFID",
|
||||
name="RFID",
|
||||
apptype=FlipperAppType.APP,
|
||||
targets=["f7"],
|
||||
entry_point="lfrfid_app",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
App(
|
||||
appid="subghz",
|
||||
name="Sub-GHz",
|
||||
name="SubGHz",
|
||||
apptype=FlipperAppType.APP,
|
||||
targets=["f7"],
|
||||
entry_point="subghz_app",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
App(
|
||||
appid="xtreme_app",
|
||||
name="Xtreme Settings",
|
||||
name="Xtreme",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="xtreme_app",
|
||||
cdefines=["APP_XTREME"],
|
||||
|
||||
@@ -9,7 +9,7 @@ extern "C" {
|
||||
|
||||
#define RECORD_LOADER "loader"
|
||||
|
||||
#define FAP_LOADER_APP_NAME "Applications"
|
||||
#define FAP_LOADER_APP_NAME "Apps"
|
||||
|
||||
typedef struct Loader Loader;
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ class Main(App):
|
||||
|
||||
if self.args.launch_app:
|
||||
storage.send_and_wait_eol(
|
||||
f'loader open "Applications" {fap_dst_path}\r'
|
||||
f'loader open "Apps" {fap_dst_path}\r'
|
||||
)
|
||||
result = storage.read.until(storage.CLI_EOL)
|
||||
if len(result):
|
||||
|
||||
Reference in New Issue
Block a user