Skip to content

Commit

Permalink
Fix for crash on exit in 0.100.3
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lee committed Apr 5, 2024
1 parent 990adc1 commit 7813bcf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ App(
fap_icon="icons/meal_pager_10px.png",
fap_icon_assets="icons",
fap_category="Sub-Ghz",
fap_version="1.5",
fap_version="1.6",
fap_author="leedave",
fap_weburl="https://github.com/leedave/flipper-zero-meal-pager",
fap_description="This app triggers restaurant pagers in a brute force manner, useful to test if devices are still functional.",
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.6
- Fix crashes on exit on fw 0.100.3

## v1.5
- Support for ufbt compilation (assets fixed)

Expand Down
1 change: 1 addition & 0 deletions meal_pager.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ void meal_pager_app_free(Meal_Pager* app) {
view_dispatcher_remove_view(app->view_dispatcher, Meal_PagerViewIdTransmit);
view_dispatcher_remove_view(app->view_dispatcher, Meal_PagerViewIdSettings);
view_dispatcher_remove_view(app->view_dispatcher, Meal_PagerViewIdIntInput);
view_dispatcher_remove_view(app->view_dispatcher, Meal_PagerViewIdStartscreen);
submenu_free(app->submenu);
int_input_free(app->int_input);

Expand Down
2 changes: 1 addition & 1 deletion meal_pager_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#define SUBGHZ_APP_EXTENSION ".sub"
#define SUBGHZ_APP_FOLDER ANY_PATH("subghz")
#define MEAL_PAGER_VERSION "1.4"
#define MEAL_PAGER_VERSION "1.6"

typedef struct Meal_PagerTransmit Meal_PagerTransmit;
typedef struct SubGhz SubGhz;
Expand Down

0 comments on commit 7813bcf

Please sign in to comment.