File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
workbench/services/environment/browser Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " code-oss-dev" ,
3
3
"version" : " 1.62.0" ,
4
- "distro" : " b20d22b7ba814d2fdc985ad724271807ca95f2a8 " ,
4
+ "distro" : " 084dcc16aa74953bab0548580b3af2b0f2eb1134 " ,
5
5
"author" : {
6
6
"name" : " Microsoft Corporation"
7
7
},
Original file line number Diff line number Diff line change 23
23
"licenseFileName" : " LICENSE.txt" ,
24
24
"reportIssueUrl" : " https://github.com/microsoft/vscode/issues/new" ,
25
25
"urlProtocol" : " code-oss" ,
26
- "webEndpointUrlTemplate " : " https://{{uuid}}.vscode-webview.net/insider/dc1a6699060423b8c4d2ced736ad70195378fddf/out/vs/workbench/contrib/webview/browser/pre/" ,
26
+ "webviewContentExternalBaseUrlTemplate " : " https://{{uuid}}.vscode-webview.net/insider/dc1a6699060423b8c4d2ced736ad70195378fddf/out/vs/workbench/contrib/webview/browser/pre/" ,
27
27
"extensionAllowedProposedApi" : [
28
28
" ms-vscode.vscode-js-profile-flame" ,
29
29
" ms-vscode.vscode-js-profile-table" ,
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ export interface IProductConfiguration {
53
53
readonly updateUrl ?: string ;
54
54
readonly webEndpointUrl ?: string ;
55
55
readonly webEndpointUrlTemplate ?: string ;
56
+ readonly webviewContentExternalBaseUrlTemplate ?: string ;
56
57
readonly target ?: string ;
57
58
58
59
readonly settingsSearchBuildId ?: number ;
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ export class BrowserWorkbenchEnvironmentService implements IWorkbenchEnvironment
227
227
@memoize
228
228
get webviewExternalEndpoint ( ) : string {
229
229
const endpoint = this . options . webviewEndpoint
230
- || this . productService . webEndpointUrlTemplate
230
+ || this . productService . webviewContentExternalBaseUrlTemplate
231
231
|| 'https://{{uuid}}.vscode-webview.net/{{quality}}/{{commit}}/out/vs/workbench/contrib/webview/browser/pre/' ;
232
232
233
233
const webviewExternalEndpointCommit = this . payload ?. get ( 'webviewExternalEndpointCommit' ) ;
You can’t perform that action at this time.
0 commit comments