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:
@@ -8,6 +8,9 @@
|
||||
use std::collections::HashSet;
|
||||
use std::io::Write;
|
||||
|
||||
use galaxy_core::features::{
|
||||
FeatureFlag, DEBUG_FLAGS, DOGFOOD_FLAGS, PREVIEW_FLAGS, RELEASE_FLAGS,
|
||||
};
|
||||
use schemars::SchemaGenerator;
|
||||
use serde_json::{Map, Value};
|
||||
use settings::schema::SettingSchemaEntry;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use anyhow::Result;
|
||||
use clap::Parser;
|
||||
use warp_cli::WorkerCommand;
|
||||
use galaxy_cli::WorkerCommand;
|
||||
use galaxy_core::channel::{Channel, ChannelConfig, ChannelState, OzConfig, WarpServerConfig};
|
||||
use galaxy_core::AppId;
|
||||
|
||||
@@ -58,12 +58,12 @@ pub fn main() -> Result<()> {
|
||||
// GUI application), do so. This must occur before init_logging, as the
|
||||
// terminal server sets up its own logger, and attempting to set a second
|
||||
// logger leads to a panic.
|
||||
warp::terminal::local_tty::server::run_terminal_server(args);
|
||||
galaxy::terminal::local_tty::server::run_terminal_server(args);
|
||||
return Ok(());
|
||||
}
|
||||
#[cfg(not(target_family = "wasm"))]
|
||||
WorkerCommand::RemoteServerProxy(_) | WorkerCommand::RemoteServerDaemon(_) => {
|
||||
return warp::run();
|
||||
return galaxy::run();
|
||||
}
|
||||
// This is a catch-all to handle the plugin host, which the integration test crate doesn't have a feature flag for.
|
||||
#[allow(unreachable_patterns)]
|
||||
@@ -71,5 +71,5 @@ pub fn main() -> Result<()> {
|
||||
}
|
||||
}
|
||||
|
||||
warp::run()
|
||||
galaxy::run()
|
||||
}
|
||||
|
||||
@@ -3,10 +3,7 @@
|
||||
#![cfg_attr(feature = "release_bundle", windows_subsystem = "windows")]
|
||||
|
||||
use anyhow::Result;
|
||||
use galaxy_core::{
|
||||
channel::{Channel, ChannelConfig, ChannelState, OzConfig, WarpServerConfig},
|
||||
AppId,
|
||||
};
|
||||
use galaxy_core::channel::{Channel, ChannelState};
|
||||
|
||||
fn main() -> Result<()> {
|
||||
ChannelState::set(ChannelState::new(
|
||||
|
||||
Reference in New Issue
Block a user