From e955bc630eb8510be4ec27a5128906eac8f32035 Mon Sep 17 00:00:00 2001 From: Megan Rogge Date: Thu, 23 Jul 2026 09:35:22 -0400 Subject: [PATCH] Add voice-mode-listening-on and voice-mode-listening-off icons Adds two 16x16 icons for VS Code voice features: - voice-mode-listening-on (60628): person speaking, filled (active) - voice-mode-listening-off (60629): person speaking, outline (inactive) Updated mapping.json and metadata.json to include the new icons. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: da6e59a8-07f0-468f-a500-4f96b981ba51 --- src/icons/voice-mode-listening-off.svg | 1 + src/icons/voice-mode-listening-on.svg | 1 + src/template/mapping.json | 6 ++++++ src/template/metadata.json | 24 ++++++++++++++++++++++++ 4 files changed, 32 insertions(+) create mode 100644 src/icons/voice-mode-listening-off.svg create mode 100644 src/icons/voice-mode-listening-on.svg diff --git a/src/icons/voice-mode-listening-off.svg b/src/icons/voice-mode-listening-off.svg new file mode 100644 index 0000000..190f95d --- /dev/null +++ b/src/icons/voice-mode-listening-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/voice-mode-listening-on.svg b/src/icons/voice-mode-listening-on.svg new file mode 100644 index 0000000..66e3f65 --- /dev/null +++ b/src/icons/voice-mode-listening-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/template/mapping.json b/src/template/mapping.json index 22d278f..e327893 100644 --- a/src/template/mapping.json +++ b/src/template/mapping.json @@ -1962,5 +1962,11 @@ ], "60627": [ "microsoft" + ], + "60628": [ + "voice-mode-listening-on" + ], + "60629": [ + "voice-mode-listening-off" ] } diff --git a/src/template/metadata.json b/src/template/metadata.json index dc13ec0..961ee3f 100644 --- a/src/template/metadata.json +++ b/src/template/metadata.json @@ -7007,5 +7007,29 @@ ], "category": "media", "description": "Compact voice mode waveform with download indicator" + }, + "voice-mode-listening-on": { + "tags": [ + "voice", + "audio", + "listening", + "microphone", + "speech", + "active" + ], + "category": "media", + "description": "Voice mode listening indicator (active)" + }, + "voice-mode-listening-off": { + "tags": [ + "voice", + "audio", + "listening", + "microphone", + "speech", + "inactive" + ], + "category": "media", + "description": "Voice mode listening indicator (inactive)" } }