Commit Graph

10723 Commits

Author SHA1 Message Date
Claude b01ea3f567 fix: BinaryTree.root for non-power-of-2 leaf counts
The root of an MLS left-balanced tree uses ceil(log2(n)), not
floor(log2(n)). For power-of-2 leaf counts both give the same result,
which is why the tree-math test vectors (all power-of-2) didn't catch
this. For non-power-of-2 counts like 9 leaves, root was computed as
node 7 (subtree root) instead of node 15 (actual tree root).

Also restored _leafCount = (nodesList.size + 1) / 2 for full serialized
node count, with tree-validation using logical leaf count from
tree_hashes.size for trees with trailing blanks.

Test results: 38/41 passing (93%).

Remaining 3 failures:
- EncryptWithLabel: HPKE X25519 DH discrepancy
- TranscriptHash (2): Needs AuthenticatedContent decomposition

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 21:43:44 +00:00
Claude e0995ea5ff fix: restore rightmost-non-null leaf count for tree-validation compat
The RatchetTree leaf count must be computed from the rightmost non-null
node, not the total serialized node count. Tree-validation vectors
include trailing blank nodes that aren't part of the logical tree.

Test results: 36/41 passing (88%).

Remaining 5 failures:
- EncryptWithLabel: X25519 DH result discrepancy with test vector
- TreeOperations (2): tree_hash mismatch for trees with blank interior
  leaf slots (leaf count computation needs tree-topology-aware logic)
- TranscriptHash (2): needs AuthenticatedContent decomposition

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:52:46 +00:00
Claude b2d31aab72 fix: Add proposal test format and minor test cleanups
The add_proposal field in messages.json contains a raw KeyPackage
(the body of an Add proposal) without the uint16 proposal type prefix.
Fixed the test to decode the KeyPackage directly with round-trip
verification.

Test results: 36/41 passing (88%).

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:48:56 +00:00
Claude 9c94344399 feat: add AAD support to AESGCM for MLS AEAD compliance
Added encrypt(data, aad) and decrypt(data, aad) overloads to the
AESGCM expect/actual class across all platforms:

- JVM/Android: Uses Cipher.updateAAD() with AES/GCM/NoPadding
- Apple: Uses whyoleg.cryptography encryptWithIvBlocking(iv, data, aad)
- Linux: Same as Apple via whyoleg.cryptography

Updated HPKE aeadSeal/aeadOpen and MlsCryptoProvider aeadEncrypt/aeadDecrypt
to use the AAD-aware methods instead of ignoring the AAD parameter.

The EncryptWithLabel test still fails due to an X25519 DH computation
discrepancy between Python reference and the Quartz JVM implementation.
The HPKE implementation is internally consistent (MlsGroupTest passes).

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:46:22 +00:00
Claude 9d34bb8b2e fix: tree hash type discriminant and leaf count from rightmost node
RFC 9420 Section 7.9 tree hash input includes a type discriminant byte:
- Leaf: H(uint8(1) || uint32(leaf_index) || optional<LeafNode>)
- Parent: H(uint8(2) || optional<ParentNode> || opaque left<V> || opaque right<V>)

Also fixed RatchetTree leaf count computation to use the rightmost
non-blank node position instead of total serialized node count,
since trees may be serialized with trailing blank nodes.

Test results: 35/41 passing (85%).

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:23:16 +00:00
Claude 449d998064 fix: tree hash computation, proposal test format, parent_hash cleanup
1. Tree hash (RFC 9420 Section 7.9): Leaf hash now includes
   uint32(leaf_index) before optional<LeafNode>. Parent hash wraps
   left_hash and right_hash with VarInt-prefixed opaques.

2. Message serialization tests: Fixed Add/Remove proposal tests to
   match the messages.json format (Add includes type prefix,
   Remove is just uint32 body without type prefix).

Test results: 34/41 passing (83%).

