Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhiter committed Dec 20, 2024
1 parent c7a8673 commit bf856f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions extensions/ide/vscode/devbox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## [Unreleased]

## [1.3.0] - 2024-12-20

### Fixed

- Fix http url -> https url.

## [1.2.2] - 2024-12-09

### Changed

- Adjust `Remote-SSH` to install by code.
Expand Down
2 changes: 1 addition & 1 deletion extensions/ide/vscode/devbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "devbox-aio",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.3.2024120601",
"version": "1.3.0",
"keywords": [
"devbox",
"remote development",
Expand Down
2 changes: 1 addition & 1 deletion extensions/ide/vscode/devbox/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function activate(context: vscode.ExtensionContext) {
const remoteUri = workspaceFolder.uri.authority
const devboxId = remoteUri.replace(/^ssh-remote\+/, '') // devbox = sshHostLabel
const region = GlobalStateManager.getRegion(devboxId)
updateBaseUrl(`http://devbox.${region}`)
updateBaseUrl(`https://devbox.${region}`)
}

// network view
Expand Down

0 comments on commit bf856f4

Please sign in to comment.