Files
brenden 682afacd30 Add native self-hosted instance connection to fluxer_desktop
Trimmed monorepo checkout (fluxer_desktop + packages/voice_engine_v2 +
tools/ci) with a "Connect to a Different Server" menu item and popout
that lets the desktop app switch to any self-hosted Fluxer instance,
plus fixes for well-known discovery on single-domain self-hosted
deployments and a false-positive ERR_ABORTED on same-origin client
redirects during the switch. Defaults to chat.fluxr.chat and uses an
isolated userData directory from the official build.
2026-07-01 18:22:43 -04:00

82 lines
2.0 KiB
JSON

{
"name": "remote subscription quality and participant volume commands",
"events": [
{"type": "connection.connectRequested", "options": {"url": "wss://voice", "token": "token"}},
{"type": "connection.connectSucceeded", "operationId": 1},
{
"type": "remoteTrackSubscription.setRequested",
"options": {
"participantIdentity": "alice",
"source": "screen",
"subscribed": true,
"enabled": true,
"quality": "high"
}
},
{
"type": "remoteTrackSubscription.setRequested",
"options": {
"participantIdentity": "alice",
"source": "screen",
"subscribed": true,
"enabled": true,
"quality": "high"
}
},
{
"type": "remoteTrackSubscription.setRequested",
"options": {
"participantIdentity": "alice",
"source": "screen",
"subscribed": true,
"enabled": true,
"quality": "low"
}
},
{"type": "participantVolume.setRequested", "options": {"participantIdentity": "alice", "volume": 0.35}},
{"type": "participantVolume.setRequested", "options": {"participantIdentity": "alice", "volume": 0.35}}
],
"expected": {
"remoteTrackSubscriptions": {
"alice:screen": {
"participantIdentity": "alice",
"source": "screen",
"subscribed": true,
"enabled": true,
"quality": "low"
}
},
"participantVolumes": {"alice": 0.35},
"commands": [
{"type": "connection.connect", "operationId": 1, "options": {"url": "wss://voice", "token": "token"}},
{
"type": "remoteTrackSubscription.set",
"operationId": 2,
"options": {
"participantIdentity": "alice",
"source": "screen",
"subscribed": true,
"enabled": true,
"quality": "high"
}
},
{
"type": "remoteTrackSubscription.set",
"operationId": 3,
"options": {
"participantIdentity": "alice",
"source": "screen",
"subscribed": true,
"enabled": true,
"quality": "low"
}
},
{
"type": "participantVolume.set",
"operationId": 4,
"options": {"participantIdentity": "alice", "volume": 0.35}
}
]
}
}