|
1 | 1 | pub const APP_BUNDLE_ID: &str = "com.amazon.codewhisperer"; |
2 | | -pub const APP_BUNDLE_NAME: &str = "Amazon Q.app"; |
| 2 | +pub const APP_BUNDLE_NAME: &str = "Kiro-Cli.app"; |
3 | 3 |
|
4 | 4 | #[cfg(target_os = "macos")] |
5 | | -pub const APP_PROCESS_NAME: &str = "q_desktop"; |
| 5 | +pub const APP_PROCESS_NAME: &str = "kiro_cli_desktop"; |
6 | 6 | #[cfg(target_os = "linux")] |
7 | | -pub const APP_PROCESS_NAME: &str = "q-desktop"; |
| 7 | +pub const APP_PROCESS_NAME: &str = "kiro-cli-desktop"; |
8 | 8 |
|
9 | 9 | #[cfg(windows)] |
10 | | -pub const APP_PROCESS_NAME: &str = "q_desktop.exe"; |
| 10 | +pub const APP_PROCESS_NAME: &str = "kiro_cli_desktop.exe"; |
11 | 11 |
|
12 | 12 | /// The name configured under `"package.productName"` in the tauri.conf.json file. |
13 | | -pub const TAURI_PRODUCT_NAME: &str = "q_desktop"; |
| 13 | +pub const TAURI_PRODUCT_NAME: &str = "kiro_cli_desktop"; |
14 | 14 |
|
15 | | -pub const CLI_BINARY_NAME: &str = "q"; |
16 | | -pub const CLI_BINARY_NAME_MINIMAL: &str = "q-minimal"; |
17 | | -pub const CHAT_BINARY_NAME: &str = "qchat"; |
18 | | -pub const PTY_BINARY_NAME: &str = "qterm"; |
| 15 | +pub const CLI_BINARY_NAME: &str = "kiro-cli"; |
| 16 | +pub const CLI_BINARY_NAME_MINIMAL: &str = "kiro-cli-minimal"; |
| 17 | +pub const CHAT_BINARY_NAME: &str = "kiro-cli-chat"; |
| 18 | +pub const PTY_BINARY_NAME: &str = "kiro-cli-term"; |
19 | 19 |
|
20 | 20 | pub const CLI_CRATE_NAME: &str = "q_cli"; |
21 | 21 |
|
22 | | -pub const URL_SCHEMA: &str = "q"; |
| 22 | +pub const URL_SCHEMA: &str = "kiro-cli"; |
23 | 23 |
|
24 | | -pub const PRODUCT_NAME: &str = "Amazon Q"; |
| 24 | +pub const PRODUCT_NAME: &str = "Kiro-Cli"; |
25 | 25 |
|
26 | 26 | pub const RUNTIME_DIR_NAME: &str = "cwrun"; |
27 | 27 |
|
28 | | -// These are the old "CodeWhisperer" branding, used anywhere we will not update to Amazon Q |
29 | | -pub const OLD_PRODUCT_NAME: &str = "CodeWhisperer"; |
30 | | -pub const OLD_CLI_BINARY_NAMES: &[&str] = &["cw"]; |
31 | | -pub const OLD_PTY_BINARY_NAMES: &[&str] = &["cwterm"]; |
| 28 | +// These are the old "Amazon Q" branding, used anywhere we will not update to Kiro-Cli |
| 29 | +pub const OLD_PRODUCT_NAME: &str = "Amazon Q"; |
| 30 | +pub const OLD_CLI_BINARY_NAMES: &[&str] = &["q"]; |
| 31 | +pub const OLD_PTY_BINARY_NAMES: &[&str] = &["qterm"]; |
32 | 32 |
|
33 | 33 | pub const GITHUB_REPO_NAME: &str = "aws/amazon-q-developer-cli"; |
34 | 34 |
|
@@ -74,13 +74,13 @@ pub mod macos { |
74 | 74 | } |
75 | 75 |
|
76 | 76 | pub mod linux { |
77 | | - pub const DESKTOP_ENTRY_NAME: &str = "amazon-q.desktop"; |
| 77 | + pub const DESKTOP_ENTRY_NAME: &str = "kiro-cli.desktop"; |
78 | 78 |
|
79 | 79 | /// Name of the deb package. |
80 | | - pub const PACKAGE_NAME: &str = "amazon-q"; |
| 80 | + pub const PACKAGE_NAME: &str = "kiro-cli"; |
81 | 81 |
|
82 | 82 | /// The wm_class used for the application windows. |
83 | | - pub const DESKTOP_APP_WM_CLASS: &str = "Amazon-q"; |
| 83 | + pub const DESKTOP_APP_WM_CLASS: &str = "Kiro-Cli"; |
84 | 84 | } |
85 | 85 |
|
86 | 86 | pub mod env_var { |
|
0 commit comments