Skip to content

Commit fce22d0

Browse files
committed
release 3.3.9
2 parents 946c19d + 64917f6 commit fce22d0

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelogs
22

3+
## 3.3.9 - September 13, 2024
4+
5+
- Fixed: Add support for [VSCodium Insiders](https://github.com/VSCodium/vscodium) ([@clague](https://github.com/clague)).
6+
7+
38
## 3.3.8 - September 12, 2024
49

510
- Fixed: Add support for [Cursor](https://www.cursor.com).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "syncing",
33
"displayName": "%displayName%",
44
"description": "%description%",
5-
"version": "3.3.8",
5+
"version": "3.3.9",
66
"publisher": "nonoroazoro",
77
"author": {
88
"email": "xiaochao.k@gmail.com",

src/constants/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ export const VSCODE_BUILTIN_ENVIRONMENTS: Record<VSCodeEdition, {
5252
dataDirectoryName: "VSCodium",
5353
extensionsDirectoryName: ".vscode-oss"
5454
},
55+
[VSCodeEdition.VSCODIUM_INSIDERS]: {
56+
dataDirectoryName: "VSCodium - Insiders",
57+
extensionsDirectoryName: ".vscodium-insiders"
58+
},
5559
[VSCodeEdition.OSS]: {
5660
dataDirectoryName: "Code - OSS",
5761
extensionsDirectoryName: ".vscode-oss"

src/types/VSCodeEdition.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ export enum VSCodeEdition
2323
*/
2424
VSCODIUM,
2525

26+
/**
27+
* The VSCode Insiders under FLOSS license, see [VSCodium](https://github.com/VSCodium/vscodium).
28+
*/
29+
VSCODIUM_INSIDERS,
30+
2631
/**
2732
* The self-compiled version of VSCode under
2833
* [the default configuration](https://github.com/Microsoft/vscode/blob/master/product.json).

src/utils/vscodeAPI.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ export function getVSCodeEdition()
101101
case "VSCodium":
102102
return VSCodeEdition.VSCODIUM;
103103

104+
case "VSCodium - Insiders":
105+
return VSCodeEdition.VSCODIUM_INSIDERS;
106+
104107
case "Code - OSS":
105108
return VSCodeEdition.OSS;
106109

0 commit comments

Comments
 (0)