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 -2
View File
@@ -1,6 +1,6 @@
use crate::search::result_renderer::ItemHighlightState;
use warp_core::ui::appearance::Appearance;
use warpui::{elements::Icon, Element};
use galaxy_core::ui::appearance::Appearance;
use galaxyui::{elements::Icon, Element};
/// Assumes the path is a file, not a folder
pub fn icon_from_file_path(
+1 -1
View File
@@ -8,7 +8,7 @@ use std::{
collections::HashSet,
path::{Path, PathBuf},
};
use warpui::{AppContext, Entity, ModelContext, SingletonEntity};
use galaxyui::{AppContext, Entity, ModelContext, SingletonEntity};
cfg_if::cfg_if! {
if #[cfg(feature = "local_fs")] {
+1 -1
View File
@@ -3,7 +3,7 @@ use super::FileSearchModel;
use fuzzy_match::FuzzyMatchResult;
use repo_metadata::repositories::DetectedRepositories;
use repo_metadata::RepoMetadataModel;
use warpui::{App, SingletonEntity};
use galaxyui::{App, SingletonEntity};
#[cfg(test)]
mod file_search_model_tests {