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
+4 -4
View File
@@ -8,10 +8,10 @@ use std::{
};
use thiserror::Error;
use warp_util::standardized_path::StandardizedPath;
use galaxy_util::standardized_path::StandardizedPath;
#[cfg(not(target_family = "wasm"))]
use warpui::SingletonEntity;
use galaxyui::SingletonEntity;
/// Errors that can occur when working with repository metadata.
#[derive(Error, Debug)]
@@ -54,7 +54,7 @@ pub use repository::Repository;
pub use watcher::{DirectoryWatcher, RepositoryUpdate, TargetFile};
#[cfg(not(target_family = "wasm"))]
pub fn is_in_repo(path: &str, app: &warpui::AppContext) -> bool {
pub fn is_in_repo(path: &str, app: &galaxyui::AppContext) -> bool {
use crate::repositories::DetectedRepositories;
DetectedRepositories::as_ref(app)
@@ -63,7 +63,7 @@ pub fn is_in_repo(path: &str, app: &warpui::AppContext) -> bool {
}
#[cfg(target_family = "wasm")]
pub fn is_in_repo(_path: &str, _app: &warpui::AppContext) -> bool {
pub fn is_in_repo(_path: &str, _app: &galaxyui::AppContext) -> bool {
false
}
pub use file_tree_store::FileTreeEntry;