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,7 +1,7 @@
use serde::{Deserialize, Serialize};
use warp_graphql::scalars::time::ServerTimestamp;
use warpui::AppContext;
use warpui_extras::secure_storage::{self, AppContextExt};
use galaxy_graphql::scalars::time::ServerTimestamp;
use galaxyui::AppContext;
use galaxyui_extras::secure_storage::{self, AppContextExt};
use crate::auth::{
user::{AnonymousUserType, FirebaseAuthTokens, PersonalObjectLimits, UserMetadata},
@@ -81,7 +81,7 @@ fn test_serialize_persisted_user() {
}
/// Test serializing and deserializing persisted user data.
/// See warpui_extras::secure_storage::linux_test.rs for Linux-specific tests.
/// See galaxyui_extras::secure_storage::linux_test.rs for Linux-specific tests.
#[cfg(target_os = "windows")]
#[cfg_attr(windows, ignore = "passes locally but not in CI on Windows")]
#[test]
@@ -93,9 +93,9 @@ fn test_windows_user_persistence() {
};
use crate::ServerApiProvider;
use chrono::DateTime;
use warp_core::channel::ChannelState;
use warpui::{App, SingletonEntity};
use warpui_extras::secure_storage;
use galaxy_core::channel::ChannelState;
use galaxyui::{App, SingletonEntity};
use galaxyui_extras::secure_storage;
App::test((), |mut app| async move {
app.add_singleton_model(|_ctx| ServerApiProvider::new_for_test());
@@ -104,7 +104,7 @@ fn test_windows_user_persistence() {
app.add_singleton_model(|ctx| {
secure_storage::register_with_dir(
ChannelState::data_domain().as_str(),
warp_core::paths::state_dir(),
galaxy_core::paths::state_dir(),
ctx,
);
AuthManager::new_for_test(ctx)