From 74e54d710603c717a7ed4466159384591f54c957 Mon Sep 17 00:00:00 2001 From: UberGuidoZ <57457139+UberGuidoZ@users.noreply.github.com> Date: Thu, 8 Feb 2024 21:02:22 -0800 Subject: [PATCH 1/3] Fixed name --- Sub-GHz/Doorbells/{Hampton_Bay.cap => Hampton_Bay.sub} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Sub-GHz/Doorbells/{Hampton_Bay.cap => Hampton_Bay.sub} (100%) diff --git a/Sub-GHz/Doorbells/Hampton_Bay.cap b/Sub-GHz/Doorbells/Hampton_Bay.sub similarity index 100% rename from Sub-GHz/Doorbells/Hampton_Bay.cap rename to Sub-GHz/Doorbells/Hampton_Bay.sub From 726404c386ffcad8b8853d44ff1d241036abeab7 Mon Sep 17 00:00:00 2001 From: UberGuidoZ <57457139+UberGuidoZ@users.noreply.github.com> Date: Thu, 8 Feb 2024 21:29:10 -0800 Subject: [PATCH 2/3] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index c1e7983f..42afe14a 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -3,7 +3,7 @@ ## If you're new to github in general, check out [this great guide](https://github.com/wrenchathome/flipperfiles/blob/main/_Guides/How2Flipper.pdf) from Wr3nch! -Just want the files easily? Talking Sasquach has you covered. [Check out the video](https://www.youtube.com/watch?v=12M_oHmxcCQ) or [just head to the repo](https://squach.zip/flipper). +Just want the files easily? Talking Sasquach has you covered. [Check out the video](https://www.youtube.com/watch?v=12M_oHmxcCQ) or [just head to the repo](https://squach.zip/flipper) (might be out of date). ----- From 967db77c2aa3328f3e712c3a659951898c5be0a2 Mon Sep 17 00:00:00 2001 From: UberGuidoZ <57457139+UberGuidoZ@users.noreply.github.com> Date: Thu, 8 Feb 2024 22:38:50 -0800 Subject: [PATCH 3/3] Added quick batch file to cleanup SD card after copying files --- Clean_up_files.bat | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Clean_up_files.bat diff --git a/Clean_up_files.bat b/Clean_up_files.bat new file mode 100644 index 00000000..55499c1a --- /dev/null +++ b/Clean_up_files.bat @@ -0,0 +1,23 @@ +echo off +@title Flipper SD Cleaner +cls +cd /D "%~dp0" +echo. +echo Continuing will DELETE FILES from %~dp0 and all subdirectories. +echo All .git, .mp4, .jp*, .png, .md, and README files will be removed! +echo. +echo If you're good with that, press any key to continue. Otherwise, close out. +pause > NUL +echo. +echo Deleting files, please wait... +attrib *.* -h -s -r /s +del *.git /s /q +del *.mp4 /s /q +del *.jp* /s /q +del *.png /s /q +del *.md /s /q +del README /s /q +echo. +echo Done! Press any key to exit. (Scroll up for errors if desired.) +pause > NUL +exit \ No newline at end of file