Remaining 7 failures:
- EncryptWithLabel: HPKE AEAD needs AAD support
- Add proposal: KeyPackage decode issue in test data
- Transcript hashes (2): Need AuthenticatedContent parsing
- Tree hash (1): May need per-node hash verification
- Tree operations (2): Tree hash still mismatches after operations

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:17:02 +00:00
Claude fe7a4d6f9f fix: MLS-Exporter label encoding and remove unused raw-byte overload
The exporter test vector labels are hex-encoded strings used AS-IS
(as string labels), not decoded from hex to bytes. The test was
incorrectly hex-decoding the label before passing it.

Also removed the now-unused expandWithLabelRaw and ByteArray mlsExporter
overloads since the string-based API is correct for all MLS usage.

Test results: 33/41 passing (80%).

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:13:48 +00:00
Claude 621196b74f fix: VarInt encoding migration and LeafNode parent_hash for COMMIT
Major interop fixes discovered by IETF test vectors:

1. VarInt migration: All MLS TLS struct serialization now uses
   QUIC-style VarInt encoding for opaque<V> and vector<V> fields,
   matching OpenMLS and mls-rs wire format. Added readVarInt(),
   readOpaqueVarInt(), readVectorVarInt() to TlsReader and
   putVectorVarInt() to TlsWriter.

2. SecretTree left/right derivation: Fixed tree secret splitting
   to use "left"/"right" as context strings per RFC 9420 Section 9,
   instead of byte(0)/byte(1).

3. LeafNode parent_hash: Added parent_hash<V> field for COMMIT
   source per RFC 9420 Section 7.2. The COMMIT case is NOT empty -
   it includes a parent_hash opaque field.

4. MLS-Exporter: Added ByteArray overload for raw byte labels
   (test vectors use non-UTF-8 label bytes).

Test results: 32/41 passing (78%), up from 25/41 (61%).
Newly passing: SecretTree (2), TreeValidation deserialization (1),
TreeValidation resolution (1), TreeKem deserialization (1),
Commit deserialization (1), RatchetTree deserialization (1).

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 20:10:40 +00:00
Claude 4fc99021ae fix: correct key schedule welcome_secret derivation order
The welcome_secret must be derived from member_secret (the Extract of
joiner_secret and psk_secret), not directly from joiner_secret. This
matches the RFC 9420 key schedule diagram where welcome_secret is
derived after the psk extraction step.

Before: welcome = DeriveSecret(joiner_secret, "welcome")
After:  member = Extract(joiner_secret, psk_secret)
        welcome = DeriveSecret(member, "welcome")
        epoch = ExpandWithLabel(member, "epoch", GroupContext, Nh)

This fix was discovered and validated by the IETF interop test vectors.
Key schedule tests now pass all 11 derived secrets across multiple epochs.

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 19:51:54 +00:00
Claude d1409c84bc fix: correct MLS wire format encoding for interop with OpenMLS/mls-rs
Three encoding bugs found by IETF interop test vectors:

1. ExpandWithLabel: label and context length prefixes must use
   QUIC-style variable-length integer encoding (VarInt), not fixed-size
   opaque prefixes. Values < 64 use 1 byte, 64-16383 use 2 bytes with
   0x40 prefix. This is critical when GroupContext (112+ bytes) is
   passed as context.

2. RefHash: label and value also use VarInt-prefixed opaque fields,
   matching the MLS TLS codec convention.

3. SecretTree: DeriveTreeSecret must pass the generation counter as a
   uint32 big-endian context parameter, not empty context. This affects
   key/nonce derivation and ratchet advancement.

Also fixes:
- SignContent and EncryptWithLabel/DecryptWithLabel info encoding
  updated to use VarInt
- KeySchedule test updated to use initial_init_secret from test vector
  (not hardcoded zeros)
- Added putOpaqueVarInt() to TlsWriter for QUIC-style VarInt encoding

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 19:42:27 +00:00
Claude fe505c2fb9 feat: add IETF RFC 9420 MLS interop test vectors and test suite
Import the canonical IETF MLS test vectors from mlswg/mls-implementations
to verify wire-format compatibility with OpenMLS and mls-rs. These are
the same test vectors used by both Rust implementations for cross-
implementation interop validation.

