mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-17 04:34:44 -07:00
remove duplicate function, update changelog
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
### New changes
|
### New changes
|
||||||
* OFW PR: keeloq, new option for gen manufacture code & Update keeloq_mfcodes (KGB, Teco) (OFW PR 1748 by Skorpionm)
|
* OFW: Fixed NFC Mifare classic dict attack uses wrong keys (OFW PR 1769)
|
||||||
* FAAC, BFT keys not removed, new keeloq type changed to 6, FAAC is 5
|
* Infrared: removed duplicate function, moved reset to scene exit
|
||||||
* Some minor gui fix in nfc
|
|
||||||
|
|
||||||
#### **DFU files no longer included in releases to avoid issues with wrong manual installation of assets - use .tgz file with qFlipper, or install automatically via web updater or use microSD update package**
|
#### **DFU files no longer included in releases to avoid issues with wrong manual installation of assets - use .tgz file with qFlipper, or install automatically via web updater or use microSD update package**
|
||||||
|
|
||||||
|
|||||||
@@ -157,7 +157,3 @@ void infrared_brute_force_add_record(
|
|||||||
InfraredBruteForceRecordDict_set_at(brute_force->records, key, value);
|
InfraredBruteForceRecordDict_set_at(brute_force->records, key, value);
|
||||||
string_clear(key);
|
string_clear(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
void infrared_brute_force_reset(InfraredBruteForce* brute_force) {
|
|
||||||
InfraredBruteForceRecordDict_reset(brute_force->records);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -21,4 +21,3 @@ void infrared_brute_force_add_record(
|
|||||||
InfraredBruteForce* brute_force,
|
InfraredBruteForce* brute_force,
|
||||||
uint32_t index,
|
uint32_t index,
|
||||||
const char* name);
|
const char* name);
|
||||||
void infrared_brute_force_reset(InfraredBruteForce* brute_force);
|
|
||||||
|
|||||||
@@ -33,8 +33,6 @@ static void infrared_scene_universal_common_hide_popup(Infrared* infrared) {
|
|||||||
|
|
||||||
void infrared_scene_universal_common_on_enter(void* context) {
|
void infrared_scene_universal_common_on_enter(void* context) {
|
||||||
Infrared* infrared = context;
|
Infrared* infrared = context;
|
||||||
infrared_brute_force_clear_records(infrared->brute_force);
|
|
||||||
button_panel_reset_selection(infrared->button_panel);
|
|
||||||
view_stack_add_view(infrared->view_stack, button_panel_get_view(infrared->button_panel));
|
view_stack_add_view(infrared->view_stack, button_panel_get_view(infrared->button_panel));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,6 +87,6 @@ void infrared_scene_universal_common_on_exit(void* context) {
|
|||||||
Infrared* infrared = context;
|
Infrared* infrared = context;
|
||||||
ButtonPanel* button_panel = infrared->button_panel;
|
ButtonPanel* button_panel = infrared->button_panel;
|
||||||
view_stack_remove_view(infrared->view_stack, button_panel_get_view(button_panel));
|
view_stack_remove_view(infrared->view_stack, button_panel_get_view(button_panel));
|
||||||
infrared_brute_force_reset(infrared->brute_force);
|
infrared_brute_force_clear_records(infrared->brute_force);
|
||||||
button_panel_reset(button_panel);
|
button_panel_reset(button_panel);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user