multi_fuzzer 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. commit be4400adda3bc149a11fb45e68a1b33d82b126c5
  2. Author: MX <10697207+xMasterX@users.noreply.github.com>
  3. Date: Mon Sep 4 21:14:40 2023 +0300
  4. fixes part 2
  5. diff --git a/CHANGELOG.md b/CHANGELOG.md
  6. index 2cb83b16a..c1d3ada1e 100644
  7. --- a/CHANGELOG.md
  8. +++ b/CHANGELOG.md
  9. @@ -1,3 +1,5 @@
  10. +## v1.2
  11. +- Fixes for new auto-naming system
  12. ## v1.1
  13. - Improved pause during attack
  14. - Added the ability to switch UID
  15. diff --git a/application.fam b/application.fam
  16. index f8fde583f..ece85598a 100644
  17. --- a/application.fam
  18. +++ b/application.fam
  19. @@ -13,7 +13,7 @@ App(
  20. stack_size=2 * 1024,
  21. fap_author="gid9798 xMasterX",
  22. fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
  23. - fap_version="1.1",
  24. + fap_version="1.2",
  25. targets=["f7"],
  26. fap_description="Fuzzer for ibutton readers",
  27. fap_icon="icons/ibutt_10px.png",
  28. @@ -43,7 +43,7 @@ App(
  29. stack_size=2 * 1024,
  30. fap_author="gid9798 xMasterX",
  31. fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
  32. - fap_version="1.1",
  33. + fap_version="1.2",
  34. targets=["f7"],
  35. fap_description="Fuzzer for lfrfid readers",
  36. fap_icon="icons/rfid_10px.png",
  37. diff --git a/fuzzer_i.h b/fuzzer_i.h
  38. index ad10dd8a2..f8e40775c 100644
  39. --- a/fuzzer_i.h
  40. +++ b/fuzzer_i.h
  41. @@ -24,7 +24,7 @@
  42. #include "fuzzer_icons.h"
  43. #define FUZZ_TIME_DELAY_MAX (80)
  44. -#define KEY_NAME_SIZE 22
  45. +#define KEY_NAME_SIZE 24
  46. typedef struct {
  47. const char* custom_dict_extension;