From f52cc04f2643369e9a53902e5695b923cb73ad9e Mon Sep 17 00:00:00 2001 From: Jage9 Date: Sat, 21 Feb 2026 03:02:13 -0500 Subject: [PATCH] Extend low-pass floor to 50 Hz across 0-100 range --- client/public/version.js | 2 +- client/src/audio/effects.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/public/version.js b/client/public/version.js index f429416..6bb8d72 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.21 R85"; +window.CHGRID_WEB_VERSION = "2026.02.21 R86"; // Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid. window.CHGRID_TIME_ZONE = "America/Detroit"; diff --git a/client/src/audio/effects.ts b/client/src/audio/effects.ts index 91131a8..6e409f6 100644 --- a/client/src/audio/effects.ts +++ b/client/src/audio/effects.ts @@ -61,7 +61,7 @@ export function connectEffectChain( if (effect === 'high_pass') { filter.frequency.value = 120 + effectMix * 7000; } else { - filter.frequency.value = 7800 - effectMix * 7600; + filter.frequency.value = 7800 - effectMix * 7750; } filter.Q.value = 0.7 + effectMix * 8; input.connect(filter);