Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+3 -3
View File
@@ -12,8 +12,8 @@ use rubato::{
};
use thiserror::Error;
use warpui::event::KeyState;
use warpui::{Entity, ModelContext, SingletonEntity, platform::MicrophoneAccessState};
use galaxyui::event::KeyState;
use galaxyui::{Entity, ModelContext, SingletonEntity, platform::MicrophoneAccessState};
const DEFAULT_CHUNK_SIZE: u32 = 512;
// We only support mono for now.
@@ -217,7 +217,7 @@ impl VoiceInput {
.collect();
// This is blocking, but we aren't on the main thread.
let _ = warpui::r#async::block_on(audio_frame_tx.send(mono_samples));
let _ = galaxyui::r#async::block_on(audio_frame_tx.send(mono_samples));
},
|err| {
log::error!("Error in voice input stream: {err}");