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:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+5 -2
View File
@@ -8,18 +8,18 @@ mod imp;
use std::path::Path;
use std::path::PathBuf;
use galaxy_core::ui::theme::GalaxyTheme;
pub(crate) use imp::load_tab_configs;
#[cfg(feature = "local_fs")]
pub use imp::load_workflows;
pub use imp::{load_launch_configs, load_theme_configs};
use lazy_static::lazy_static;
use galaxy_core::ui::theme::WarpTheme;
use warpui::{Entity, ModelContext, SingletonEntity};
use crate::ai::custom_model_routers::{CustomModelRouter, ModelConfigError};
use crate::launch_configs::launch_config::LaunchConfig;
use crate::tab_configs::{TabConfig, TabConfigError};
use crate::themes::theme::{ThemeKind, WarpThemeConfig};
use crate::themes::theme::{GalaxyThemeConfig, ThemeKind};
use crate::workflows::workflow::Workflow;
lazy_static! {
@@ -428,6 +428,9 @@ impl Entity for GalaxyConfig {
impl SingletonEntity for GalaxyConfig {}
pub type WarpConfig = GalaxyConfig;
pub type WarpConfigUpdateEvent = GalaxyConfigUpdateEvent;
#[cfg(test)]
#[path = "mod_tests.rs"]
mod tests;