Browse Source

Version Bump + Formatting

acegoal07 1 year ago
parent
commit
45118d466a
5 changed files with 5 additions and 10 deletions
  1. 0 5
      README.md
  2. 1 1
      application.fam
  3. 1 1
      lib/worker/nfc_playlist_worker.h
  4. 1 1
      nfc_playlist.c
  5. 2 2
      scences/main_menu.c

+ 0 - 5
README.md

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

+ 1 - 1
application.fam

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

+ 1 - 1
lib/worker/nfc_playlist_worker.h

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

+ 1 - 1
nfc_playlist.c

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

+ 2 - 2
scences/main_menu.c

@@ -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",
@@ -101,7 +101,7 @@ bool nfc_playlist_main_menu_scene_on_event(void* context, SceneManagerEvent even
          default:
             break;
       }
-   } 
+   }
    return consumed;
 }