Skip to content

Commit 2cfe726

Browse files
committed
🆙 distro
1 parent cb842dc commit 2cfe726

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-oss-dev",
33
"version": "1.60.0",
4-
"distro": "11314bb5f299429544a5a1fec364ba54d8683c5e",
4+
"distro": "bf1384140eefc48a164d0b19ed03563a5313bd2f",
55
"author": {
66
"name": "Microsoft Corporation"
77
},

resources/web/code-web.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const args = minimist(process.argv, {
6262
if (args.help) {
6363
console.log(
6464
'yarn web [options]\n' +
65-
' --no-launch Do not open VSCode web in the browser\n' +
65+
' --no-launch Do not open Code in the browser\n' +
6666
' --wrap-iframe Wrap the Web Worker Extension Host in an iframe\n' +
6767
' --enable-sync Enable sync by default\n' +
6868
' --scheme Protocol (https or http)\n' +
@@ -239,8 +239,8 @@ const requestHandler = (req, res) => {
239239
// manifest
240240
res.writeHead(200, { 'Content-Type': 'application/json' });
241241
return res.end(JSON.stringify({
242-
'name': 'Code Web - OSS',
243-
'short_name': 'Code Web - OSS',
242+
'name': 'Code - OSS',
243+
'short_name': 'Code - OSS',
244244
'start_url': '/',
245245
'lang': 'en-US',
246246
'display': 'standalone'

src/vs/code/browser/workbench/workbench.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -390,14 +390,14 @@ class WindowIndicator implements IWindowIndicator {
390390

391391
// Repo
392392
if (repositoryName && repositoryOwner) {
393-
this.label = localize('playgroundLabelRepository', "$(remote) VS Code Web Playground: {0}/{1}", repositoryOwner, repositoryName);
394-
this.tooltip = localize('playgroundRepositoryTooltip', "VS Code Web Playground: {0}/{1}", repositoryOwner, repositoryName);
393+
this.label = localize('playgroundLabelRepository', "$(remote) Visual Studio Code Playground: {0}/{1}", repositoryOwner, repositoryName);
394+
this.tooltip = localize('playgroundRepositoryTooltip', "Visual Studio Code Playground: {0}/{1}", repositoryOwner, repositoryName);
395395
}
396396

397397
// No Repo
398398
else {
399-
this.label = localize('playgroundLabel', "$(remote) VS Code Web Playground");
400-
this.tooltip = localize('playgroundTooltip', "VS Code Web Playground");
399+
this.label = localize('playgroundLabel', "$(remote) Visual Studio Code Playground");
400+
this.tooltip = localize('playgroundTooltip', "Visual Studio Code Playground");
401401
}
402402
}
403403
}

src/vs/platform/product/common/product.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import { FileAccess } from 'vs/base/common/network';
7-
import { globals, isWeb } from 'vs/base/common/platform';
7+
import { globals } from 'vs/base/common/platform';
88
import { env } from 'vs/base/common/process';
99
import { IProductConfiguration } from 'vs/base/common/product';
1010
import { dirname, joinPath } from 'vs/base/common/resources';
@@ -55,8 +55,8 @@ else {
5555
if (Object.keys(product).length === 0) {
5656
Object.assign(product, {
5757
version: '1.60.0-dev',
58-
nameShort: isWeb ? 'Code Web - OSS Dev' : 'Code - OSS Dev',
59-
nameLong: isWeb ? 'Code Web - OSS Dev' : 'Code - OSS Dev',
58+
nameShort: 'Code - OSS Dev',
59+
nameLong: 'Code - OSS Dev',
6060
applicationName: 'code-oss',
6161
dataFolderName: '.vscode-oss',
6262
urlProtocol: 'code-oss',

0 commit comments

Comments
 (0)