Merge branch 'DarkFlippers:dev' into subbrute-rev3

This commit is contained in:
Der Skythe 2022-10-10 19:26:25 +04:00 committed by GitHub
commit 61fe66c178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 56 additions and 8 deletions

View File

@ -4,5 +4,5 @@ contact_links:
url: https://t.me/flipperzero_unofficial
about: Unofficial Telegram chat
- name: Discord
url: https://discord.gg/58D6E8BtTU
url: https://discord.unleashedflip.com
about: Unofficial Discord Community

View File

@ -1,7 +1,10 @@
### New changes
* SubGHz: Fixed bugs with Decode option for RAW signals (blank screen, broken files)
* SubGHz: Allowed usage of hopper with detect raw feature (with attempt to fix) - WARNING -> This feature is very unstable, may cause crashes(with lost of captured signal), use at your own risk, it was enabled due to many requests from users
* PR -> Docs, fix description - Slight update for newest dev method (by @UberGuidoZ | PR #93)
* Plugins: RFID Fuzzer - fixed crash in load uids from file
* Fixed .fap's debug (unable to set breakpoint)
* PR: Turkish language support badusb layout (by @hardcod3dd | PR #95)
* New icon for UART Echo (by @Svaarich)
* New animaiton (flipper city) (by @Svaarich)
* Discord link updated
#### [🎲 Download extra apps pack](https://download-directory.github.io/?url=https://github.com/UberGuidoZ/Flipper/tree/main/Applications/Unleashed)

View File

@ -16,7 +16,7 @@ Please help us implement emulation for all subghz dynamic (rolling code) protoco
<br>
Our Discord Community:
<br>
<a href="https://discord.gg/flipperzero-unofficial"><img src="https://discordapp.com/api/guilds/937479784148115456/widget.png?style=banner4" alt="Unofficial Discord Community"></a>
<a href="https://discord.unleashedflip.com"><img src="https://discordapp.com/api/guilds/937479784148115456/widget.png?style=banner4" alt="Unofficial Discord Community"></a>
<br>
<br>
@ -156,7 +156,7 @@ Games:
# Links
* Unofficial Discord: [discord.gg/flipperzero-unofficial](https://discord.gg/flipperzero-unofficial)
* Unofficial Discord: [discord.unleashedflip.com](https://discord.unleashedflip.com)
* Docs by atmanos / How to write your own app (outdated API): [https://flipper.atmanos.com/docs/overview/intro](https://flipper.atmanos.com/docs/overview/intro)
* Official Docs: [http://docs.flipperzero.one](http://docs.flipperzero.one)

View File

@ -533,14 +533,17 @@ void flipfrid_scene_run_attack_on_event(FlipFridEvent event, FlipFridState* cont
break;
case InputKeyBack:
if(context->attack == FlipFridAttackLoadFileCustomUids) {
furi_string_reset(context->data_str);
stream_rewind(context->uids_stream);
buffered_file_stream_close(context->uids_stream);
}
context->attack_step = 0;
counter = 0;
context->is_attacking = false;
furi_string_reset(context->notification_msg);
context->current_scene = SceneEntryPoint;
notification_message(context->notify, &sequence_blink_stop);
context->current_scene = SceneEntryPoint;
break;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,14 @@
Filetype: Flipper Animation
Version: 1
Width: 128
Height: 64
Passive frames: 10
Active frames: 0
Frames order: 0 1 2 3 4 5 6 7 8 9
Active cycles: 0
Frame rate: 4
Duration: 3600
Active cooldown: 0
Bubble slots: 0

View File

@ -106,6 +106,13 @@ Min level: 2
Max level: 3
Weight: 3
Name: L2_FlipperCity_128x64
Min butthurt: 0
Max butthurt: 13
Min level: 2
Max level: 3
Weight: 3
Name: L2_Soldering_128x64
Min butthurt: 0
Max butthurt: 10

View File

@ -0,0 +1,14 @@
Filetype: Flipper Animation
Version: 1
Width: 128
Height: 64
Passive frames: 10
Active frames: 0
Frames order: 0 1 2 3 4 5 6 7 8 9
Active cycles: 0
Frame rate: 4
Duration: 3600
Active cooldown: 0
Bubble slots: 0

View File

@ -106,6 +106,13 @@ Min level: 2
Max level: 3
Weight: 3
Name: L2_FlipperCity_128x64
Min butthurt: 0
Max butthurt: 13
Min level: 2
Max level: 3
Weight: 3
Name: L2_Soldering_128x64
Min butthurt: 0
Max butthurt: 10

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -111,7 +111,7 @@ def BuildAppElf(env, app):
)
app_elf_raw = app_env.Program(
os.path.join(app_work_dir, f"{app.appid}_d"),
os.path.join(ext_apps_work_dir, f"{app.appid}_d"),
app_sources,
APP_ENTRY=app.entry_point,
)