From e198ef5f807413402f92d00deb3c05966d21cf63 Mon Sep 17 00:00:00 2001 From: Jage9 Date: Sun, 22 Feb 2026 16:45:45 -0500 Subject: [PATCH] Update mic gain wording and add Feb 22 changelog entry --- client/public/changelog.json | 3 ++- client/public/help.json | 2 +- client/public/version.js | 2 +- client/src/main.ts | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/client/public/changelog.json b/client/public/changelog.json index 78b9b5d..59c02c7 100644 --- a/client/public/changelog.json +++ b/client/public/changelog.json @@ -4,7 +4,8 @@ "date": "February 22, 2026", "items": [ "Added support for Dropbox links and HTTP streams for item sounds and radio stations.", - "You will no longer repeatedly hit walls." + "You will no longer repeatedly hit walls.", + "Added user volume control and calibration." ] }, { diff --git a/client/public/help.json b/client/public/help.json index ff9d8e8..f180281 100644 --- a/client/public/help.json +++ b/client/public/help.json @@ -132,7 +132,7 @@ }, { "keys": "V", - "description": "Set volume" + "description": "Set microphone gain" }, { "keys": "Shift+V", diff --git a/client/public/version.js b/client/public/version.js index 1da6b60..488c6a8 100644 --- a/client/public/version.js +++ b/client/public/version.js @@ -1,5 +1,5 @@ // Maintainer-controlled web client version. // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) -window.CHGRID_WEB_VERSION = "2026.02.22 R154"; +window.CHGRID_WEB_VERSION = "2026.02.22 R155"; // Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid. window.CHGRID_TIME_ZONE = "America/Detroit"; diff --git a/client/src/main.ts b/client/src/main.ts index d1a4dbb..855ac80 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -1524,7 +1524,7 @@ function handleNormalModeInput(code: string, shiftKey: boolean): void { state.nicknameInput = formatSteppedNumber(audio.getOutboundInputGain(), MIC_INPUT_GAIN_STEP); state.cursorPos = state.nicknameInput.length; replaceTextOnNextType = true; - updateStatus(`Set volume: ${state.nicknameInput}`); + updateStatus(`Set microphone gain: ${state.nicknameInput}`); audio.sfxUiBlip(); return; } @@ -1886,7 +1886,7 @@ function handleMicGainEditModeInput(code: string, key: string, ctrlKey: boolean) persistMicInputGain(applied); state.mode = 'normal'; replaceTextOnNextType = false; - updateStatus(`Volume set to ${formatSteppedNumber(applied, MIC_INPUT_GAIN_STEP)}.`); + updateStatus(`Microphone gain set to ${formatSteppedNumber(applied, MIC_INPUT_GAIN_STEP)}.`); audio.sfxUiConfirm(); return; }