🆙 distro

This commit is contained in:
Benjamin Pasero 2021-08-27 07:45:20 +02:00
parent cb842dcad0
commit 2cfe7266c3
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65
4 changed files with 11 additions and 11 deletions

View file

@ -1,7 +1,7 @@
{
"name": "code-oss-dev",
"version": "1.60.0",
"distro": "11314bb5f299429544a5a1fec364ba54d8683c5e",
"distro": "bf1384140eefc48a164d0b19ed03563a5313bd2f",
"author": {
"name": "Microsoft Corporation"
},

View file

@ -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'

View file

@ -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");
}
}
}

View file

@ -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',