Skip to content

Commit 76b6d2c

Browse files
authored
[vscode-extension] Rebranding changes for extension (#1989)
## Summary changes all mentions and links of jetpack to jetify. Publisher field in package.json is not changed since we decided to keep the publisher Id. ## How was it tested? N/A
1 parent 7fe260f commit 76b6d2c

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

vscode-extension/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "devbox" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.1.5]
8+
9+
- Rebranding changes from jetpack.io to jetify.com.
10+
711
## [0.1.4]
812

913
- Added debug mode in extension settings (only supports logs for "Reopen in Devbox Shell environment" feature).

vscode-extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "devbox",
3-
"displayName": "devbox by jetpack.io",
3+
"displayName": "devbox by Jetify",
44
"description": "devbox integration for VSCode",
5-
"version": "0.1.4",
5+
"version": "0.1.5",
66
"icon": "assets/icon.png",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/jetify-com/devbox.git",
1010
"directory": "vscode-extension"
1111
},
12-
"author": "jetpack-io",
12+
"author": "Jetify",
1313
"publisher": "jetpack-io",
1414
"engines": {
1515
"vscode": "^1.72.0"

vscode-extension/src/devbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function devboxReopen() {
1515
Please open VSCode from inside devbox shell in WSL using the CLI.', seeDocs
1616
);
1717
if (result === seeDocs) {
18-
env.openExternal(Uri.parse('https://www.jetpack.io/devbox/docs/ide_configuration/vscode/#windows-setup'));
18+
env.openExternal(Uri.parse('https://www.jetify.com/devbox/docs/ide_configuration/vscode/#windows-setup'));
1919
return;
2020
}
2121
}

vscode-extension/src/openinvscode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async function getVMInfo(token: string | null, vmId: string | null): Promise<any
6767

6868
async function setupDevboxLauncher(): Promise<any> {
6969
// download devbox launcher script
70-
const gatewayHost = 'https://releases.jetpack.io/devbox';
70+
const gatewayHost = 'https://releases.jetify.com/devbox';
7171
const response = await fetch(gatewayHost, {
7272
method: 'get',
7373
});

0 commit comments

Comments
 (0)