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
@@ -2,9 +2,9 @@ use std::collections::HashSet;
use ai::skills::SkillReference;
use lazy_static::lazy_static;
use warpui::elements::ChildView;
use warpui::{AppContext, Element, ViewContext};
use warpui::{Entity, ModelHandle, View, ViewHandle};
use galaxyui::elements::ChildView;
use galaxyui::{AppContext, Element, ViewContext};
use galaxyui::{Entity, ModelHandle, View, ViewHandle};
use crate::ai::blocklist::agent_view::AgentViewController;
use crate::search::data_source::{Query, QueryFilter};
@@ -268,7 +268,7 @@ impl View for InlineSlashCommandView {
"InlineSlashCommandView"
}
fn render(&self, _app: &warpui::AppContext) -> Box<dyn Element> {
fn render(&self, _app: &galaxyui::AppContext) -> Box<dyn Element> {
ChildView::new(&self.menu_view).finish()
}
}