Update mic gain wording and add Feb 22 changelog entry
This commit is contained in:
@@ -4,7 +4,8 @@
|
|||||||
"date": "February 22, 2026",
|
"date": "February 22, 2026",
|
||||||
"items": [
|
"items": [
|
||||||
"Added support for Dropbox links and HTTP streams for item sounds and radio stations.",
|
"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."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -132,7 +132,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"keys": "V",
|
"keys": "V",
|
||||||
"description": "Set volume"
|
"description": "Set microphone gain"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"keys": "Shift+V",
|
"keys": "Shift+V",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// Maintainer-controlled web client version.
|
// Maintainer-controlled web client version.
|
||||||
// Format: YYYY.MM.DD Rn (example: 2026.02.20 R2)
|
// 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.
|
// Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid.
|
||||||
window.CHGRID_TIME_ZONE = "America/Detroit";
|
window.CHGRID_TIME_ZONE = "America/Detroit";
|
||||||
|
|||||||
@@ -1524,7 +1524,7 @@ function handleNormalModeInput(code: string, shiftKey: boolean): void {
|
|||||||
state.nicknameInput = formatSteppedNumber(audio.getOutboundInputGain(), MIC_INPUT_GAIN_STEP);
|
state.nicknameInput = formatSteppedNumber(audio.getOutboundInputGain(), MIC_INPUT_GAIN_STEP);
|
||||||
state.cursorPos = state.nicknameInput.length;
|
state.cursorPos = state.nicknameInput.length;
|
||||||
replaceTextOnNextType = true;
|
replaceTextOnNextType = true;
|
||||||
updateStatus(`Set volume: ${state.nicknameInput}`);
|
updateStatus(`Set microphone gain: ${state.nicknameInput}`);
|
||||||
audio.sfxUiBlip();
|
audio.sfxUiBlip();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1886,7 +1886,7 @@ function handleMicGainEditModeInput(code: string, key: string, ctrlKey: boolean)
|
|||||||
persistMicInputGain(applied);
|
persistMicInputGain(applied);
|
||||||
state.mode = 'normal';
|
state.mode = 'normal';
|
||||||
replaceTextOnNextType = false;
|
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();
|
audio.sfxUiConfirm();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user