swap review/coffee order in footers

This commit is contained in:
Timo
2026-06-08 20:58:44 +02:00
parent cad4b4a6db
commit c134e1bfae
2 changed files with 4 additions and 34 deletions
-30
View File
@@ -78,20 +78,6 @@ let pendingConnectionErrorMsg = null;
let roomListRefreshTimer = null;
let roomListRefreshInterval = null;
const ROOM_LIST_REFRESH_COOLDOWN_MS = 11000;
const DEFAULT_AUDIO_SETTINGS = {
enabled: false,
compressor: {
enabled: false,
preset: 'recommended',
customParams: {
threshold: -24,
knee: 30,
ratio: 12,
attack: 0.003,
release: 0.250
}
}
};
const FEATURE_HINTS = [
{
key: 'audio_processing',
@@ -101,22 +87,6 @@ const FEATURE_HINTS = [
}
];
function mergeAudioSettings(settings = {}) {
const safeSettings = settings && typeof settings === 'object' ? settings : {};
return {
...DEFAULT_AUDIO_SETTINGS,
...safeSettings,
compressor: {
...DEFAULT_AUDIO_SETTINGS.compressor,
...(safeSettings.compressor || {}),
customParams: {
...DEFAULT_AUDIO_SETTINGS.compressor.customParams,
...(safeSettings.compressor?.customParams || {})
}
}
};
}
// --- Helpers ---
function configureFooterLinks() {
const reviewUrl = getReviewUrl();