| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- commit be4400adda3bc149a11fb45e68a1b33d82b126c5
- Author: MX <10697207+xMasterX@users.noreply.github.com>
- Date: Mon Sep 4 21:14:40 2023 +0300
- fixes part 2
- diff --git a/CHANGELOG.md b/CHANGELOG.md
- index 2cb83b16a..c1d3ada1e 100644
- --- a/CHANGELOG.md
- +++ b/CHANGELOG.md
- @@ -1,3 +1,5 @@
- +## v1.2
- +- Fixes for new auto-naming system
- ## v1.1
- - Improved pause during attack
- - Added the ability to switch UID
- diff --git a/application.fam b/application.fam
- index f8fde583f..ece85598a 100644
- --- a/application.fam
- +++ b/application.fam
- @@ -13,7 +13,7 @@ App(
- stack_size=2 * 1024,
- fap_author="gid9798 xMasterX",
- fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
- - fap_version="1.1",
- + fap_version="1.2",
- targets=["f7"],
- fap_description="Fuzzer for ibutton readers",
- fap_icon="icons/ibutt_10px.png",
- @@ -43,7 +43,7 @@ App(
- stack_size=2 * 1024,
- fap_author="gid9798 xMasterX",
- fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
- - fap_version="1.1",
- + fap_version="1.2",
- targets=["f7"],
- fap_description="Fuzzer for lfrfid readers",
- fap_icon="icons/rfid_10px.png",
- diff --git a/fuzzer_i.h b/fuzzer_i.h
- index ad10dd8a2..f8e40775c 100644
- --- a/fuzzer_i.h
- +++ b/fuzzer_i.h
- @@ -24,7 +24,7 @@
- #include "fuzzer_icons.h"
-
- #define FUZZ_TIME_DELAY_MAX (80)
- -#define KEY_NAME_SIZE 22
- +#define KEY_NAME_SIZE 24
-
- typedef struct {
- const char* custom_dict_extension;
|