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
@@ -11,11 +11,11 @@ use crate::telemetry::OnboardingEvent;
use ai::LLMId;
use instant::Instant;
use std::time::Duration;
use warp_core::features::FeatureFlag;
use warp_core::send_telemetry_from_ctx;
use warpui::assets::asset_cache::AssetSource;
use warpui::image_cache::ImageType;
use warpui::windowing::{
use galaxy_core::features::FeatureFlag;
use galaxy_core::send_telemetry_from_ctx;
use galaxyui::assets::asset_cache::AssetSource;
use galaxyui::image_cache::ImageType;
use galaxyui::windowing::{
state::{ApplicationStage, StateEvent},
WindowManager,
};
@@ -24,9 +24,9 @@ const APP_BECAME_ACTIVE_DEBOUNCE: Duration = Duration::from_secs(15);
use pathfinder_geometry::vector::vec2f;
use ui_components::{button, Component as _, Options as _};
use warp_core::ui::{appearance::Appearance, theme::WarpTheme};
use warpui::elements::Rect;
use warpui::{
use galaxy_core::ui::{appearance::Appearance, theme::WarpTheme};
use galaxyui::elements::Rect;
use galaxyui::{
elements::{
CacheOption, ChildAnchor, Container, Empty, Image, OffsetPositioning, ParentAnchor,
ParentElement, ParentOffsetBounds, Shrinkable, Stack,
@@ -339,7 +339,7 @@ impl AgentOnboardingView {
/// Eagerly loads all onboarding slide images into the asset cache
/// so they display instantly when the user navigates between slides.
fn preload_onboarding_images(ctx: &mut ViewContext<Self>) {
let asset_cache = warpui::assets::asset_cache::AssetCache::as_ref(ctx);
let asset_cache = galaxyui::assets::asset_cache::AssetCache::as_ref(ctx);
// Preload the shared background image used on all right panels.
asset_cache.load_asset::<ImageType>(AssetSource::Bundled {
path: crate::slides::layout::ONBOARDING_BG_PATH,