Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -31,14 +31,14 @@ use session_sharing_protocol::sharer::{
|
||||
};
|
||||
use session_sharing_protocol::sharer::{FailedToInitializeSessionReason, SessionEndedReason};
|
||||
use std::collections::HashMap;
|
||||
use warp_core::features::FeatureFlag;
|
||||
use galaxy_core::features::FeatureFlag;
|
||||
|
||||
use std::pin::pin;
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
|
||||
use warpui::r#async::Timer;
|
||||
use warpui::{Entity, ModelContext, ModelHandle, RequestState, RetryOption, SingletonEntity};
|
||||
use galaxyui::r#async::Timer;
|
||||
use galaxyui::{Entity, ModelContext, ModelHandle, RequestState, RetryOption, SingletonEntity};
|
||||
use websocket::{Message, Sink, Stream, WebSocket, WebsocketMessage as _};
|
||||
|
||||
use crate::editor::CrdtOperation;
|
||||
@@ -225,7 +225,7 @@ impl Network {
|
||||
active_prompt: ActivePrompt,
|
||||
selection: Selection,
|
||||
input_replica_id: ReplicaId,
|
||||
terminal_view_id: warpui::EntityId,
|
||||
terminal_view_id: galaxyui::EntityId,
|
||||
universal_developer_input_context: UniversalDeveloperInputContext,
|
||||
lifetime: Lifetime,
|
||||
source_type: SessionSourceType,
|
||||
@@ -586,7 +586,7 @@ impl Network {
|
||||
window_size: WindowSize,
|
||||
init_block_id: BlockId,
|
||||
input_replica_id: ReplicaId,
|
||||
terminal_view_id: warpui::EntityId,
|
||||
terminal_view_id: galaxyui::EntityId,
|
||||
universal_developer_input_context: UniversalDeveloperInputContext,
|
||||
lifetime: Lifetime,
|
||||
source_type: SessionSourceType,
|
||||
|
||||
@@ -12,7 +12,7 @@ use session_sharing_protocol::{
|
||||
},
|
||||
sharer::{DownstreamMessage, ReconnectToken, UpstreamMessage},
|
||||
};
|
||||
use warpui::{App, ModelHandle};
|
||||
use galaxyui::{App, ModelHandle};
|
||||
use websocket::{Message, WebsocketMessage as _};
|
||||
|
||||
use crate::{
|
||||
@@ -700,7 +700,7 @@ fn test_events_are_saved_on_send_and_removed_on_ack() {
|
||||
// Simulate receiving the EventsProcessedAck message from the server.
|
||||
network.update(
|
||||
&mut app,
|
||||
|network, ctx: &mut warpui::ModelContext<'_, Network>| {
|
||||
|network, ctx: &mut galaxyui::ModelContext<'_, Network>| {
|
||||
let downstream_message = DownstreamMessage::EventsProcessedAck {
|
||||
latest_processed_event_no: 1,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user