mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 06:25:41 +00:00
feat(orbit): per-guest suggestion mute + global pending-cap setting
Two anti-spam knobs the host can dial during a live session: 1. Per-guest suggestion mute — Mic / MicOff toggle next to the kick/ban buttons in the participants popover. Symmetric (re-enable later). State lives in OrbitState.suggestionBlocked: string[]; the guest reads it and disables its own Suggest controls so the user sees a clear "muted" state instead of silent failures. Host-side sweep also drops their outbox entries as a safety net. 2. Max pending approvals cap — number input in the session-settings popover, default 0 (= unlimited so existing sessions are unaffected). When set, the host sweep stops folding new outbox entries into the approval list once the cap is reached. The OrbitQueueHead surfaces "X / Y pending" so guests can see when they're getting close. State changes are additive on the wire — both fields are optional, with parseOrbitState defaulting them, so older clients keep working. evaluateOrbitSuggestGate() centralises the guest-side allow/block check shared between useOrbitSongRowBehavior and the ContextMenu Add-to-Session items, plus suggestOrbitTrack as a defensive last line. i18n: en + de + fr + nl + zh + nb + ru + es. Also fixes an earlier dedupe-key collision: the (user, trackId) cache keys were missing their separator (NULL byte slipped in during the previous patch), so two tracks could share a key and one of them silently overwrite the other. Restored the space separator. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1567,6 +1567,10 @@ export const esTranslation = {
|
||||
participantsRemoveAria: 'Quitar a {{user}} de esta sesión',
|
||||
participantsBanTooltip: 'Banear permanentemente',
|
||||
participantsBanAria: 'Banear permanentemente a {{user}}',
|
||||
participantsMuteTooltip: 'Silenciar sugerencias',
|
||||
participantsUnmuteTooltip: 'Permitir sugerencias',
|
||||
participantsMuteAria: 'Silenciar las sugerencias de {{user}}',
|
||||
participantsUnmuteAria: 'Volver a permitir las sugerencias de {{user}}',
|
||||
confirmRemoveTitle: '¿Quitar de la sesión?',
|
||||
confirmRemoveBody: '{{user}} será expulsado de la sesión, pero puede volver a unirse por tu enlace de invitación.',
|
||||
confirmRemoveConfirm: 'Quitar',
|
||||
@@ -1592,6 +1596,12 @@ export const esTranslation = {
|
||||
settingAutoShuffleHint: 'Mezclado Fisher-Yates periódico de la cola próxima. Desactivado: el orden solo cambia cuando lo reorganizas.',
|
||||
settingShuffleInterval: 'Remezclar cada',
|
||||
settingShuffleIntervalHint: 'Con qué frecuencia se remezcla la cola próxima durante la sesión.',
|
||||
settingMaxPending: 'Máx. sugerencias pendientes',
|
||||
settingMaxPendingHint: 'Límite de sugerencias de invitados que pueden esperar aprobación a la vez. 0 = ilimitado.',
|
||||
pendingCounter: '{{count}} / {{max}} pendientes',
|
||||
pendingCounterTooltip: 'Sugerencias de invitados pendientes / límite',
|
||||
suggestBlockedMuted: 'El anfitrión te silenció en esta sesión — sugerencias desactivadas.',
|
||||
suggestBlockedCap: 'La cola de aprobación está llena — espera a que el anfitrión despeje algunas.',
|
||||
settingShuffleIntervalValue_one: '{{count}} min',
|
||||
settingShuffleIntervalValue_other: '{{count}} min',
|
||||
settingShuffleNow: 'Mezclar ahora',
|
||||
|
||||
Reference in New Issue
Block a user