Phase 1 (Foundations):
- crypto-basics.json: RefHash, ExpandWithLabel, DeriveSecret,
  DeriveTreeSecret, SignWithLabel, EncryptWithLabel
- tree-math.json: Binary tree arithmetic for all tree sizes
- key-schedule.json: Full 12-secret epoch key derivation chain
- secret-tree.json: Per-sender handshake/application ratchet keys

Phase 2 (Wire Format):
- messages.json: Round-trip serialization of all MLS message types
- message-protection.json: PublicMessage/PrivateMessage framing
- transcript-hashes.json: Confirmed/interim transcript hash computation

Phase 3 (TreeKEM):
- treekem.json: UpdatePath processing, path secret derivation
- tree-validation.json: Tree hash and resolution verification
- tree-operations.json: Add/remove/update proposal application
- welcome.json: Welcome message deserialization

Phase 4 (End-to-End Protocol):
- passive-client-welcome.json: Join via Welcome, follow epochs
- passive-client-handling-commit.json: Process varied commit types
- passive-client-random.json: Randomized multi-epoch scenarios

Initial test results reveal ExpandWithLabel encoding discrepancy
in HkdfLabel context field that cascades to most crypto operations.
Tree math tests pass fully. These findings demonstrate the value of
importing standard interop vectors.

https://claude.ai/code/session_01NocQDWj2Y92FugjfgazzL3
2026-04-03 19:00:05 +00:00
Vitor Pamplona 32f6815fb5 Merge pull request #2108 from vitorpamplona/claude/implement-mls-engine-kotlin-Jz9RL
test: add comprehensive MLS engine tests and fix self-decrypt ratchet
2026-04-03 14:20:24 -04:00
Vitor Pamplona 5622d0d531 Merge pull request #2107 from vitorpamplona/claude/fix-call-ringing-issue-OGVEG
Fix call audio state transitions and notification handling
2026-04-03 14:19:23 -04:00
Claude fe13b77e22 fix: harden call cleanup to guarantee nothing is left running
Three issues addressed:

1. Make cleanup() exception-safe: wrap each WebRTC dispose call in
   its own try-catch so that a failure in one (e.g. native crash
   disposing a PeerConnection) does not skip releasing the camera,
   audio mode, foreground service, or EGL context.

2. Upgrade the Idle safety net to call cleanup() instead of only
   stopping ringing/notifications. If the Ended state is missed due
   to StateFlow conflation, the Idle handler now performs full
   resource cleanup (camera, WebRTC, audio mode, foreground service,
   proximity wake lock). cleanup() is idempotent since all resources
   are null-checked and nulled out.

3. Call cleanup() in AccountViewModel.onCleared() so that WebRTC
   resources, camera, audio mode, and foreground service are released
   when the ViewModel is destroyed (e.g. logout, activity recreation).

4. Clear processedEventIds when transitioning to Idle to prevent
   unbounded memory growth across calls.

https://claude.ai/code/session_01GWRdrVAa29BsDkv8R7Z3Y9
2026-04-03 18:16:09 +00:00
Claude 286685c0bd fix: stop ringback tone when Connecting state is skipped by StateFlow conflation
StateFlow is conflated — when the state transitions rapidly from
Offering → Connecting → Connected, the collector may skip Connecting
entirely and only see Connected. Since stopRingbackTone() was only
called in the Connecting handler, the ringback tone would keep playing
through the entire call.

Fix: duplicate the ringing/notification cleanup in the Connected handler
so the tone is always stopped regardless of which state the collector
sees first. Also make switchToCallAudioMode() idempotent and clean up
the previous ToneGenerator in startRingbackTone() to prevent leaks.

