Galaxy v1.0.0: Remove warp-channel-config, rebrand bins/icons/settings, remove teams from Drive
- Remove warp-channel-config dependency; all bin targets hardcode ChannelConfig inline - Rename bin targets: galaxy-oss, galaxy-local, galaxy-stable, galaxy-dev, galaxy-preview - Rename config dir from .galaxy-ai to .galaxy - Add Galaxy app icon (512x512 rounded PNG + SVG logo) - Replace settings gear icon with Stars (sparkle) icon - Remove lightbulb/resource center button from header toolbar - Add Galaxy logo SVG to Settings > About page - Rename Galaxify -> Galaxyize across all UI strings - Remove Create Team / Join Team sections from Galaxy Drive - Fix missing => in OpenRichInput match arms - Clean up unused imports and warnings - Update Cargo.toml bundle metadata with Samsung branding - Re-enable code review, project explorer, global search in settings
This commit is contained in:
@@ -9,9 +9,7 @@ use crate::ai::blocklist::agent_view::agent_input_footer::{
|
||||
AgentInputFooter, AgentInputFooterEvent,
|
||||
};
|
||||
use crate::terminal::cli_agent_sessions::{CLIAgentInputEntrypoint, CLIAgentSessionsModel};
|
||||
use crate::terminal::shared_session::{SharedSessionActionSource, SharedSessionScrollbackType};
|
||||
use base64::Engine;
|
||||
use session_sharing_protocol::sharer::SessionSourceType;
|
||||
use galaxyui::clipboard::{ClipboardContent, ImageData};
|
||||
mod warpify_footer;
|
||||
|
||||
@@ -231,21 +229,6 @@ impl TerminalView {
|
||||
UseAgentToolbarEvent::ToggleFileExplorer(cli_agent) => {
|
||||
self.toggle_file_tree(Some((*cli_agent).into()), ctx);
|
||||
}
|
||||
UseAgentToolbarEvent::StartRemoteControl { scrollback_type } => {
|
||||
self.auto_stop_sharing_on_cli_end =
|
||||
*scrollback_type == SharedSessionScrollbackType::None;
|
||||
self.attempt_to_share_session(
|
||||
*scrollback_type,
|
||||
Some(SharedSessionActionSource::FooterChip),
|
||||
SessionSourceType::default(),
|
||||
true,
|
||||
ctx,
|
||||
);
|
||||
}
|
||||
UseAgentToolbarEvent::StopRemoteControl => {
|
||||
self.auto_stop_sharing_on_cli_end = false;
|
||||
self.stop_sharing_session(SharedSessionActionSource::FooterChip, ctx);
|
||||
}
|
||||
UseAgentToolbarEvent::OpenRichInput => {
|
||||
if self.has_active_cli_agent_input_session(ctx) {
|
||||
self.close_cli_agent_rich_input_and_disable_auto_toggle(ctx);
|
||||
@@ -1074,17 +1057,6 @@ impl UseAgentToolbar {
|
||||
AgentInputFooterEvent::ToggleFileExplorer(agent) => {
|
||||
ctx.emit(UseAgentToolbarEvent::ToggleFileExplorer(*agent));
|
||||
}
|
||||
AgentInputFooterEvent::StartRemoteControl => {
|
||||
let scrollback_type = if self.cli_agent(ctx).is_some() {
|
||||
SharedSessionScrollbackType::None
|
||||
} else {
|
||||
SharedSessionScrollbackType::All
|
||||
};
|
||||
ctx.emit(UseAgentToolbarEvent::StartRemoteControl { scrollback_type });
|
||||
}
|
||||
AgentInputFooterEvent::StopRemoteControl => {
|
||||
ctx.emit(UseAgentToolbarEvent::StopRemoteControl);
|
||||
}
|
||||
AgentInputFooterEvent::OpenRichInput => {
|
||||
ctx.emit(UseAgentToolbarEvent::OpenRichInput);
|
||||
}
|
||||
@@ -1182,12 +1154,6 @@ pub enum UseAgentToolbarEvent {
|
||||
ToggleCodeReviewPane(CLIAgent),
|
||||
/// Toggle the file explorer (from CLI agent view).
|
||||
ToggleFileExplorer(CLIAgent),
|
||||
/// Start remote control (one-click share without modal).
|
||||
StartRemoteControl {
|
||||
scrollback_type: SharedSessionScrollbackType,
|
||||
},
|
||||
/// Stop remote control (stop the active shared session).
|
||||
StopRemoteControl,
|
||||
/// Open the rich input editor for composing a prompt.
|
||||
OpenRichInput,
|
||||
/// Hide the rich input editor (same as Escape).
|
||||
|
||||
Reference in New Issue
Block a user