P1 key_restore_prompt: offer recovery-key restore right after login P2 incoming calls: mount overlay in app.dart + detect MSC3401 call.member (Element X signalling) — calls were previously invisible P3 message edit: editMessage/EditMessage + Edit dialog (reactions/delete were already wired) P5 panic button: new feature/panic module — hold-to-send alert text + m.location to a configured room; alert sent before geolocation so a denied permission never blocks it All verified end-to-end in headless Chromium against production build. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
669 B
Dart
19 lines
669 B
Dart
// Version: 2.1.0 | Created: 2026-04-01 | Updated: 2026-07-03
|
|
// App-wide constants. Change matrixBaseUrl for different environments.
|
|
|
|
abstract final class AppConfig {
|
|
static const String matrixBaseUrl = 'https://matrix.m8chat.au';
|
|
static const String matrixServerName = 'matrix.m8chat.au';
|
|
static const String livekitJwtUrl =
|
|
'https://matrix.m8chat.au/_matrix/livekit/jwt';
|
|
static const List<String> turnUrls = [
|
|
'turn:matrix.m8chat.au:3478',
|
|
'turns:matrix.m8chat.au:5349',
|
|
];
|
|
static const String appName = 'M8Chat';
|
|
static const String appVersion = '1.7.0';
|
|
|
|
// Jitsi conferencing
|
|
static const String jitsiDomain = 'conf.m8chat.au';
|
|
}
|