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
@@ -11,7 +11,7 @@ use std::{
use chrono::{Local, SecondsFormat};
#[cfg(test)]
use parking_lot::Mutex;
use warp_completer::completer::{CommandExitStatus, CommandOutput};
use galaxy_completer::completer::{CommandExitStatus, CommandOutput};
#[cfg(test)]
use std::sync::Arc;
@@ -101,7 +101,7 @@ impl PromptChipLogger {
#[cfg(not(target_family = "wasm"))]
fn init_runtime() -> Self {
if !warp_core::channel::ChannelState::enable_debug_features() {
if !galaxy_core::channel::ChannelState::enable_debug_features() {
return Self::Disabled;
}
@@ -133,8 +133,8 @@ impl PromptChipLogger {
#[cfg(not(target_family = "wasm"))]
pub(crate) fn log_file_path() -> anyhow::Result<PathBuf> {
let log_directory = warp_logging::log_directory()?;
let channel_logfile_name = warp_core::channel::ChannelState::logfile_name();
let log_directory = galaxy_logging::log_directory()?;
let channel_logfile_name = galaxy_core::channel::ChannelState::logfile_name();
Ok(log_directory.join(prompt_chip_log_filename(&channel_logfile_name)))
}