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
+6 -6
View File
@@ -55,8 +55,8 @@ use crate::{
};
use serde::{Deserialize, Serialize};
use url::Url;
use warp_core::HostId;
use warpui::{
use galaxy_core::HostId;
use galaxyui::{
elements::{DispatchEventResult, EventHandler, MouseInBehavior},
presenter::ChildView,
Action, AppContext, Element, Entity, EntityId, ModelContext, ModelHandle, SingletonEntity,
@@ -381,7 +381,7 @@ impl PaneId {
pub(super) fn deferred_placeholder_pane_id() -> Self {
Self(IPaneId {
pane_type: IPaneType::DeferredPlaceholder,
pane_view_id: warpui::EntityId::new(),
pane_view_id: galaxyui::EntityId::new(),
})
}
@@ -390,7 +390,7 @@ impl PaneId {
pub fn dummy_pane_id() -> Self {
Self(IPaneId {
pane_type: IPaneType::Dummy,
pane_view_id: warpui::EntityId::new(),
pane_view_id: galaxyui::EntityId::new(),
})
}
@@ -495,9 +495,9 @@ impl PaneId {
IPaneType::Welcome => {
ChildView::<PaneView<WelcomeView>>::with_id(self.0.pane_view_id).finish()
}
IPaneType::DeferredPlaceholder => warpui::elements::Empty::new().finish(),
IPaneType::DeferredPlaceholder => galaxyui::elements::Empty::new().finish(),
#[cfg(test)]
IPaneType::Dummy => warpui::elements::Empty::new().finish(),
IPaneType::Dummy => galaxyui::elements::Empty::new().finish(),
};
if *PaneSettings::as_ref(app).focus_panes_on_hover {
element = EventHandler::new(element)