Tools Rename

This commit is contained in:
RogueMaster
2022-11-26 23:02:30 -05:00
parent 381b190338
commit eb64bcfff2
15 changed files with 16 additions and 15 deletions

View File

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

View File

@@ -1,7 +1,7 @@
App(
appid="Counter",
name="Counter",
apptype=FlipperAppType.PLUGIN,
apptype=FlipperAppType.EXTERNAL,
entry_point="counterapp",
requires=[
"gui",

View File

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

View File

@@ -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 *********************************/

View File

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

View File

@@ -1,5 +1,5 @@
App(
appid="dtmf_dolphin",
appid="DTMF_Dolphin",
name="DTMF Dolphin",
apptype=FlipperAppType.EXTERNAL,
entry_point="dtmf_dolphin_app",

View File

@@ -1,5 +1,5 @@
App(
appid="iBtn_Fuzzer",
appid="IBtn_Fuzzer",
name="iButton Fuzzer",
apptype=FlipperAppType.EXTERNAL,
entry_point="ibtnfuzzer_start",

View File

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

View File

@@ -1,5 +1,5 @@
App(
appid="nfc_magic",
appid="NFC_Magic",
name="NFC Magic",
apptype=FlipperAppType.EXTERNAL,
entry_point="nfc_magic_app",

View File

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

View File

@@ -1,5 +1,5 @@
App(
appid="passgen",
appid="Password_Generator",
name="Password Generator",
apptype=FlipperAppType.PLUGIN,
entry_point="passgenapp",

View File

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

View File

@@ -1,5 +1,5 @@
App(
appid="weather_station",
appid="Weather_Station",
name="Weather Station",
apptype=FlipperAppType.PLUGIN,
entry_point="weather_station_app",

View File

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

View File

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