diff --git a/CHANGELOG.md b/CHANGELOG.md index 36bdd5a31..3a40583c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,6 @@ [-> Download qFlipper 1.2.1 (allows .tgz installation) (official link)](https://update.flipperzero.one/builds/qFlipper/1.2.1/) ## Please support development of the project -* Boosty: https://boosty.to/mmxdev * destream (100 EUR min): https://destream.net/live/MMX/donate * cloudtips (only RU payments accepted): https://pay.cloudtips.ru/p/7b3e9d65 * USDT(TRC20): `TSXcitMSnWXUFqiUfEXrTVpVewXy2cYhrs` diff --git a/ReadMe.md b/ReadMe.md index 0143fca57..52d786341 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -67,7 +67,6 @@ Also check changelog in releases for latest updates! - Star Line ## Please support development of the project -* Boosty: https://boosty.to/mmxdev * destream (100 EUR min): https://destream.net/live/MMX/donate * cloudtips (only RU payments accepted): https://pay.cloudtips.ru/p/7b3e9d65 * USDT(TRC20): `TSXcitMSnWXUFqiUfEXrTVpVewXy2cYhrs` diff --git a/applications/main/subghz/scenes/subghz_scene_rpc.c b/applications/main/subghz/scenes/subghz_scene_rpc.c index 64acac0b3..68f2e0199 100644 --- a/applications/main/subghz/scenes/subghz_scene_rpc.c +++ b/applications/main/subghz/scenes/subghz_scene_rpc.c @@ -49,7 +49,7 @@ bool subghz_scene_rpc_on_event(void* context, SceneManagerEvent event) { rpc_system_app_set_error_code(subghz->rpc_ctx, SubGhzErrorTypeOnlyRX); rpc_system_app_set_error_text( subghz->rpc_ctx, - "Transmission on this frequency is restricted in your region"); + "Transmission on this frequency is restricted in your settings"); } rpc_system_app_confirm(subghz->rpc_ctx, RpcAppEventButtonPress, result); } else if(event.event == SubGhzCustomEventSceneRpcButtonRelease) { diff --git a/applications/main/unirfremix/unirfremix_app.c b/applications/main/unirfremix/unirfremix_app.c index 5b5f5bb83..6ade9c9b0 100644 --- a/applications/main/unirfremix/unirfremix_app.c +++ b/applications/main/unirfremix/unirfremix_app.c @@ -806,6 +806,7 @@ int32_t unirfremix_app(void* p) { DialogsFileBrowserOptions browser_options; dialog_file_browser_set_basic_options(&browser_options, UNIRFMAP_EXTENSION, &I_sub1_10px); + browser_options.base_path = UNIRFMAP_FOLDER; bool res = dialog_file_browser_show(dialogs, app->file_path, app->file_path, &browser_options); diff --git a/applications/plugins/flipfrid/scene/flipfrid_scene_load_custom_uids.c b/applications/plugins/flipfrid/scene/flipfrid_scene_load_custom_uids.c index 9130b2d92..32157556b 100644 --- a/applications/plugins/flipfrid/scene/flipfrid_scene_load_custom_uids.c +++ b/applications/plugins/flipfrid/scene/flipfrid_scene_load_custom_uids.c @@ -27,6 +27,7 @@ bool flipfrid_load_custom_uids_from_file(FlipFridState* context) { DialogsFileBrowserOptions browser_options; dialog_file_browser_set_basic_options(&browser_options, LFRFID_UIDS_EXTENSION, &I_125_10px); + browser_options.base_path = RFIDFUZZER_APP_PATH_FOLDER; browser_options.hide_ext = false; bool res = dialog_file_browser_show(context->dialogs, uid_path, uid_path, &browser_options); diff --git a/applications/plugins/flipfrid/scene/flipfrid_scene_load_file.c b/applications/plugins/flipfrid/scene/flipfrid_scene_load_file.c index b2e27fc9a..5f3f1a31b 100644 --- a/applications/plugins/flipfrid/scene/flipfrid_scene_load_file.c +++ b/applications/plugins/flipfrid/scene/flipfrid_scene_load_file.c @@ -177,6 +177,7 @@ bool flipfrid_load_protocol_from_file(FlipFridState* context) { DialogsFileBrowserOptions browser_options; dialog_file_browser_set_basic_options(&browser_options, LFRFID_APP_EXTENSION, &I_125_10px); + browser_options.base_path = LFRFID_APP_PATH_FOLDER; // Input events and views are managed by file_select bool res = dialog_file_browser_show( diff --git a/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_custom_uids.c b/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_custom_uids.c index 8f1a422b3..07199ab46 100644 --- a/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_custom_uids.c +++ b/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_custom_uids.c @@ -28,6 +28,7 @@ bool ibtnfuzzer_load_custom_uids_from_file(iBtnFuzzerState* context) { DialogsFileBrowserOptions browser_options; dialog_file_browser_set_basic_options( &browser_options, IBTNFUZZER_UIDS_EXTENSION, &I_ibutt_10px); + browser_options.base_path = IBTNFUZZER_APP_PATH_FOLDER; browser_options.hide_ext = false; bool res = dialog_file_browser_show(context->dialogs, uid_path, uid_path, &browser_options); diff --git a/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_file.c b/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_file.c index 99e6db733..47d5122ab 100644 --- a/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_file.c +++ b/applications/plugins/ibtn_fuzzer/scene/ibtnfuzzer_scene_load_file.c @@ -164,6 +164,7 @@ bool ibtnfuzzer_load_protocol_from_file(iBtnFuzzerState* context) { DialogsFileBrowserOptions browser_options; dialog_file_browser_set_basic_options( &browser_options, IBUTTON_FUZZER_APP_EXTENSION, &I_ibutt_10px); + browser_options.base_path = IBUTTON_FUZZER_APP_PATH_FOLDER; // Input events and views are managed by file_select bool res = dialog_file_browser_show( diff --git a/applications/plugins/wav_player/wav_player.c b/applications/plugins/wav_player/wav_player.c index 8798b788a..389b712ed 100644 --- a/applications/plugins/wav_player/wav_player.c +++ b/applications/plugins/wav_player/wav_player.c @@ -27,6 +27,7 @@ static bool open_wav_stream(Stream* stream) { DialogsFileBrowserOptions browser_options; dialog_file_browser_set_basic_options(&browser_options, ".wav", &I_music_10px); + browser_options.base_path = WAVPLAYER_FOLDER; browser_options.hide_ext = false; bool ret = dialog_file_browser_show(dialogs, path, path, &browser_options);