mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-29 06:24:45 -07:00
Tools Rename
This commit is contained in:
@@ -30,6 +30,7 @@ Thank you to all the supporters!
|
||||
- Added: [Dice (By Ka3u6y6a)](https://github.com/Ka3u6y6a/flipper-zero-dice)
|
||||
- Added: [VB Lab Migration Assistant (By GMMan)](https://github.com/GMMan/flipperzero-vb-migrate) `Req: Vital Bracelet`
|
||||
- Updated: [nfc: NTAG password auto capture (and other password-related changes) #1843 (By GMMan)](https://github.com/flipperdevices/flipperzero-firmware/pull/1843)
|
||||
- Renamed some FAPs to fix ordering in Applications, delete your `/ext/apps` folder to get rid of duplicates
|
||||
|
||||
## Install from Release
|
||||
FLASH STOCK FIRST BEFORE UPDATING TO CUSTOM FIRMWARE!
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
App(
|
||||
appid="Counter",
|
||||
name="Counter",
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="counterapp",
|
||||
requires=[
|
||||
"gui",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
App(
|
||||
appid="dap_link",
|
||||
appid="DAP_Link",
|
||||
name="DAP Link",
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="dap_link_app",
|
||||
requires=[
|
||||
"gui",
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#include "gui/dap_gui.h"
|
||||
#include "usb/dap_v2_usb.h"
|
||||
#include <dialogs/dialogs.h>
|
||||
#include "dap_link_icons.h"
|
||||
#include "DAP_Link_icons.h"
|
||||
|
||||
/***************************************************************************/
|
||||
/****************************** DAP COMMON *********************************/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "dap_main_view.h"
|
||||
#include "dap_link_icons.h"
|
||||
#include "DAP_Link_icons.h"
|
||||
#include <gui/elements.h>
|
||||
|
||||
// extern const Icon I_ArrowDownEmpty_12x18;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
App(
|
||||
appid="dtmf_dolphin",
|
||||
appid="DTMF_Dolphin",
|
||||
name="DTMF Dolphin",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="dtmf_dolphin_app",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
App(
|
||||
appid="iBtn_Fuzzer",
|
||||
appid="IBtn_Fuzzer",
|
||||
name="iButton Fuzzer",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="ibtnfuzzer_start",
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#include <toolbox/stream/file_stream.h>
|
||||
#include <toolbox/stream/buffered_file_stream.h>
|
||||
|
||||
#include <iBtn_Fuzzer_icons.h>
|
||||
#include <IBtn_Fuzzer_icons.h>
|
||||
|
||||
#include <lib/one_wire/ibutton/ibutton_worker.h>
|
||||
#include <lib/one_wire/ibutton/ibutton_key.h>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
App(
|
||||
appid="nfc_magic",
|
||||
appid="NFC_Magic",
|
||||
name="NFC Magic",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="nfc_magic_app",
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#include <lib/toolbox/path.h>
|
||||
|
||||
#include <lib/nfc/nfc_device.h>
|
||||
#include "nfc_magic_icons.h"
|
||||
#include "NFC_Magic_icons.h"
|
||||
|
||||
enum NfcMagicCustomEvent {
|
||||
// Reserve first 100 events for button types and indexes, starting from 0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
App(
|
||||
appid="passgen",
|
||||
appid="Password_Generator",
|
||||
name="Password Generator",
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
entry_point="passgenapp",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <input/input.h>
|
||||
#include <notification/notification_messages.h>
|
||||
#include <stdlib.h>
|
||||
#include <passgen_icons.h>
|
||||
#include <Password_Generator_icons.h>
|
||||
|
||||
#define PASSGEN_MAX_LENGTH 16
|
||||
#define PASSGEN_CHARACTERS_LENGTH (26 * 4)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
App(
|
||||
appid="weather_station",
|
||||
appid="Weather_Station",
|
||||
name="Weather Station",
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
entry_point="weather_station_app",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "weather_station_receiver.h"
|
||||
#include "../weather_station_app_i.h"
|
||||
#include <weather_station_icons.h>
|
||||
#include <Weather_Station_icons.h>
|
||||
#include <math.h>
|
||||
|
||||
#include <input/input.h>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "weather_station_receiver.h"
|
||||
#include "../weather_station_app_i.h"
|
||||
#include "weather_station_icons.h"
|
||||
#include "Weather_Station_icons.h"
|
||||
#include "../protocols/ws_generic.h"
|
||||
#include <input/input.h>
|
||||
#include <gui/elements.h>
|
||||
|
||||
Reference in New Issue
Block a user