Update vscode patch notes and bump version

This commit is contained in:
Asher 2020-04-29 15:22:11 -05:00
parent 4b09746c37
commit fd36a99a4c
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
2 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "code-server", "name": "code-server",
"license": "MIT", "license": "MIT",
"version": "3.1.2", "version": "3.2.0",
"scripts": { "scripts": {
"clean": "ci/clean.sh", "clean": "ci/clean.sh",
"vscode": "ci/vscode.sh", "vscode": "ci/vscode.sh",

View File

@ -42,8 +42,9 @@ To generate a new patch, **stage all the changes** you want to be included in
the patch in the VS Code source, then run `yarn patch:generate` in this the patch in the VS Code source, then run `yarn patch:generate` in this
directory. directory.
Our changes include: Notable changes include:
- Add our own build file which includes our code and VS Code's web code.
- Allow multiple extension directories (both user and built-in). - Allow multiple extension directories (both user and built-in).
- Modify the loader, websocket, webview, service worker, and asset requests to - Modify the loader, websocket, webview, service worker, and asset requests to
use the URL of the page as a base (and TLS if necessary for the websocket). use the URL of the page as a base (and TLS if necessary for the websocket).
@ -51,8 +52,8 @@ Our changes include:
- Make changing the display language work. - Make changing the display language work.
- Make it possible for us to load code on the client. - Make it possible for us to load code on the client.
- Make extensions work in the browser. - Make extensions work in the browser.
- Make it possible to install extensions of any kind.
- Fix getting permanently disconnected when you sleep or hibernate for a while. - Fix getting permanently disconnected when you sleep or hibernate for a while.
- Make it possible to automatically update the binary.
- Add connection type to web socket query parameters. - Add connection type to web socket query parameters.
## Future ## Future