5 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,11 @@ implementation (#4414).
32
32
- Web socket compression has been made the default (when supported). This means
33
33
the ` --enable ` flag will no longer take ` permessage-deflate ` as an option.
34
34
- Extra extension directories have been removed. The ` --extra-extensions-dir `
35
- and ` --extra-builtin-extensions-dir ` will no longer be accepted.
36
- - The ` --install-source ` and ` --locale ` flags have been removed.
35
+ and ` --extra-builtin-extensions-dir ` flags will no longer be accepted.
36
+ - The ` --install-source ` flag has been removed.
37
37
- The static endpoint can no longer reach outside code-server. However the
38
38
vscode-remote-resource endpoint still can.
39
- - OpenVSX has been made the default marketplace. However this means web
40
- extensions like Vim may be broken.
39
+ - OpenVSX has been made the default marketplace.
41
40
- The last opened folder/workspace is no longer stored separately in the
42
41
settings file (we rely on the already-existing query object instead).
43
42
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ export interface UserProvidedArgs {
57
57
enable ?: string [ ]
58
58
help ?: boolean
59
59
host ?: string
60
+ locale ?: string
60
61
port ?: number
61
62
json ?: boolean
62
63
log ?: LogLevel
@@ -163,6 +164,7 @@ const options: Options<Required<UserProvidedArgs>> = {
163
164
enable : { type : "string[]" } ,
164
165
help : { type : "boolean" , short : "h" , description : "Show this output." } ,
165
166
json : { type : "boolean" } ,
167
+ locale : { type : "string" } , // The preferred way to set the locale is via the UI.
166
168
open : { type : "boolean" , description : "Open in browser on startup. Does not work remotely." } ,
167
169
168
170
"bind-addr" : {
Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ describe("parser", () => {
63
63
"--verbose" ,
64
64
"2" ,
65
65
66
+ [ "--locale" , "ja" ] ,
67
+
66
68
[ "--log" , "error" ] ,
67
69
68
70
"--help" ,
@@ -103,6 +105,7 @@ describe("parser", () => {
103
105
help : true ,
104
106
host : "0.0.0.0" ,
105
107
json : true ,
108
+ locale : "ja" ,
106
109
log : "error" ,
107
110
open : true ,
108
111
port : 8081 ,
Original file line number Diff line number Diff line change 7
7
"postinstall" : " ./postinstall.sh"
8
8
},
9
9
"devDependencies" : {
10
- "code-oss-dev" : " cdr/vscode#48fae57fd9adb772fc1b10e4a9a5e1ba6880640a "
10
+ "code-oss-dev" : " cdr/vscode#69a6ce45fc5b883aa8a950e10b79fd083eb0a7d7 "
11
11
}
12
12
}
Original file line number Diff line number Diff line change @@ -274,9 +274,9 @@ clone-response@^1.0.2:
274
274
dependencies :
275
275
mimic-response "^1.0.0"
276
276
277
- code-oss-dev@cdr/vscode#48fae57fd9adb772fc1b10e4a9a5e1ba6880640a :
277
+ code-oss-dev@cdr/vscode#69a6ce45fc5b883aa8a950e10b79fd083eb0a7d7 :
278
278
version "1.63.0"
279
- resolved "https://codeload.github.com/cdr/vscode/tar.gz/48fae57fd9adb772fc1b10e4a9a5e1ba6880640a "
279
+ resolved "https://codeload.github.com/cdr/vscode/tar.gz/69a6ce45fc5b883aa8a950e10b79fd083eb0a7d7 "
280
280
dependencies :
281
281
" @microsoft/applicationinsights-web" " ^2.6.4"
282
282
" @parcel/watcher" " 2.0.3"
0 commit comments