Fix main apps paths and manifests

This commit is contained in:
Willy-JL
2023-07-13 22:08:45 +02:00
parent 158b727cb8
commit 22d72dc990
11 changed files with 2 additions and 11 deletions

View File

@@ -7,5 +7,4 @@ App(
icon="A_BadKb_14",
order=70,
fap_icon="icon.png",
fap_category="USB",
)

View File

@@ -7,5 +7,4 @@ App(
icon="A_GPIO_14",
order=50,
fap_icon="icon.png",
fap_category="GPIO",
)

View File

@@ -8,7 +8,6 @@ App(
stack_size=2 * 1024,
order=60,
fap_icon="icon.png",
fap_category="iButton",
)
App(

View File

@@ -8,7 +8,6 @@ App(
stack_size=3 * 1024,
order=40,
fap_icon="icon.png",
fap_category="Infrared",
)
App(

View File

@@ -8,7 +8,6 @@ App(
stack_size=2 * 1024,
order=20,
fap_icon="icon.png",
fap_category="RFID",
)
App(

View File

@@ -8,7 +8,6 @@ App(
stack_size=5 * 1024,
order=30,
fap_icon="icon.png",
fap_category="NFC",
)
App(

View File

@@ -21,7 +21,6 @@ App(
order=10,
fap_libs=["hwdrivers"],
fap_icon="icon.png",
fap_category="Sub-GHz",
)
App(

View File

@@ -6,6 +6,5 @@ App(
stack_size=2 * 1024,
icon="A_U2F_14",
order=80,
fap_category="USB",
fap_icon="icon.png",
)

View File

@@ -6,6 +6,5 @@ App(
stack_size=2 * 1024,
icon="A_Xtreme_14",
order=90,
# fap_icon="",
# fap_category="",
fap_icon="icon.png",
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 620 B

View File

@@ -179,7 +179,7 @@ class AppBuilder:
deployable = False
app_artifacts.dist_entries.append((deployable, fal_path))
else:
fap_path = f"apps/{self.app.fap_category}/{app_artifacts.compact.name}"
fap_path = f"apps/{'assets' if self.app.apptype == FlipperAppType.MENUEXTERNAL else self.app.fap_category}/{app_artifacts.compact.name}"
app_artifacts.dist_entries.append(
(self.app.is_default_deployable, fap_path)
)