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
@@ -9,8 +9,8 @@ use std::{
path::{Path, PathBuf},
};
use warp_core::{safe_warn, send_telemetry_from_ctx};
use warpui::ModelHandle;
use galaxy_core::{safe_warn, send_telemetry_from_ctx};
use galaxyui::ModelHandle;
/// Represents either a file or directory in a repository.
#[derive(Debug, Clone)]
@@ -19,7 +19,7 @@ pub enum RepoContent<'a> {
Directory(&'a FileTreeDirectoryEntryState),
}
use warp_util::standardized_path::StandardizedPath;
use galaxy_util::standardized_path::StandardizedPath;
use crate::{
entry::{Entry, FileId, IgnoredPathStrategy},
@@ -34,7 +34,7 @@ cfg_if::cfg_if! {
use notify_debouncer_full::notify::{RecursiveMode, WatchFilter};
use crate::repositories::{DetectedRepositories, DetectedRepositoriesEvent};
use watcher::{BulkFilesystemWatcher, BulkFilesystemWatcherEvent};
use warpui::SingletonEntity as _;
use galaxyui::SingletonEntity as _;
/// Duration between filesystem watch events in seconds
const FILESYSTEM_WATCHER_DEBOUNCE_SECS: u64 = 1;
@@ -50,7 +50,7 @@ use crate::file_tree_update::{
RepoMetadataUpdate, RepoNodeMetadata,
};
use ignore::gitignore::Gitignore;
use warpui::ModelContext;
use galaxyui::ModelContext;
/// Maximum depth to traverse when building file trees
const MAX_TREE_DEPTH: usize = 200;
@@ -979,7 +979,7 @@ impl LocalRepoMetadataModel {
}
}
impl warpui::Entity for LocalRepoMetadataModel {
impl galaxyui::Entity for LocalRepoMetadataModel {
type Event = RepositoryMetadataEvent;
}