| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- commit 2ecfcd857da54b7a08014d14d7b46eb235b72695
- Author: MX <10697207+xMasterX@users.noreply.github.com>
- Date: Thu Jun 13 01:08:02 2024 +0300
- limit TD to fix crash and bump version
-
- worker not resetting to idle when TD is 0.0
- diff --git a/.gitignore b/.gitignore
- index e2a15a10a..fd6c84ea7 100644
- --- a/.gitignore
- +++ b/.gitignore
- @@ -1,4 +1,5 @@
- dist/*
- .vscode
- .clang-format
- -.editorconfig
- \ No newline at end of file
- +.editorconfig
- +.DS_Store
- diff --git a/CHANGELOG.md b/CHANGELOG.md
- index 67ef71b64..9d4c8a752 100644
- --- a/CHANGELOG.md
- +++ b/CHANGELOG.md
- @@ -1,3 +1,5 @@
- +## v1.4
- +- Fix worker being not in LFRFIDWorkerIdle before next key (limit TD to 0.1)
- ## v1.3
- - New systems in RFID Fuzzer:
- - IoProxXSF
- diff --git a/application.fam b/application.fam
- index 4e56c92c3..6416775cb 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.3",
- + fap_version="1.4",
- 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.3",
- + fap_version="1.4",
- targets=["f7"],
- fap_description="Fuzzer for lfrfid readers",
- fap_icon="icons/rfid_10px.png",
- diff --git a/views/attack.c b/views/attack.c
- index 4748c3686..86d2c6d2b 100644
- --- a/views/attack.c
- +++ b/views/attack.c
- @@ -438,7 +438,7 @@ FuzzerViewAttack* fuzzer_view_attack_alloc() {
- FuzzerViewAttackModel * model,
- {
- model->time_delay = fuzzer_proto_get_def_idle_time();
- - model->time_delay_min = 0; // model->time_delay;
- + model->time_delay_min = 1; // model->time_delay;
-
- model->emu_time = fuzzer_proto_get_def_emu_time();
-
|