You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(build): Parameterize binary names in build scripts
- Add CHAT_BINARY_BRANCH and CLI_BINARY_NAME_MINIMAL to const.py
- Import CHAT_BINARY_BRANCH and TAURI_PRODUCT_NAME in build.py
- Replace hardcoded 'qchat' with CHAT_BINARY_NAME constant
- Replace hardcoded 'q_desktop' with TAURI_PRODUCT_NAME constant
- Replace hardcoded 'q_cli' with CLI_PACKAGE_NAME constant
- Replace hardcoded 'prod' with CHAT_BINARY_BRANCH constant
- Update comments to use generic binary name placeholders
* feat(build): Parameterize manifest.py with binary name constants
- Import APP_NAME, CLI_BINARY_NAME, PTY_BINARY_NAME, CHAT_BINARY_NAME
- Replace hardcoded 'Amazon Q.app' with f-string using APP_NAME
- Replace hardcoded binary paths and identifiers with constants
* feat(build): Update qchatbuild.py comments to use generic placeholders
- Replace hardcoded 'qchat' in comments with {chat_binary} placeholder
* feat(build): Update qchatmain.py description to be generic
- Replace 'qchat binary' with 'chat binary' in argparse description
* feat(rust): Parameterize hardcoded qchat.log references
- Import CHAT_BINARY_NAME in chat-cli/src/logging.rs
- Import CHAT_BINARY_NAME in fig_log/src/lib.rs
- Import CHAT_BINARY_NAME in chat-cli/src/cli/mod.rs
- Replace hardcoded 'qchat.log' with format string using CHAT_BINARY_NAME
* feat(bundle): Parameterize binary names in install scripts
- Add CLI_BINARY_NAME, CHAT_BINARY_NAME, PTY_BINARY_NAME variables to bundle/linux/install.sh
- Replace hardcoded binary names with variables in install commands
- Add DESKTOP_BINARY_NAME variable to scripts/install.sh
- Replace hardcoded 'q_desktop' with DESKTOP_BINARY_NAME variable
* fix(shell): Add shellcheck SC2329 disable directives
- Add SC2329 to bash-preexec.sh __bp_adjust_histcontrol function
- Add SC2329 disable before override function in shell integration generator
- Add cfg_attr to suppress dead_code warning on Windows for list_profiles_blocking
- Regenerate test snapshots with updated shellcheck directives
SC2329 warns about functions defined after being called, which is
intentional in our bash-preexec override pattern.
🤖 Assisted by Amazon Q Developer
0 commit comments