From 402bcc473edaf45bb9e05d1dade3e23e11826443 Mon Sep 17 00:00:00 2001 From: RogueMaster Date: Wed, 2 Aug 2023 13:19:20 -0400 Subject: [PATCH] 4x OFW --- ReadMe.md | 8 ++++++-- applications/external/uhf_rfid/uhf_data.c | 1 + .../scenes/cfw_app_scene_interface_mainmenu_add_main.c | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 63271be2c79..693becfcac5 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -31,11 +31,15 @@ This software is for experimental purposes only and is not meant for any illegal ## Latest Updates - [PATREON: Latest Release RM0802-0215-0.87.1-f8a0f6e](https://www.patreon.com/RogueMaster?filters[tag]=Latest%20Release) -- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md) and in [commits](https://github.com/DarkFlippers/unleashed-firmware/commits/dev): `2023-08-02 04:00 EST` -- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2023-08-02 04:00 EST` +- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md) and in [commits](https://github.com/DarkFlippers/unleashed-firmware/commits/dev): `2023-08-02 13:20 EST` +- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2023-08-02 13:20 EST` - [Removed duplicated dolphin deeds (By RogueMaster)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/f3edcba5b28574c32ec1f781f0b5f6c936ef5214) - [Small fix for Moving Main Menu Apps in CFW Settings #725 (By ESurge)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/pull/725) - [Small fix for Removing Main Menu Apps in CFW Settings #726 (By ESurge)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/pull/726) +- OFW: [Rename Applications to Apps #2939 (By Astrrra)](https://github.com/flipperdevices/flipperzero-firmware/pull/2939) +- OFW: [NFC: Fix MFC key invalidation #2912 (By AloneLiberty)](https://github.com/flipperdevices/flipperzero-firmware/pull/2912) +- OFW: [NFC CLI: Fix multiple apdu commands from not working when one of them gives an empty response #2922 (By erikj95)](https://github.com/flipperdevices/flipperzero-firmware/pull/2922) +- OFW: [fbtenv: add additional environ variable to control execution flow #2938 (By lomalkin)](https://github.com/flipperdevices/flipperzero-firmware/pull/2938) diff --git a/applications/external/uhf_rfid/uhf_data.c b/applications/external/uhf_rfid/uhf_data.c index dc9c7787f43..890219379ad 100644 --- a/applications/external/uhf_rfid/uhf_data.c +++ b/applications/external/uhf_rfid/uhf_data.c @@ -32,6 +32,7 @@ void uhf_data_reset(UHFData* uhf_data) { uhf_data->start = false; uhf_data->end = false; uhf_data->length = 0; + uhf_data->next = NULL; } void uhf_data_free(UHFData* uhf_data) { diff --git a/applications/settings/cfw_app/scenes/cfw_app_scene_interface_mainmenu_add_main.c b/applications/settings/cfw_app/scenes/cfw_app_scene_interface_mainmenu_add_main.c index a410d17a31a..7f9af575e43 100644 --- a/applications/settings/cfw_app/scenes/cfw_app_scene_interface_mainmenu_add_main.c +++ b/applications/settings/cfw_app/scenes/cfw_app_scene_interface_mainmenu_add_main.c @@ -21,7 +21,7 @@ void cfw_app_scene_interface_mainmenu_add_main_on_enter(void* context) { submenu_add_item( submenu, LOADER_APPLICATIONS_NAME, - (uint32_t) LOADER_APPLICATIONS_NAME, + (uint32_t)LOADER_APPLICATIONS_NAME, cfw_app_scene_interface_mainmenu_add_main_submenu_callback, app);