Skip to content

Commit

Permalink
Added fap_version field to all apps (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
hedger authored Aug 8, 2023
1 parent 7d7a283 commit a012a03
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions avr_isp_programmer/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ App(
requires=["gui"],
stack_size=4 * 1024,
fap_description="Application for flashing AVR microcontrollers",
fap_version="1.0",
fap_icon="avr_app_icon_10x10.png",
fap_category="GPIO",
fap_icon_assets="images",
Expand Down
1 change: 1 addition & 0 deletions dap_link/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ App(
],
stack_size=4 * 1024,
fap_description="Enables use of Flipper as a debug probe for ARM devices, implements the CMSIS-DAP protocol",
fap_version="1.0",
fap_icon="dap_link.png",
fap_category="GPIO",
fap_private_libs=[
Expand Down
2 changes: 2 additions & 0 deletions hid_app/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ App(
entry_point="hid_usb_app",
stack_size=1 * 1024,
fap_description="Use Flipper as a HID remote control over USB",
fap_version="1.0",
fap_category="USB",
fap_icon="hid_usb_10px.png",
fap_icon_assets="assets",
Expand All @@ -19,6 +20,7 @@ App(
entry_point="hid_ble_app",
stack_size=1 * 1024,
fap_description="Use Flipper as a HID remote control over Bluetooth",
fap_version="1.0",
fap_category="Bluetooth",
fap_icon="hid_ble_10px.png",
fap_icon_assets="assets",
Expand Down
1 change: 1 addition & 0 deletions mass_storage/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ App(
],
stack_size=2 * 1024,
fap_description="Implements a mass storage device over USB for disk images",
fap_version="1.0",
fap_icon="assets/mass_storage_10px.png",
fap_icon_assets="assets",
fap_category="USB",
Expand Down
3 changes: 2 additions & 1 deletion mfkey32/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ App(
],
stack_size=1 * 1024,
fap_description="Mf Classic key finder",
fap_version="1.0",
fap_icon="mfkey.png",
fap_category="NFC",
fap_author="noproto",
fap_author="@noproto",
fap_icon_assets="images",
fap_weburl="https://github.com/noproto/FlipperMfkey",
)
1 change: 1 addition & 0 deletions nfc_magic/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ App(
],
stack_size=4 * 1024,
fap_description="Application for writing to NFC tags with modifiable sector 0",
fap_version="1.0",
fap_icon="assets/125_10px.png",
fap_category="NFC",
fap_private_libs=[
Expand Down
1 change: 1 addition & 0 deletions nfc_rfid_detector/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ App(
requires=["gui"],
stack_size=4 * 1024,
fap_description="Identify the reader type: NFC (13 MHz) and/or RFID (125 KHz).",
fap_version="1.0",
fap_icon="nfc_rfid_detector_10px.png",
fap_category="Tools",
fap_icon_assets="images",
Expand Down
1 change: 1 addition & 0 deletions picopass/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ App(
],
stack_size=4 * 1024,
fap_description="App to communicate with NFC tags using the PicoPass format",
fap_version="1.0",
fap_icon="125_10px.png",
fap_category="NFC",
fap_libs=["mbedtls"],
Expand Down
1 change: 1 addition & 0 deletions signal_generator/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ App(
requires=["gui"],
stack_size=1 * 1024,
fap_description="Control GPIO pins to generate digital signals",
fap_version="1.0",
fap_icon="signal_gen_10px.png",
fap_category="GPIO",
fap_icon_assets="icons",
Expand Down
1 change: 1 addition & 0 deletions spi_mem_manager/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ App(
requires=["gui"],
stack_size=1 * 2048,
fap_description="Application for reading and writing 25-series SPI memory chips",
fap_version="1.0",
fap_icon="images/Dip8_10px.png",
fap_category="GPIO",
fap_icon_assets="images",
Expand Down
1 change: 1 addition & 0 deletions weather_station/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ App(
requires=["gui"],
stack_size=4 * 1024,
fap_description="Receive weather data from a wide range of supported Sub-1GHz remote sensor",
fap_version="1.0",
fap_icon="weather_station_10px.png",
fap_category="Sub-GHz",
fap_icon_assets="images",
Expand Down

0 comments on commit a012a03

Please sign in to comment.