Skip to content

Commit

Permalink
Latest Release RM0131-2042-0.93.9-3f7ed17 on PATREON - UPD MEAL PAGER
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Feb 1, 2024
2 parents ae2827f + ddc6c0e commit 25485fc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
5 changes: 3 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ This software is for experimental purposes only and is not meant for any illegal

## Latest Updates - [PATREON: Latest Release RM0131-2042-0.93.9-3f7ed17](https://www.patreon.com/RogueMaster?filters[tag]=Latest%20Release)

- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2024-01-31 23:15 EST`
- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md): `2024-01-31 23:15 EST`
- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2024-01-31 23:30 EST`
- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md): `2024-01-31 23:30 EST`
- [Added Pirate Profile Pic (By cyberartemio)](https://github.com/cyberartemio/flipper-pirates-asset-pack/blob/main/Pirates/Icons/Passport/passport_okay_46x49.png)
- Updated: [ESP32 Camera Suite v1.6 (By CodyTolene)](https://github.com/CodyTolene/Flipper-Zero-Camera-Suite)
- Updated: [USB Mass Storage v1.3 (By nminaylov)](https://github.com/flipperdevices/flipperzero-good-faps/tree/nm/usb_mass_storage_app/mass_storage) (Changes from xMasterX)
Expand All @@ -56,6 +56,7 @@ This software is for experimental purposes only and is not meant for any illegal
- UL: [OFW PR 3410: lfrfid/em4100: added support for different bit rates (By Mrkvak) (RF/32 full support, RF/16 support without reading (16clk removed for now))](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/54161f3d8362cb8ddc708d0eecb5cbf8901207be)
- Updated: [Cross Remote v2.1 (By leedave)](https://github.com/leedave/flipper-zero-cross-remote)
- UL: [LFRFID: enter password scene events handler fix (By Leptopt1los)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/89955b2585d4e33e3cce7aed8fe0ad9417728a0c)
- Updated: [Restaurant Pager Trigger v1.2 (By leedave)](https://github.com/leedave/flipper-zero-meal-pager) (Fixes by xMasterX)
- To Be Merged OFW PRs: [3352](https://github.com/flipperdevices/flipperzero-firmware/pull/3352), [3302](https://github.com/flipperdevices/flipperzero-firmware/pull/3302), [3211](https://github.com/flipperdevices/flipperzero-firmware/pull/3211), [3366](https://github.com/flipperdevices/flipperzero-firmware/pull/3366), [3250](https://github.com/flipperdevices/flipperzero-firmware/pull/3250), [3402](https://github.com/flipperdevices/flipperzero-firmware/pull/3402) & [3409](https://github.com/flipperdevices/flipperzero-firmware/pull/3409)

## IN THIS BRANCH:
Expand Down
7 changes: 6 additions & 1 deletion applications/external/meal_pager/meal_pager.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,13 @@ void meal_pager_app_free(Meal_Pager* app) {
int_input_free(app->int_input);

view_dispatcher_free(app->view_dispatcher);
furi_record_close(RECORD_GUI);

variable_item_list_free(app->variable_item_list);
meal_pager_transmit_free(app->meal_pager_transmit);
meal_pager_startscreen_free(app->meal_pager_startscreen);

furi_record_close(RECORD_GUI);
furi_record_close(RECORD_NOTIFICATION);
app->gui = NULL;
app->notification = NULL;

Expand Down
15 changes: 12 additions & 3 deletions applications/external/meal_pager/views/meal_pager_transmit.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ bool meal_pager_transmit_input(InputEvent* event, void* context) {
instance->view,
Meal_PagerTransmitModel * model,
{
UNUSED(model);
instance->callback(Meal_PagerCustomEventTransmitBack, instance->context);
if(model->sending != 0) {
//instance->callback(Meal_PagerCustomEventTransmitBack, instance->context);
}
},
true);
break;
Expand Down Expand Up @@ -171,7 +172,15 @@ void meal_pager_transmit_free(Meal_PagerTransmit* instance) {
furi_assert(instance);

with_view_model(
instance->view, Meal_PagerTransmitModel * model, { UNUSED(model); }, true);
instance->view,
Meal_PagerTransmitModel * model,
{
model->pager_type = 0;
model->station = 0;
model->pager = 0;
model->sending = 0;
},
true);
view_free(instance->view);
free(instance);
}
Expand Down

0 comments on commit 25485fc

Please sign in to comment.