https://claude.ai/code/session_01GWRdrVAa29BsDkv8R7Z3Y9
2026-04-03 18:11:22 +00:00
Claude b9db4f8e38 test: add comprehensive MLS engine tests and fix self-decrypt ratchet
Add interop-focused tests for all MLS engine components:
- Ed25519 sign/verify round-trips (JVM)
- X25519 DH key agreement verification (JVM)
- HPKE seal/open encryption cycle (JVM)
- Key schedule determinism and secret derivation (commonMain)
- MlsGroup integration: create, encrypt/decrypt, add/remove members

Fix MlsGroup self-decrypt by caching sent key/nonce generations to
avoid ratchet conflict when decrypting own messages on the same instance.

https://claude.ai/code/session_01966YzookEUQDwszM3YCgeR
2026-04-03 18:10:57 +00:00
Vitor Pamplona 9be9117362 Merge pull request #2106 from vitorpamplona/claude/implement-mls-engine-kotlin-Jz9RL
Add MLS (Messaging Layer Security) implementation for Marmot
2026-04-03 13:55:36 -04:00
Vitor Pamplona f01fb9e70a Merge pull request #2105 from vitorpamplona/claude/fix-call-ringing-bug-aZlur
Fix call state handling to prevent missed cleanup due to StateFlow conflation
2026-04-03 13:34:43 -04:00
Claude a1f8817fce fix: stop call ringing when Ended state is missed due to StateFlow conflation
The state collector in CallController was blocking on
showIncomingCallNotification() which downloads the caller's profile
picture over the network. Because StateFlow is conflated, if the call
ended (peer hangup, reject, timeout) while the collector was suspended,
the Ended→Idle transition would cause the Ended emission to be lost.
Since cleanup/stopRinging only ran in the Ended handler, the ringtone
and vibration would continue indefinitely.

Two fixes:
1. Launch showIncomingCallNotification in a separate coroutine so the
   collector is never blocked by network I/O.
2. Add a safety-net Idle handler that stops ringing, ringback tone,
   and cancels the call notification.

https://claude.ai/code/session_01NfyLNgR4d8yjnxaQJ6FUt5
2026-04-03 17:31:06 +00:00
Vitor Pamplona 5250ef0abd Merge pull request #2104 from vitorpamplona/claude/fix-endcall-ui-user-81baC
Exclude current user from peer lists in call UI
2026-04-03 13:22:09 -04:00
Claude a6c1909602 fix: filter out logged-in user from call member pictures in all call states
The Offering, Ended, Connected, and PipConnected call states were showing
the logged-in user's picture alongside other call members. IncomingCall and
Connecting already filtered correctly. Now all states consistently exclude
the current user via `- accountViewModel.account.signer.pubKey`.

https://claude.ai/code/session_01PFzKU8Y3nUQXhshA3MT5EM
2026-04-03 17:20:53 +00:00
Claude 119f9dd966 feat: implement MLS cryptographic engine in pure Kotlin (Phase 3)
Implements the core MLS (RFC 9420) engine for Marmot Protocol integration,
targeting ciphersuite 0x0001 (DHKEM-X25519, AES-128-GCM, SHA-256, Ed25519).

Components:
- codec/: TLS presentation language encoder/decoder (RFC 8446 Section 3)
- crypto/: Ed25519 signatures, X25519 ECDH, HPKE (RFC 9180), MlsCryptoProvider
  with ExpandWithLabel, DeriveSecret, SignWithLabel, EncryptWithLabel
- tree/: Left-balanced binary tree, LeafNode/ParentNode, RatchetTree with
  TreeKEM encap/decap, tree hashing, resolution, path secret derivation
- schedule/: Key schedule (epoch secret derivation chain), SecretTree
  (per-sender encryption ratchets), MLS-Exporter function
- framing/: MLSMessage, PublicMessage, PrivateMessage, content types
- messages/: Proposal (Add/Remove/Update/SelfRemove), Commit, UpdatePath,
  Welcome, GroupInfo, GroupContext, KeyPackage, GroupSecrets
- group/: MlsGroup high-level API (create, join via Welcome, add/remove
  members, encrypt/decrypt messages, export keys for Marmot outer layer)

