gui: new login screen
Build Mumble Web 2 / macos_build (push) Successful in 1m1s
Build Mumble Web 2 / linux_build (push) Successful in 1m19s
Build Mumble Web 2 / windows_build (push) Successful in 2m51s
Build Mumble Web 2 / android_build (push) Successful in 4m40s

This commit is contained in:
2026-05-04 23:04:03 -06:00
parent e72bb6d4c4
commit d8d7475fc4
16 changed files with 1039 additions and 189 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ use crate::imp::{
pub async fn network_entrypoint(mut event_rx: UnboundedReceiver<Command>, state: SharedState) {
loop {
let Some(Command::Connect {
address,
target,
username,
config,
}) = event_rx.next().await
@@ -50,7 +50,7 @@ pub async fn network_entrypoint(mut event_rx: UnboundedReceiver<Command>, state:
*state.server.write_unchecked() = Default::default();
*state.status.write_unchecked() = ConnectionState::Connecting;
if let Err(error) =
Platform::network_connect(address, username, &mut event_rx, &config, state.clone())
Platform::network_connect(target, username, &mut event_rx, &config, state.clone())
.await
{
error!("could not connect {:?}", error);