Skip to content

Commit

Permalink
Renames application to PearAI (#148)
Browse files Browse the repository at this point in the history
Updates application name and related references throughout the codebase to reflect the rebranding to PearAI.  This includes CLI output, application identifiers, and display names.
  • Loading branch information
charlwillia6 authored Jan 2, 2025
1 parent 937baac commit 48b08d0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Code - OSS",
"name": "PearAI",
"build": {
"dockerfile": "Dockerfile"
},
Expand Down
6 changes: 3 additions & 3 deletions cli/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,20 @@ pub const TUNNEL_SERVICE_USER_AGENT_ENV_VAR: &str = "TUNNEL_SERVICE_USER_AGENT";
/// Application name as it appears on the CLI.
pub const APPLICATION_NAME: &str = match option_env!("VSCODE_CLI_APPLICATION_NAME") {
Some(n) => n,
None => "code",
None => "pearai",
};

/// Full name of the product with its version.
pub const PRODUCT_NAME_LONG: &str = match option_env!("VSCODE_CLI_NAME_LONG") {
Some(n) => n,
None => "Code - OSS",
None => "PearAI",
};

/// Name of the application without quality information.
pub const QUALITYLESS_PRODUCT_NAME: &str = match option_env!("VSCODE_CLI_QUALITYLESS_PRODUCT_NAME")
{
Some(n) => n,
None => "Code",
None => "PearAI",
};

/// Name of the application without quality information.
Expand Down
4 changes: 2 additions & 2 deletions product.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"win32arm64AppId": "{{D1ACE434-89C5-48D1-88D3-E2991DF85475}",
"win32x64UserAppId": "{{CC6B787D-37A0-49E8-AE24-8559A032BE0C}",
"win32arm64UserAppId": "{{3AEBF0C8-F733-4AD4-BADE-FDB816D53D7B}",
"win32AppUserModelId": "Microsoft.CodeOSS",
"win32ShellNameShort": "C&ode - OSS",
"win32AppUserModelId": "PearAI",
"win32ShellNameShort": "PearAI",
"win32TunnelServiceMutex": "pearai-tunnelservice",
"win32TunnelMutex": "pearai-tunnel",
"darwinBundleIdentifier": "com.visualstudio.code.oss",
Expand Down
4 changes: 2 additions & 2 deletions resources/win32/VisualElementsManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
ShowNameOnSquare150x150Logo="on"
Square150x150Logo="resources\app\resources\win32\code_150x150.png"
Square70x70Logo="resources\app\resources\win32\code_70x70.png"
ForegroundText="light"
ShortDisplayName="Code - OSS" />
ForegroundText="light"
ShortDisplayName="PearAI" />
</Application>

0 comments on commit 48b08d0

Please sign in to comment.