client/common: support new login screen

This commit is contained in:
2026-05-05 05:39:45 +00:00
parent e72bb6d4c4
commit 34a51075f4
10 changed files with 65 additions and 30 deletions
+5 -2
View File
@@ -1,6 +1,9 @@
/// Stub implementation of the platform interface, so that we can
/// `cargo check` without any --feature flags.
use crate::{app::SharedState, effects::AudioProcessor};
use crate::{
app::{ConnectTarget, SharedState},
effects::AudioProcessor,
};
use color_eyre::eyre::Error;
use futures_channel::mpsc::UnboundedReceiver;
use mumble_web2_common::{ProxyOverrides, ServerStatus};
@@ -21,7 +24,7 @@ impl super::PlatformInterface for StubPlatform {
}
fn network_connect(
_address: String,
_target: ConnectTarget,
_username: String,
_event_rx: &mut UnboundedReceiver<crate::app::Command>,
_overrides: &ProxyOverrides,