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
+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 =