Crypto uses expect/actual pattern: JVM/Android via java.security (EdDSA, XDH),
native platforms stubbed for future implementation. Reuses existing Quartz
primitives (AESGCM, HKDF, SHA-256, HMAC, ChaCha20-Poly1305).

Includes tests for TLS codec, binary tree arithmetic, and MLS type roundtrips.

https://claude.ai/code/session_01966YzookEUQDwszM3YCgeR
2026-04-03 17:00:41 +00:00
Vitor Pamplona 31448ad1f6 Makes sure relays and tor are available if just the call activity starts. 2026-04-03 12:59:34 -04:00
Vitor Pamplona 858f13d60f Merge pull request #2103 from vitorpamplona/claude/debug-webrtc-connecting-Q7Jo8
Refactor CallController for multi-peer group calls with mesh topology
2026-04-03 12:58:14 -04:00
Claude fcecb5241c feat: implement full-mesh WebRTC group calls with per-peer PeerConnections
Replaces the single-PeerConnection architecture with full mesh topology
where each participant maintains one PeerConnection per peer, as
specified by NIP-AC.

WebRtcCallSession: Refactored to a pure PeerConnection wrapper that
accepts a shared PeerConnectionFactory. No longer manages media sources,
tracks, or camera — those are now shared across all peer sessions.

CallController: Manages per-peer sessions via ConcurrentHashMap. Shared
resources (PeerConnectionFactory, EglBase, audio/video sources, camera)
are initialized once and reused. Each peer gets its own WebRtcCallSession
with per-peer ICE candidate routing. Supports callee-to-callee mesh
connections with pubkey-based tie-breaking to avoid ofer glare.

CallManager: New methods for per-peer offer/answer publishing
(publishOfferToPeer, publishAnswerToPeer, beginOffering). Forwards ALL
answers to CallController (not just the first). New callbacks
onNewPeerInGroupCall and onMidCallOfferReceived for mesh setup. Handles
mid-call offers (same call-id) when already in Connecting/Connected state.

AccountViewModel: Updated callback wiring to pass peer pubkey with
answer events and register new group call callbacks.

https://claude.ai/code/session_01J5fJx9YbSBx1BsBMctiAm8
2026-04-03 16:54:00 +00:00
Vitor Pamplona 425f8463ec Merge pull request #2102 from vitorpamplona/l10n_crowdin_translations
New Crowdin Translations
2026-04-03 12:42:04 -04:00
Crowdin Bot 7342b6c066 New Crowdin translations by GitHub Action 2026-04-03 16:05:11 +00:00
davotoula f78e152d35 update translations: CZ, DE, PT, SE 2026-04-03 17:55:44 +02:00
Vitor Pamplona 57a505c877 Merge pull request #2101 from vitorpamplona/claude/marmot-encryption-group-state-3hXJ4
Add Marmot protocol support with MIP-00, MIP-02, MIP-03, MIP-05 implementations
2026-04-03 11:38:41 -04:00
Claude 0488245200 fix: send ICE candidates to all peers and exclude self from peer set
Two bugs caused WebRTC group calls to get stuck in "Connecting":

1. CallController.onLocalIceCandidate() used currentPeerPubKey() which
   returns only the first peer via firstOrNull(). ICE candidates were
   gift-wrapped to only one peer; the others never received them.
   Fixed by iterating over all currentPeerPubKeys().

2. CallManager.acceptCall() set Connecting.peerPubKeys to groupMembers
   which includes the local user's own pubkey. This caused
   currentPeerPubKey() to potentially return self, sending ICE
   candidates to oneself instead of the caller.
   Fixed by filtering out signer.pubKey from the peer set.

https://claude.ai/code/session_01J5fJx9YbSBx1BsBMctiAm8
2026-04-03 15:36:50 +00:00
Claude c4096dbd1a test: add comprehensive tests for Marmot Phase 2 components
38 test cases covering:
- ChaCha20Poly1305: RFC 8439 §2.8.2 test vector, round-trip, tamper
  detection, wrong key, invalid nonce/key length, large messages
