Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Manifest cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hedger committed Aug 3, 2023
1 parent e445072 commit 20468a8
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 22 deletions.
3 changes: 1 addition & 2 deletions avr_isp_programmer/application.fam
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
App(
appid="avr_isp",
name="AVR Flasher",
description="Application for flashing AVR microcontrollers",
apptype=FlipperAppType.EXTERNAL,
entry_point="avr_isp_app",
requires=["gui"],
stack_size=4 * 1024,
order=20,
fap_description="Application for flashing AVR microcontrollers",
fap_icon="avr_app_icon_10x10.png",
fap_category="GPIO",
fap_icon_assets="images",
Expand Down
3 changes: 1 addition & 2 deletions dap_link/application.fam
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
App(
appid="dap_link",
name="DAP Link",
description="Enables use of Flipper as a debug probe for ARM devices, implements the CMSIS-DAP protocol",
apptype=FlipperAppType.EXTERNAL,
entry_point="dap_link_app",
requires=[
"gui",
"dialogs",
],
stack_size=4 * 1024,
order=20,
fap_description="Enables use of Flipper as a debug probe for ARM devices, implements the CMSIS-DAP protocol",
fap_icon="dap_link.png",
fap_category="GPIO",
fap_private_libs=[
Expand Down
4 changes: 2 additions & 2 deletions hid_app/application.fam
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
App(
appid="hid_usb",
name="Remote",
description="Use Flipper as a HID remote control over USB",
apptype=FlipperAppType.EXTERNAL,
entry_point="hid_usb_app",
stack_size=1 * 1024,
fap_description="Use Flipper as a HID remote control over USB",
fap_category="USB",
fap_icon="hid_usb_10px.png",
fap_icon_assets="assets",
Expand All @@ -15,10 +15,10 @@ App(
App(
appid="hid_ble",
name="Remote",
description="Use Flipper as a HID remote control over Bluetooth",
apptype=FlipperAppType.EXTERNAL,
entry_point="hid_ble_app",
stack_size=1 * 1024,
fap_description="Use Flipper as a HID remote control over Bluetooth",
fap_category="Bluetooth",
fap_icon="hid_ble_10px.png",
fap_icon_assets="assets",
Expand Down
3 changes: 1 addition & 2 deletions mass_storage/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ App(
appid="mass_storage",
name="Mass Storage",
apptype=FlipperAppType.EXTERNAL,
description="Implements a mass storage device over USB for disk images",
entry_point="mass_storage_app",
requires=[
"gui",
"dialogs",
],
stack_size=2 * 1024,
order=20,
fap_description="Implements a mass storage device over USB for disk images",
fap_icon="assets/mass_storage_10px.png",
fap_icon_assets="assets",
fap_category="USB",
Expand Down
2 changes: 1 addition & 1 deletion mfkey32/application.fam
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
App(
appid="mfkey32",
name="Mfkey32",
description="Mf Classic key finder",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="mfkey32_main",
Expand All @@ -10,6 +9,7 @@ App(
"storage",
],
stack_size=1 * 1024,
fap_description="Mf Classic key finder",
fap_icon="mfkey.png",
fap_category="NFC",
fap_author="noproto",
Expand Down
3 changes: 1 addition & 2 deletions nfc_magic/application.fam
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
App(
appid="nfc_magic",
name="Nfc Magic",
description="Application for writing to NFC tags with modifiable sector 0",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="nfc_magic_app",
Expand All @@ -10,7 +9,7 @@ App(
"gui",
],
stack_size=4 * 1024,
order=30,
fap_description="Application for writing to NFC tags with modifiable sector 0",
fap_icon="assets/125_10px.png",
fap_category="NFC",
fap_private_libs=[
Expand Down
4 changes: 1 addition & 3 deletions nfc_rfid_detector/application.fam
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
App(
appid="nfc_rfid_detector",
name="NFC/RFID detector",
description="Identify the reader type: NFC (12.54 MHz) and/or RFID (125 KHz)",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="nfc_rfid_detector_app",
requires=["gui"],
stack_size=4 * 1024,
order=50,
fap_description="Identify the reader type: NFC (13 MHz) and/or RFID (125 KHz).",
fap_icon="nfc_rfid_detector_10px.png",
fap_category="Tools",
fap_icon_assets="images",
fap_description="Identify the reader type: NFC (13 MHz) and/or RFID (125 KHz).",
fap_author="SkorP",
)
3 changes: 1 addition & 2 deletions picopass/application.fam
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
App(
appid="picopass",
name="PicoPass",
description="App to communicate with NFC tags using the PicoPass format",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="picopass_app",
Expand All @@ -10,7 +9,7 @@ App(
"gui",
],
stack_size=4 * 1024,
order=30,
fap_description="App to communicate with NFC tags using the PicoPass format",
fap_icon="125_10px.png",
fap_category="NFC",
fap_libs=["mbedtls"],
Expand Down
3 changes: 1 addition & 2 deletions signal_generator/application.fam
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
App(
appid="signal_generator",
name="Signal Generator",
description="Control GPIO pins to generate digital signals",
apptype=FlipperAppType.EXTERNAL,
entry_point="signal_gen_app",
requires=["gui"],
stack_size=1 * 1024,
order=50,
fap_description="Control GPIO pins to generate digital signals",
fap_icon="signal_gen_10px.png",
fap_category="GPIO",
fap_icon_assets="icons",
Expand Down
3 changes: 1 addition & 2 deletions spi_mem_manager/application.fam
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
App(
appid="spi_mem_manager",
name="SPI Mem Manager",
description="Application for reading and writing 25-series SPI memory chips",
apptype=FlipperAppType.EXTERNAL,
entry_point="spi_mem_app",
requires=["gui"],
stack_size=1 * 2048,
order=30,
fap_description="Application for reading and writing 25-series SPI memory chips",
fap_icon="images/Dip8_10px.png",
fap_category="GPIO",
fap_icon_assets="images",
Expand Down
3 changes: 1 addition & 2 deletions weather_station/application.fam
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
App(
appid="weather_station",
name="Weather Station",
description="Receive weather data from a wide range of supported Sub-1GHz remote sensor",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="weather_station_app",
requires=["gui"],
stack_size=4 * 1024,
order=50,
fap_description="Receive weather data from a wide range of supported Sub-1GHz remote sensor",
fap_icon="weather_station_10px.png",
fap_category="Sub-GHz",
fap_icon_assets="images",
Expand Down

0 comments on commit 20468a8

Please sign in to comment.