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
+1 -1
View File
@@ -1,7 +1,7 @@
pub mod settings;
mod stack;
use warpui::{keymap::EditableBinding, AppContext};
use galaxyui::{keymap::EditableBinding, AppContext};
use crate::{util::bindings::CustomAction, workspace::WorkspaceAction};
+2 -2
View File
@@ -1,5 +1,5 @@
use uuid::Uuid;
use warpui::{
use galaxyui::{
r#async::SpawnedFutureHandle, AppContext, ClosedWindowData, Entity, EntityId, ModelContext,
ModelHandle, SingletonEntity, ViewHandle, WeakViewHandle, WindowId,
};
@@ -362,7 +362,7 @@ impl UndoCloseStack {
let id = ItemId::new();
let grace_period = *settings.grace_period;
let task_handle = ctx.spawn_abortable(
warpui::r#async::Timer::after(grace_period),
galaxyui::r#async::Timer::after(grace_period),
move |me, _, ctx| {
let initial_len = me.stack.len();
if let Some(pos) = me.stack.iter().position(|item| item.expiry_data.id == id) {