- GroupEventEncryption: round-trip, empty/large messages, format
  validation, random nonce uniqueness, tamper detection, integration
  with GroupEvent.build()
- CommitOrdering: deterministic winner selection (lowest created_at,
  smallest id tiebreak), comparator sorting, EpochCommitTracker
  lifecycle (add/resolve/clear)
- KeyPackageUtils: validation (encoding, content, ref), selection
  policy (prefer non-last-resort, newest), migration kind detection
- MarmotFilters: all filter builders produce correct kinds, tags,
  authors, since parameters; no empty filters

https://claude.ai/code/session_01Ee5wmBAXwN46AJYUGYA9RQ
2026-04-03 15:33:00 +00:00
Claude 6cbd56c53d feat: add Marmot Phase 2 — encryption, group state, and lifecycle helpers
Implements encryption/decryption, gift-wrap flows, and utility logic for
the Marmot MLS-over-Nostr protocol, building on the Phase 1 event defs.

New files:
- ChaCha20Poly1305: standard AEAD (12-byte nonce) for MIP-03 outer layer
- GroupEventEncryption: encrypt/decrypt GroupEvent content with MLS key
- WelcomeGiftWrap: NIP-59 gift-wrap pipeline for Welcome messages
- KeyPackageUtils: selection policy, rotation, migration helpers
- CommitOrdering: deterministic conflict resolution for MLS commits
- MarmotFilters: relay subscription filter builders for all Marmot events
- TokenEncryption: ECDH + HKDF + ChaCha20 token encryption for MIP-05

https://claude.ai/code/session_01Ee5wmBAXwN46AJYUGYA9RQ
2026-04-03 15:23:31 +00:00
Vitor Pamplona 7eaa01f197 Merge pull request #2100 from vitorpamplona/claude/fix-call-ui-dark-mode-3Unot
Fix call UI to exclude current user from peer list
2026-04-03 11:19:49 -04:00
Claude 7210776113 fix: filter self from connecting call UI and fix dark mode text color
1. Filter out the logged-in user from the Connecting state UI, matching
   the existing behavior in IncomingCall state.
