Skip to content

Commit bf7710f

Browse files
committed
fixup! feat(VSCode): add support for IDE inside Flatpak
1 parent 0bd8bc4 commit bf7710f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pkg/ide/ideparse/parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ var AllowedIDEs = []AllowedIDE{
168168
Name: config.IDECodiumInsiders,
169169
DisplayName: "Codium Insiders",
170170
Options: vscode.Options,
171-
Icon: "https://devpod.sh/assets/codium_insiders.svg", // TODO to be uploaded
171+
Icon: "https://devpod.sh/assets/codium_insiders.svg",
172172
Experimental: true,
173173
},
174174
{

pkg/ide/vscode/vscode.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ func (f Flavor) DisplayName() string {
4646
return "positron"
4747
case FlavorCodium:
4848
return "VSCodium"
49+
case FlavorCodiumInsiders:
50+
return "VSCodium Insiders"
4951
default:
5052
return "VSCode"
5153
}

0 commit comments

Comments
 (0)