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
@@ -1,12 +1,12 @@
//! This module contains the code path for the [`warp_cli::Command::DumpDebugInfo`] subcommand.
//! This module contains the code path for the [`galaxy_cli::Command::DumpDebugInfo`] subcommand.
//!
//! This is intended to never be used by a vast majority of users. This is only intended for users
//! who are unable to run Warp and want to provide us, the dev team, with useful debugging
//! information.
#[cfg(not(windows))]
use command::blocking::Command;
use warp_core::channel::ChannelState;
use warpui::windowing;
use galaxy_core::channel::ChannelState;
use galaxyui::windowing;
pub(crate) fn run() -> anyhow::Result<()> {
println!("Warp version: {:?}", ChannelState::app_version());
@@ -31,7 +31,7 @@ pub(crate) fn run() -> anyhow::Result<()> {
#[cfg(not(target_os = "macos"))]
{
if let Ok(event_loop) = winit::event_loop::EventLoop::new() {
warpui::rendering::wgpu::init_wgpu_instance(Box::new(
galaxyui::rendering::wgpu::init_wgpu_instance(Box::new(
event_loop.owned_display_handle(),
));
@@ -62,7 +62,7 @@ pub(crate) fn run() -> anyhow::Result<()> {
init_private_user_preferences, PreferLowPowerGPU, PreferredGraphicsBackend,
};
use settings::Setting as _;
use warpui::rendering::GPUPowerPreference;
use galaxyui::rendering::GPUPowerPreference;
let user_preferences = init_private_user_preferences();
@@ -83,7 +83,7 @@ pub(crate) fn run() -> anyhow::Result<()> {
println!("##################################################");
println!("# wgpu Adapters");
println!("##################################################");
warpui::r#async::block_on(warpui::rendering::wgpu::print_wgpu_adapters(
galaxyui::r#async::block_on(galaxyui::rendering::wgpu::print_wgpu_adapters(
gpu_power_preference,
backend_preference,
windowing_system,