Skip to content

Commit

Permalink
release 3.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
nonoroazoro committed Sep 13, 2024
2 parents 946c19d + 64917f6 commit fce22d0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelogs

## 3.3.9 - September 13, 2024

- Fixed: Add support for [VSCodium Insiders](https://github.com/VSCodium/vscodium) ([@clague](https://github.com/clague)).


## 3.3.8 - September 12, 2024

- Fixed: Add support for [Cursor](https://www.cursor.com).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "syncing",
"displayName": "%displayName%",
"description": "%description%",
"version": "3.3.8",
"version": "3.3.9",
"publisher": "nonoroazoro",
"author": {
"email": "[email protected]",
Expand Down
4 changes: 4 additions & 0 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ export const VSCODE_BUILTIN_ENVIRONMENTS: Record<VSCodeEdition, {
dataDirectoryName: "VSCodium",
extensionsDirectoryName: ".vscode-oss"
},
[VSCodeEdition.VSCODIUM_INSIDERS]: {
dataDirectoryName: "VSCodium - Insiders",
extensionsDirectoryName: ".vscodium-insiders"
},
[VSCodeEdition.OSS]: {
dataDirectoryName: "Code - OSS",
extensionsDirectoryName: ".vscode-oss"
Expand Down
5 changes: 5 additions & 0 deletions src/types/VSCodeEdition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ export enum VSCodeEdition
*/
VSCODIUM,

/**
* The VSCode Insiders under FLOSS license, see [VSCodium](https://github.com/VSCodium/vscodium).
*/
VSCODIUM_INSIDERS,

/**
* The self-compiled version of VSCode under
* [the default configuration](https://github.com/Microsoft/vscode/blob/master/product.json).
Expand Down
3 changes: 3 additions & 0 deletions src/utils/vscodeAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ export function getVSCodeEdition()
case "VSCodium":
return VSCodeEdition.VSCODIUM;

case "VSCodium - Insiders":
return VSCodeEdition.VSCODIUM_INSIDERS;

case "Code - OSS":
return VSCodeEdition.OSS;

Expand Down

0 comments on commit fce22d0

Please sign in to comment.