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
@@ -16,18 +16,18 @@ cfg_if::cfg_if! {
use crate::index::path_passes_filters;
use ignore::gitignore::Gitignore;
use notify_debouncer_full::notify::{RecursiveMode, WatchFilter};
use warp_core::features::FeatureFlag;
use galaxy_core::features::FeatureFlag;
use watcher::{BulkFilesystemWatcher, BulkFilesystemWatcherEvent};
use warpui::r#async::Timer;
use warp_core::{send_telemetry_from_ctx, report_if_error};
use galaxyui::r#async::Timer;
use galaxy_core::{send_telemetry_from_ctx, report_if_error};
use crate::telemetry::AITelemetryEvent;
use instant::Instant;
use warp_core::channel::ChannelState;
use warp_core::safe_warn;
use galaxy_core::channel::ChannelState;
use galaxy_core::safe_warn;
}
}
use warp_core::safe_anyhow;
use warpui::{AppContext, Entity, ModelContext, ModelHandle, SingletonEntity};
use galaxy_core::safe_anyhow;
use galaxyui::{AppContext, Entity, ModelContext, ModelHandle, SingletonEntity};
use super::{
codebase_index::{CodebaseIndexEvent, RetrievalID, SyncProgress},
@@ -618,7 +618,7 @@ impl CodebaseIndexManager {
};
let standardized_path =
match warp_util::standardized_path::StandardizedPath::from_local_canonicalized(
match galaxy_util::standardized_path::StandardizedPath::from_local_canonicalized(
repo_path,
) {
Ok(path) => path,