2. Change GroupCallNames default textColor from Color.Unspecified to
   MaterialTheme.colorScheme.onSurface so names are visible in dark mode
   (Box+background doesn't set LocalContentColor like Surface does).

https://claude.ai/code/session_016sDH1SL7P8aXhcyFaFtzYu
2026-04-03 15:18:50 +00:00
Vitor Pamplona e22ecf2825 Merge pull request #2099 from vitorpamplona/claude/fix-webrtc-disconnect-issue-1HDAl
Fix group call handling for answer/reject events
2026-04-03 10:40:49 -04:00
Claude 4a529a304c fix: prevent group call participants from disconnecting when another member answers/rejects
In group calls (e.g. Alice calls Bob and Charlie), when Bob accepts the
call, a CallAnswerEvent is gift-wrapped to all group members including
Charlie. Charlie's CallManager, still in IncomingCall state, was treating
ANY CallAnswerEvent as "answered elsewhere" (intended for multi-device
scenarios) and ending the call prematurely.

The fix checks whether the answering/rejecting peer is actually the
current user (signer.pubKey) before treating it as an "answered/rejected
elsewhere" event. If it's a different group member, we simply ignore it
and keep ringing.

https://claude.ai/code/session_01EYzWB93PZRqw15QuQadCf4
2026-04-03 14:37:29 +00:00
Vitor Pamplona d7eabf0f80 Merge pull request #2098 from vitorpamplona/claude/mls-nostr-integration-nFDom
Add Marmot protocol support (MIP-00 through MIP-05)
2026-04-03 10:31:16 -04:00
Vitor Pamplona cd7850aa73 Merge pull request #2097 from vitorpamplona/claude/filter-video-call-display-uQAXE
Exclude current user from group call member displays
2026-04-03 10:25:14 -04:00
Claude 33ae066bdc feat: add Marmot Protocol event definitions for MLS-over-Nostr
Implements Nostr event kinds for the Marmot Protocol (MIP-00 through MIP-05),
which provides end-to-end encrypted group messaging using MLS (RFC 9420) with
Nostr as the identity and transport layer.

Event kinds added:
- kind 30443: KeyPackage (addressable, MIP-00) — MLS KeyPackage publication
- kind 10051: KeyPackage Relay List (replaceable, MIP-00) — KeyPackage discovery
- kind 444: Welcome (MIP-02) — gift-wrapped group onboarding
- kind 445: Group Event (MIP-03) — encrypted group messages and control
- kind 446: Notification Request (MIP-05) — push notification trigger
- kind 447: Token Request (MIP-05) — push token gossip
- kind 448: Token List (MIP-05) — push token sync response
- kind 449: Token Removal (MIP-05) — push token cleanup

Also includes:
- MarmotGroupData model (MIP-01) — 0xF2EE extension data structure
- MlsCiphersuite enum — RFC 9420 ciphersuite registry
- Full tag definitions following existing quartz patterns

https://claude.ai/code/session_017jmJgCAXnaiVh1HsbC8CrW
2026-04-03 14:23:55 +00:00
Claude 6b6adf81f2 fix: filter logged-in user from incoming video call display
Remove the current user's picture and name from the incoming call
screen so only the other participants are shown.

https://claude.ai/code/session_01F4LLE1PZ84oNURN8RQwNuc
2026-04-03 14:20:47 +00:00
Vitor Pamplona 090da72d35 Merge branch 'main' of https://github.com/vitorpamplona/amethyst 2026-04-03 10:10:10 -04:00
Vitor Pamplona f35fafec92 Fixes missing imports 2026-04-03 10:03:43 -04:00
Vitor Pamplona 64bdfd0231 Merge pull request #2095 from vitorpamplona/l10n_crowdin_translations
New Crowdin Translations
2026-04-03 09:57:10 -04:00
Crowdin Bot cedb9cba76 New Crowdin translations by GitHub Action 2026-04-03 13:35:02 +00:00
Vitor Pamplona 2f7fd94d28 Merge pull request #2096 from vitorpamplona/claude/debug-webrtc-connecting-h4M8P
Add comprehensive logging to WebRTC call session and controller
2026-04-03 09:33:41 -04:00
Claude 76477373d9 debug: add comprehensive WebRTC call flow logging to diagnose "stuck on Connecting"
Adds debug logging across CallManager, CallController, and WebRtcCallSession
to trace the full call lifecycle: SDP offer/answer creation, remote description
set success/failure, ICE candidate exchange, ICE connection state transitions,
and signaling state changes. The noOpSdpObserver is replaced with a logging
observer so setRemoteDescription success/failure is visible in logcat.

Filter logcat with: CallManager|CallController|WebRtcCallSession

https://claude.ai/code/session_01M3yyyRyu8KWJZ5PjNt4V2H
2026-04-03 13:30:50 +00:00
Vitor Pamplona 501e028567 Merge pull request #2093 from greenart7c3/claude/consolidate-poll-screen-KVUg2
Simplify poll creation UI and consolidate poll types
2026-04-03 09:28:56 -04:00
Vitor Pamplona 7eab27fada Merge pull request #2094 from vitorpamplona/claude/fix-hardware-bitmap-performance-U8bmz
Disable hardware acceleration for profile picture image loading
2026-04-03 09:26:14 -04:00
Claude 423b9ac4aa fix: disable hardware bitmaps for notification icons to avoid StrictMode violation
Hardware bitmaps cannot be efficiently read for pixels, which is required
when parceling notifications. Adding allowHardware(false) to all image
requests used for notification bitmaps prevents the slow pixel readback.

https://claude.ai/code/session_018y75qshU48REuHXxLH3Tmb
2026-04-03 13:18:55 +00:00
Vitor Pamplona 316290ac32 Merge pull request #2092 from vitorpamplona/claude/add-hashtag-limit-filter-N8sMZ
Add maximum hashtag limit security filter
2026-04-03 08:55:13 -04:00