Skip to content

Commit

Permalink
Version Bump + Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
acegoal07 committed Feb 24, 2024
1 parent bb251e1 commit 45118d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# FlipperZero_NFC_Playlist:
The idea behind this app is to allow for you to test multiple copies of NFC's at once as a bulk test

## Know issue:
At the end of some playlists it will cause the flipperZero to crash there is no eta when it come to the fix of this as i still trying to figure out what is causing the issue, it appears to of started after an update to the firmware so is probably just a compatibility issue

Any help in finding or fixing the issue would be amazing

## How it works:
When starting the app you are greeted by a select file option where you choose the playlist you wanna run.

Expand Down
2 changes: 1 addition & 1 deletion application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ App(
fap_category="NFC",
fap_author="@acegoal07",
fap_weburl="https://github.com/acegoal07/FlipperZero_NFC_Playlist/tree/main",
fap_version="1.1",
fap_version="1.4",
fap_icon="assets/icon.png",
fap_private_libs=[
Lib(
Expand Down
2 changes: 1 addition & 1 deletion lib/worker/nfc_playlist_worker.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ int32_t nfc_playlist_worker_task(void* context);
bool nfc_playlist_worker_is_emulating(NfcPlaylistWorker* nfc_playlist_worker);
void nfc_playlist_worker_set_nfc_data(NfcPlaylistWorker* nfc_playlist_worker, char* file_path);
void nfc_playlist_worker_clear_nfc_data(NfcPlaylistWorker* nfc_playlist_worker);
NfcDeviceData* nfc_playlist_worker_get_nfc_data(NfcPlaylistWorker* nfc_playlist_worker);
NfcDeviceData* nfc_playlist_worker_get_nfc_data(NfcPlaylistWorker* nfc_playlist_worker);
2 changes: 1 addition & 1 deletion nfc_playlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static NfcPlaylist* nfc_playlist_alloc() {
nfc_playlist->file_browser = file_browser_alloc(nfc_playlist->settings.file_path);
nfc_playlist->text_input = text_input_alloc();
nfc_playlist->popup = popup_alloc();

view_dispatcher_set_event_callback_context(nfc_playlist->view_dispatcher, nfc_playlist);
view_dispatcher_set_custom_event_callback(nfc_playlist->view_dispatcher, nfc_playlist_custom_callback);
view_dispatcher_set_navigation_event_callback(nfc_playlist->view_dispatcher, nfc_playlist_back_event_callback);
Expand Down
4 changes: 2 additions & 2 deletions scences/main_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void nfc_playlist_main_menu_scene_on_enter(void* context) {
NfcPlaylistMenuSelection_FileSelect,
nfc_playlist_main_menu_menu_callback,
nfc_playlist);

submenu_add_item(
nfc_playlist->submenu,
"Edit playlist",
Expand Down Expand Up @@ -101,7 +101,7 @@ bool nfc_playlist_main_menu_scene_on_event(void* context, SceneManagerEvent even
default:
break;
}
}
}
return consumed;
}

Expand Down

0 comments on commit 45118d4

Please sign in to comment.