mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 23:45:18 +00:00
Harden PTT audio and the 1.7.1 release (#1423)
Centralize PTT and voice audio-session ownership, harden courier/bridge/outbox delivery and recovery, correct location and delivery-state races, add privacy/release metadata, and ship reproducible universal Arti slices with Release CI coverage. Validated by the full iOS suite, repeated audio/fragment/performance regressions, BitFoundation tests, strict lint and dead-code analysis, universal iOS Release builds, and iOS/macOS archives.
This commit is contained in:
@@ -791,6 +791,10 @@ private final class PerfPipelineFixture {
|
||||
let identityManager = MockIdentityManager(keychain)
|
||||
let transport = MockTransport()
|
||||
let conversations = ConversationStore()
|
||||
let locationSuite = "PerformanceBaselineTests.\(UUID().uuidString)"
|
||||
let locationStorage = UserDefaults(suiteName: locationSuite) ?? .standard
|
||||
locationStorage.removePersistentDomain(forName: locationSuite)
|
||||
let locationManager = LocationChannelManager(storage: locationStorage)
|
||||
|
||||
self.conversations = conversations
|
||||
self.viewModel = ChatViewModel(
|
||||
@@ -798,7 +802,8 @@ private final class PerfPipelineFixture {
|
||||
idBridge: idBridge,
|
||||
identityManager: identityManager,
|
||||
transport: transport,
|
||||
conversations: conversations
|
||||
conversations: conversations,
|
||||
locationManager: locationManager
|
||||
)
|
||||
self.privateInbox = PrivateInboxModel(conversations: conversations)
|
||||
self.publicChat = PublicChatModel(conversations: conversations)
|
||||
|
||||
Reference in New Issue
Block a user