Shorter app names (prep for wii ui)

This commit is contained in:
Willy-JL
2023-03-14 22:09:06 +00:00
parent e161b8bc89
commit 28593fbc43
7 changed files with 9 additions and 9 deletions

View File

@@ -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",
};

View File

@@ -1,6 +1,6 @@
App(
appid="fap_loader",
name="Applications",
name="Apps",
apptype=FlipperAppType.APP,
entry_point="fap_loader_app",
cdefines=["APP_FAP_LOADER"],

View File

@@ -1,6 +1,6 @@
App(
appid="lfrfid",
name="125 kHz RFID",
name="RFID",
apptype=FlipperAppType.APP,
targets=["f7"],
entry_point="lfrfid_app",

View File

@@ -1,6 +1,6 @@
App(
appid="subghz",
name="Sub-GHz",
name="SubGHz",
apptype=FlipperAppType.APP,
targets=["f7"],
entry_point="subghz_app",

View File

@@ -1,6 +1,6 @@
App(
appid="xtreme_app",
name="Xtreme Settings",
name="Xtreme",
apptype=FlipperAppType.EXTERNAL,
entry_point="xtreme_app",
cdefines=["APP_XTREME"],

View File

@@ -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;

View File

@@ -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):