From 2cfe7266c3fb88198ac5d6437c9399cd51656119 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Fri, 27 Aug 2021 07:45:20 +0200 Subject: [PATCH] :up: distro --- package.json | 2 +- resources/web/code-web.js | 6 +++--- src/vs/code/browser/workbench/workbench.ts | 8 ++++---- src/vs/platform/product/common/product.ts | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 8c8d0011f51..cbc75144c52 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-oss-dev", "version": "1.60.0", - "distro": "11314bb5f299429544a5a1fec364ba54d8683c5e", + "distro": "bf1384140eefc48a164d0b19ed03563a5313bd2f", "author": { "name": "Microsoft Corporation" }, diff --git a/resources/web/code-web.js b/resources/web/code-web.js index aec223238c4..0625a848805 100644 --- a/resources/web/code-web.js +++ b/resources/web/code-web.js @@ -62,7 +62,7 @@ const args = minimist(process.argv, { if (args.help) { console.log( 'yarn web [options]\n' + - ' --no-launch Do not open VSCode web in the browser\n' + + ' --no-launch Do not open Code in the browser\n' + ' --wrap-iframe Wrap the Web Worker Extension Host in an iframe\n' + ' --enable-sync Enable sync by default\n' + ' --scheme Protocol (https or http)\n' + @@ -239,8 +239,8 @@ const requestHandler = (req, res) => { // manifest res.writeHead(200, { 'Content-Type': 'application/json' }); return res.end(JSON.stringify({ - 'name': 'Code Web - OSS', - 'short_name': 'Code Web - OSS', + 'name': 'Code - OSS', + 'short_name': 'Code - OSS', 'start_url': '/', 'lang': 'en-US', 'display': 'standalone' diff --git a/src/vs/code/browser/workbench/workbench.ts b/src/vs/code/browser/workbench/workbench.ts index 71d3f75a3df..e7b26273bae 100644 --- a/src/vs/code/browser/workbench/workbench.ts +++ b/src/vs/code/browser/workbench/workbench.ts @@ -390,14 +390,14 @@ class WindowIndicator implements IWindowIndicator { // Repo if (repositoryName && repositoryOwner) { - this.label = localize('playgroundLabelRepository', "$(remote) VS Code Web Playground: {0}/{1}", repositoryOwner, repositoryName); - this.tooltip = localize('playgroundRepositoryTooltip', "VS Code Web Playground: {0}/{1}", repositoryOwner, repositoryName); + this.label = localize('playgroundLabelRepository', "$(remote) Visual Studio Code Playground: {0}/{1}", repositoryOwner, repositoryName); + this.tooltip = localize('playgroundRepositoryTooltip', "Visual Studio Code Playground: {0}/{1}", repositoryOwner, repositoryName); } // No Repo else { - this.label = localize('playgroundLabel', "$(remote) VS Code Web Playground"); - this.tooltip = localize('playgroundTooltip', "VS Code Web Playground"); + this.label = localize('playgroundLabel', "$(remote) Visual Studio Code Playground"); + this.tooltip = localize('playgroundTooltip', "Visual Studio Code Playground"); } } } diff --git a/src/vs/platform/product/common/product.ts b/src/vs/platform/product/common/product.ts index 28e00cb39b1..09dfc6437c2 100644 --- a/src/vs/platform/product/common/product.ts +++ b/src/vs/platform/product/common/product.ts @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ import { FileAccess } from 'vs/base/common/network'; -import { globals, isWeb } from 'vs/base/common/platform'; +import { globals } from 'vs/base/common/platform'; import { env } from 'vs/base/common/process'; import { IProductConfiguration } from 'vs/base/common/product'; import { dirname, joinPath } from 'vs/base/common/resources'; @@ -55,8 +55,8 @@ else { if (Object.keys(product).length === 0) { Object.assign(product, { version: '1.60.0-dev', - nameShort: isWeb ? 'Code Web - OSS Dev' : 'Code - OSS Dev', - nameLong: isWeb ? 'Code Web - OSS Dev' : 'Code - OSS Dev', + nameShort: 'Code - OSS Dev', + nameLong: 'Code - OSS Dev', applicationName: 'code-oss', dataFolderName: '.vscode-oss', urlProtocol: 'code-oss',