Skip to content

Commit

Permalink
release 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nonoroazoro committed Nov 11, 2022
2 parents 3a150d9 + 2ecbc9f commit 14c0e60
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelogs

## 3.3.3 - September 22, 2022

- Fixed: Add support for code-server ([@achembarpu](https://github.com/achembarpu)).


## 3.3.2 - September 22, 2022

- Fixed: Add support for pre-release extensions.
Expand Down Expand Up @@ -131,7 +136,7 @@

- Added: Add support for the VSCode exploration builds.

- Added: Add support for the self-compiled version of VSCode under [the default configuration](https://github.com/Microsoft/vscode/blob/master/product.json) (Thank [@Backfighter](https://github.com/Backfighter) for the PR).
- Added: Add support for the self-compiled version of VSCode under [the default configuration](https://github.com/Microsoft/vscode/blob/master/product.json) ([@Backfighter](https://github.com/Backfighter)).


## 2.1.0 - January 30, 2019
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.2",
"version": "3.3.3",
"publisher": "nonoroazoro",
"author": {
"email": "xiaochao.k@gmail.com",
Expand Down
3 changes: 3 additions & 0 deletions src/utils/vscodeAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ export function getVSCodeEdition()
case "Code - OSS":
return VSCodeEdition.OSS;

case "code-server":
return VSCodeEdition.CODER;

default:
throw new Error(localize("error.env.unknown.vscode"));
}
Expand Down

0 comments on commit 14c0e60

Please sign in to comment.