Skip to content

Commit

Permalink
Updates from Eng1n33r/Nano/xMasterX/Unleashed
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Aug 16, 2022
1 parent b4caa0b commit 637912d
Show file tree
Hide file tree
Showing 7 changed files with 1,935 additions and 1,189 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
- Known Issues: `FAP Loader` & `Chess`
- [Force Restart on Battery Display setting change #234 (By ESurge)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/pull/234)
- Changed Bluetooth Name to be "Flipper" + Name instead of "Rogue" or "zzRogue" + Name (Due to an Android app bug)

- Audio.IR updated and remote file updated By [Unleashed/xMasterX](https://github.com/Eng1n33r/flipperzero-firmware)
- Update Mifare Classic dict asset By [Unleashed/xMasterX](https://github.com/Eng1n33r/flipperzero-firmware)
- Added some extra checks for custom flipper names By [Unleashed/xMasterX](https://github.com/Eng1n33r/flipperzero-firmware)

<table width="100%" border="0" cellspacing="0">
<tr> <td colspan=2> <h3>This software is for experimental purposes only and is not meant for any illegal activity/purposes. We do not condone illegal activity and strongly encourage keeping transmissions to legal/valid uses allowed by law.</h3> </td> </tr>
Expand Down
29 changes: 27 additions & 2 deletions applications/infrared/scenes/infrared_scene_universal_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void infrared_scene_universal_audio_on_enter(void* context) {

infrared_brute_force_set_db_filename(brute_force, EXT_PATH("infrared/assets/audio.ir"));
//TODO Improve Audio universal remote
button_panel_reserve(button_panel, 2, 1);
button_panel_reserve(button_panel, 2, 2);
uint32_t i = 0;
button_panel_add_item(
button_panel,
Expand All @@ -37,8 +37,33 @@ void infrared_scene_universal_audio_on_enter(void* context) {
infrared_scene_universal_common_item_callback,
context);
infrared_brute_force_add_record(brute_force, i++, "MUTE");
button_panel_add_item(
button_panel,
i,
0,
1,
3,
64,
&I_Vol_up_25x27,
&I_Vol_up_hvr_25x27,
infrared_scene_universal_common_item_callback,
context);
infrared_brute_force_add_record(brute_force, i++, "VOL+");
button_panel_add_item(
button_panel,
i,
1,
1,
36,
64,
&I_Vol_down_25x27,
&I_Vol_down_hvr_25x27,
infrared_scene_universal_common_item_callback,
context);
infrared_brute_force_add_record(brute_force, i++, "VOL-");

button_panel_add_label(button_panel, 4, 11, FontSecondary, "Audio remote");
button_panel_add_label(button_panel, 5, 11, FontSecondary, "Audio remote");
button_panel_add_label(button_panel, 17, 60, FontSecondary, "Volume");

view_set_orientation(view_stack_get_view(infrared->view_stack), ViewOrientationVertical);
view_dispatcher_switch_to_view(infrared->view_dispatcher, InfraredViewStack);
Expand Down
2 changes: 1 addition & 1 deletion applications/subghz/scenes/subghz_scene_show_only_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void subghz_scene_show_only_rx_on_enter(void* context) {
Popup* popup = subghz->popup;

const char* header_text = "Transmission is blocked";
const char* message_text = "Transmission on\nthis frequency is\nrestricted in\nyour region";
const char* message_text = "This frequency is\noutside of default\nrange";
if(!furi_hal_region_is_provisioned()) {
header_text = "Firmware update needed";
message_text = "Please update\nfirmware before\nusing this feature\nflipp.dev/upd";
Expand Down
Loading

0 comments on commit 637912d

Please sign in to comment.