Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner
This commit is contained in:
@@ -86,7 +86,7 @@ pub(crate) fn handle(
|
||||
instance_id,
|
||||
action,
|
||||
SurfaceDestination::WarpDrive,
|
||||
WorkspaceAction::OpenWarpDrive,
|
||||
WorkspaceAction::OpenGalaxyDrive,
|
||||
target,
|
||||
ctx,
|
||||
),
|
||||
@@ -124,7 +124,7 @@ pub(crate) fn handle(
|
||||
ActionKind::SurfaceWarpDriveToggle => workspace_action(
|
||||
instance_id,
|
||||
action,
|
||||
WorkspaceAction::ToggleWarpDrive,
|
||||
WorkspaceAction::ToggleGalaxyDrive,
|
||||
target,
|
||||
ctx,
|
||||
),
|
||||
|
||||
@@ -9,10 +9,10 @@ use ::local_control::protocol::{
|
||||
use ::local_control::{
|
||||
Action, ActionKind, ActionMetadata, ControlError, ErrorCode, InstanceId, PROTOCOL_VERSION,
|
||||
};
|
||||
use galaxy_core::channel::ChannelState;
|
||||
use serde::Serialize;
|
||||
use serde_json::{json, Value};
|
||||
use settings::Setting as _;
|
||||
use galaxy_core::channel::ChannelState;
|
||||
use warpui::{AppContext, ModelContext, SingletonEntity, ViewHandle, WindowId};
|
||||
|
||||
use crate::drive::settings::WarpDriveSettings;
|
||||
|
||||
@@ -6,9 +6,9 @@ use ::local_control::protocol::{
|
||||
TabTarget, TargetSelector, ThemeNameParams, WindowTarget,
|
||||
};
|
||||
use ::local_control::{ActionKind, ControlError, ErrorCode, InstanceId};
|
||||
use galaxy_core::ui::theme::AnsiColorIdentifier;
|
||||
use serde_json::json;
|
||||
use settings::Setting as _;
|
||||
use galaxy_core::ui::theme::AnsiColorIdentifier;
|
||||
use warpui::{ModelContext, SingletonEntity as _, WindowId};
|
||||
|
||||
use super::metadata::{
|
||||
|
||||
@@ -88,12 +88,12 @@ use axum::{Json, Router};
|
||||
pub use bridge::LocalControlBridge;
|
||||
#[cfg(any(unix, test))]
|
||||
use chrono::Duration;
|
||||
use galaxy_core::channel::ChannelState;
|
||||
use permissions::ensure_feature_enabled;
|
||||
#[cfg(any(unix, test))]
|
||||
use permissions::{ensure_action_allowed, ensure_protocol_version};
|
||||
#[cfg(unix)]
|
||||
use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
|
||||
use galaxy_core::channel::ChannelState;
|
||||
use warpui::{Entity, ModelContext, ModelSpawner, SingletonEntity};
|
||||
|
||||
#[cfg(any(unix, test))]
|
||||
|
||||
@@ -11,8 +11,8 @@ use axum::extract::State;
|
||||
use axum::http::header::{AUTHORIZATION, HOST, ORIGIN};
|
||||
use axum::http::{HeaderMap, HeaderValue};
|
||||
use chrono::Duration;
|
||||
use settings::Setting as _;
|
||||
use galaxy_core::features::FeatureFlag;
|
||||
use settings::Setting as _;
|
||||
use warpui::SingletonEntity as _;
|
||||
|
||||
#[cfg(unix)]
|
||||
|
||||
Reference in New Issue
Block a user