From a5c7110648e2aaeb73883a134bbd16609b967b36 Mon Sep 17 00:00:00 2001 From: Alex Iribarren Date: Mon, 25 Aug 2025 14:47:14 +0200 Subject: [PATCH] Add one more gain option --- homepage/static/custom-audio-player.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homepage/static/custom-audio-player.js b/homepage/static/custom-audio-player.js index 1252d37..f07db77 100644 --- a/homepage/static/custom-audio-player.js +++ b/homepage/static/custom-audio-player.js @@ -573,8 +573,8 @@ Channels: ${channels}` return container; }; - const gainOptions = ["Off", "6", "12", "18", "24"]; - const gainValues = { Off: 1, "6": 2, "12": 4, "18": 8, "24": 16 }; + const gainOptions = ["Off", "6", "12", "18", "24", "30"]; + const gainValues = { Off: 1, "6": 2, "12": 4, "18": 8, "24": 16, "30": 32 }; let activeGain = gainOptions.includes(savedGain) ? savedGain : "Off"; const gainContainer = createOptionSection("Gain (dB):"); const gainButtons = gainOptions.map((opt) =>