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
+1 -1
View File
@@ -4,7 +4,7 @@ use cocoa::{
base::{id, nil, BOOL},
foundation::NSAutoreleasePool,
};
use warpui::platform::mac::make_nsstring;
use galaxyui::platform::mac::make_nsstring;
use super::*;
+5 -5
View File
@@ -11,8 +11,8 @@ use std::ops::DerefMut;
use lazy_static::lazy_static;
use sentry::{ClientInitGuard, IntoDsn, SessionMode};
use warp_core::channel::Channel;
use warpui::{r#async::block_on, AppContext, SingletonEntity};
use galaxy_core::channel::Channel;
use galaxyui::{r#async::block_on, AppContext, SingletonEntity};
use crate::antivirus::{AntivirusInfo, AntivirusInfoEvent};
use crate::auth::anonymous_id::get_or_create_anonymous_id;
@@ -24,9 +24,9 @@ use parking_lot::{Mutex, RwLock};
use regex::Regex;
use std::collections::{BTreeMap, HashMap};
use std::sync::Arc;
use warpui::rendering::GPUDeviceInfo;
use warpui::windowing::state::ApplicationStage;
use warpui::windowing::{self, StateEvent, WindowManager};
use galaxyui::rendering::GPUDeviceInfo;
use galaxyui::windowing::state::ApplicationStage;
use galaxyui::windowing::{self, StateEvent, WindowManager};
#[cfg(linux_or_windows)]
pub use sentry_minidump::run_server as run_minidump_server;
+3 -3
View File
@@ -32,7 +32,7 @@ use sentry::{
};
use serde::{Deserialize, Serialize};
use uuid::Uuid;
use warp_core::report_error;
use galaxy_core::report_error;
use super::ToSentryTags;
@@ -126,7 +126,7 @@ pub struct MinidumpGuard {
pub fn run_server(socket_path: &Path) -> anyhow::Result<()> {
// For troubleshooting, attempt to log from the minidump server. There's not much we can really
// do if crash reporting fails, so creating the log file itself is best-effort.
let log_dir = warp_core::paths::state_dir().join(warp_core::paths::WARP_LOGS_DIR);
let log_dir = galaxy_core::paths::state_dir().join(galaxy_core::paths::WARP_LOGS_DIR);
let _ = std::fs::create_dir_all(&log_dir);
let log_path = log_dir.join("warp-minidump.log");
let log_target = File::create(log_path)
@@ -269,7 +269,7 @@ impl MinidumpGuard {
// On macOS, the maximum length of a socket path is fairly short, so use the temp directory.
std::env::temp_dir().join(socket_name)
} else {
warp_core::paths::state_dir().join(socket_name)
galaxy_core::paths::state_dir().join(socket_name)
};
let child =