From 8ae710edecc2538ef5137c132d9123794331eda5 Mon Sep 17 00:00:00 2001 From: WillyJL Date: Wed, 8 Oct 2025 13:13:36 +0200 Subject: [PATCH 1/2] VSCode: Reduce file watcher resource usage (#4292) --- .vscode/example/settings.json.tmpl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.vscode/example/settings.json.tmpl b/.vscode/example/settings.json.tmpl index b8e9f81cd..06528ce8e 100644 --- a/.vscode/example/settings.json.tmpl +++ b/.vscode/example/settings.json.tmpl @@ -19,5 +19,13 @@ "--compile-commands-dir=${workspaceFolder}/build/latest", "--clang-tidy", "--header-insertion=never" - ] + ], + "files.watcherExclude": { + "**/.git/objects/**": true, + "**/.git/**/modules/**/objects/**": true, + "**/.git/**/subtree-cache/**": true, + "**/.git/**/rr-cache/**": true, + "build/**": true, + "toolchain/**": true + } } \ No newline at end of file From 468cc45f90757b15a05ae804699a29b45dd5246f Mon Sep 17 00:00:00 2001 From: RebornedBrain Date: Wed, 8 Oct 2025 16:26:48 +0300 Subject: [PATCH 2/2] Fix wrbl command tooltip (#4291) Co-authored-by: hedger --- applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c b/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c index 0bfcffe3c..99e51edcf 100644 --- a/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c +++ b/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c @@ -59,7 +59,7 @@ const NfcCliKeyDescriptor wrbl_action_keys[] = { //mfu rdbl --block 0 -- data DEADBEEF const NfcCliActionDescriptor wrbl_action = { .name = "wrbl", - .description = "Read block from ultralight card", + .description = "Write block to ultralight card", .alloc = nfc_cli_mfu_wrbl_alloc_ctx, .free = nfc_cli_mfu_wrbl_free_ctx, .execute = nfc_cli_mfu_wrbl_execute,