feat(groups): audio and video calls in group chats; release v6.6.6
A group call is N-1 ordinary 1:1 calls, one to each other member, each riding the pairwise session that member already has — a transport a human already authenticated by comparing the safety code. No mixer, no SFU, no point at which two people's media meets anywhere but on a device. Call control is separate from call media, because the two reach different sets of people. Who opened a call, who joined and who left travels as group frames signed with the sender's group identity key, so it reaches members currently reachable only through a relay — and a relaying member can drop one but cannot write one. Media flows only where a direct link exists, so a member without one shows as connecting rather than being omitted. Frames carry a per-sender sequence checked before the action, so a captured leave cannot end a later call, and simultaneous calls converge on the lower random call id. One capture is shared across every leg rather than one getUserMedia per member, and legs answer without prompting: the flag permitting that is set only locally, only while this user is in the call, and cleared when they leave. UI: a gallery that sizes itself from the space it has, a spotlight view, an active-speaker indicator read from the waveform, and the call surface in the same visual language as the 1:1 one. Also in this commit, the v6.5.0 language-suggestion work that had not been pushed yet; its notes are in the changelog. And two fixes: the safety-code input asks for digits rather than text, and starting a new chat from inside a group no longer creates it behind the group where it cannot be seen — which had made it impossible to connect to anyone new, or to add anyone to a group, while a group was open. Claude-Session: https://claude.ai/code/session_01XSxAkET3hQTkYDQfbjCQwZ
This commit is contained in:
+26
-1
@@ -36,6 +36,9 @@
|
||||
},
|
||||
"ui": {
|
||||
"language.label": "שפה",
|
||||
"language.suggest.text": "הדף הזה זמין גם בעברית.",
|
||||
"language.suggest.cta": "לקריאה בעברית",
|
||||
"language.suggest.dismiss": "סגירה",
|
||||
"community.title": "הצטרפו לעתיד של הפרטיות",
|
||||
"community.description": "SecureBit גדל בזכות הקהילה שלו. הרעיונות והמשוב שלכם מעצבים את עתיד התקשורת המאובטחת - נבנה בגלוי, עם אימות ASN.1 מלא מקצה לקצה.",
|
||||
"community.github": "מאגר GitHub",
|
||||
@@ -781,6 +784,28 @@
|
||||
"offline.disconnect": "ניתוק",
|
||||
"offline.learnMore": "מידע נוסף",
|
||||
"pwa.installApp": "התקנת האפליקציה",
|
||||
"chat.onWeb": "אתם בגרסת הווב"
|
||||
"chat.onWeb": "אתם בגרסת הווב",
|
||||
"groupCall.startVoice": "התחלת שיחה קולית קבוצתית",
|
||||
"groupCall.startVideo": "התחלת שיחת וידאו קבוצתית",
|
||||
"groupCall.join": "הצטרפות",
|
||||
"groupCall.dismiss": "לא עכשיו",
|
||||
"groupCall.leave": "יציאה מהשיחה",
|
||||
"groupCall.you": "את/ה",
|
||||
"groupCall.connecting": "מתחבר…",
|
||||
"groupCall.waitingLink": "ממתין לקישור ישיר…",
|
||||
"groupCall.legFailed": "ההתחברות נכשלה",
|
||||
"groupCall.startedVoice": "{name} התחיל שיחה קולית",
|
||||
"groupCall.startedVideo": "{name} התחיל שיחת וידאו",
|
||||
"groupCall.inCall": "{count} בשיחה",
|
||||
"groupCall.err.permission_denied": "השיחה לא התחילה - הגישה למיקרופון ולמצלמה חסומה. אפשרו אותה לאתר הזה ונסו שוב.",
|
||||
"groupCall.err.device_not_found": "השיחה לא התחילה - לא נמצא מיקרופון במכשיר הזה.",
|
||||
"groupCall.err.device_busy": "השיחה לא התחילה - המיקרופון בשימוש אפליקציה אחרת. סגרו אותה ונסו שוב.",
|
||||
"groupCall.err.media_failed": "השיחה לא התחילה - לא ניתן היה לפתוח את המיקרופון.",
|
||||
"groupCall.err.call_in_progress": "כבר מתקיימת שיחה בקבוצה הזו. הצטרפו אליה במקום להתחיל אחת חדשה.",
|
||||
"groupCall.err.not_ready": "אשרו את קוד הקבוצה לפני שיחה.",
|
||||
"groupCall.speaking": "{name} מדבר/ת",
|
||||
"groupCall.pin": "הצגת {name} בגדול",
|
||||
"groupCall.unpin": "חזרה לכולם",
|
||||
"groupCall.showEveryone": "כולם"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user