- Rename all UI-facing "Warp" references to "Galaxy" - Rename "Warpify" to "Wormhole" throughout the UI - Replace app icons with 5 new Galaxy-branded variants - Update About page to show selected app icon dynamically - Rephrase Privacy page for Bedrock context - Remove "Fallback to Warp server" toggle from Bedrock settings - Widen model selector dropdowns in profile editor (480px) - Update TERM_PROGRAM to "GalaxyTerminal" - Bump version to 1.1.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
64 lines
1.8 KiB
Rust
64 lines
1.8 KiB
Rust
use std::sync::LazyLock;
|
|
|
|
use async_trait::async_trait;
|
|
|
|
use super::{CliAgentPluginManager, PluginInstructionStep, PluginInstructions};
|
|
|
|
pub(super) struct CodexPluginManager;
|
|
|
|
#[async_trait]
|
|
impl CliAgentPluginManager for CodexPluginManager {
|
|
fn minimum_plugin_version(&self) -> &'static str {
|
|
"0.0.0"
|
|
}
|
|
|
|
fn can_auto_install(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
fn supports_update(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
fn install_instructions(&self) -> &'static PluginInstructions {
|
|
&INSTALL_INSTRUCTIONS
|
|
}
|
|
|
|
fn update_instructions(&self) -> &'static PluginInstructions {
|
|
&EMPTY_INSTRUCTIONS
|
|
}
|
|
}
|
|
|
|
static INSTALL_INSTRUCTIONS: LazyLock<PluginInstructions> = LazyLock::new(|| {
|
|
PluginInstructions {
|
|
title: "Enable Galaxy Notifications for Codex",
|
|
subtitle: "Update Codex to the latest version, then enable in-focus notifications so Galaxy can display them while you work.",
|
|
steps: &[
|
|
PluginInstructionStep {
|
|
description: "Update Codex to the latest version.",
|
|
command: "",
|
|
executable: false,
|
|
link: Some("https://developers.openai.com/codex/cli#upgrade"),
|
|
},
|
|
PluginInstructionStep {
|
|
description: "Set the notification condition to \"always\" in your Codex config. Open or create ~/.codex/config.toml and add:",
|
|
command: "[tui]\nnotification_condition = \"always\"",
|
|
executable: false,
|
|
link: None,
|
|
},
|
|
],
|
|
post_install_notes: &["Restart Codex to apply the changes."],
|
|
}
|
|
});
|
|
|
|
static EMPTY_INSTRUCTIONS: LazyLock<PluginInstructions> = LazyLock::new(|| PluginInstructions {
|
|
title: "",
|
|
subtitle: "",
|
|
steps: &[],
|
|
post_install_notes: &[],
|
|
});
|
|
|
|
#[cfg(test)]
|
|
#[path = "codex_tests.rs"]
|
|
mod tests;
|