Skip to content

Commit

Permalink
gitpod-desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
akosyakov authored and jeanp413 committed Sep 17, 2021
1 parent 8edd003 commit 5efc4d0
Show file tree
Hide file tree
Showing 27 changed files with 755 additions and 164 deletions.
2 changes: 1 addition & 1 deletion build/gulpfile.extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const compilations = [
'gitpod/tsconfig.json',
'gitpod-remote-ssh/tsconfig.json',
'gitpod-web/tsconfig.json',
'gitpod-ui/tsconfig.json',
'gitpod-desktop/tsconfig.json',
];

const getBaseUrl = out => `https://ticino.blob.core.windows.net/sourcemaps/${commit}/${out}`;
Expand Down
2 changes: 1 addition & 1 deletion build/gulpfile.gitpod.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const rename = require('gulp-rename');
const ext = require('./lib/extensions');

const extensionsPath = path.join(path.dirname(__dirname), 'extensions');
const marketplaceExtensions = ['gitpod', 'gitpod-ui', 'gitpod-remote-ssh'];
const marketplaceExtensions = ['gitpod', 'gitpod-desktop', 'gitpod-remote-ssh'];
const outMarketplaceExtensions = 'out-gitpod-marketplace';
const cleanMarketplaceExtensions = task.define('clean-gitpod-marketplace-extensions', util.rimraf(outMarketplaceExtensions));
const bumpMarketplaceExtensions = task.define('bump-marketplace-extensions', () => {
Expand Down
2 changes: 1 addition & 1 deletion build/lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const excludedExtensions = [
'vscode-custom-editor-tests',
'github-authentication',
'gitpod-remote-ssh',
'gitpod-ui',
'gitpod-desktop',
];
const marketplaceWebExtensionsExclude = new Set([
'ms-vscode.node-debug',
Expand Down
2 changes: 1 addition & 1 deletion build/lib/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const excludedExtensions = [
'vscode-custom-editor-tests',
'github-authentication',
'gitpod-remote-ssh',
'gitpod-ui',
'gitpod-desktop',
];

const marketplaceWebExtensionsExclude = new Set([
Expand Down
2 changes: 1 addition & 1 deletion build/npm/dirs.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ exports.dirs = [
'extensions/gitpod',
'extensions/gitpod-remote-ssh',
'extensions/gitpod-web',
'extensions/gitpod-ui',
'extensions/gitpod-desktop',
'remote',
'remote/web',
'test/automation',
Expand Down
File renamed without changes.
5 changes: 5 additions & 0 deletions extensions/gitpod-desktop/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Gitpod Desktop integration

## Features

This extension provides support for Gitpod Desktop integration.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "gitpod-ui",
"name": "gitpod-desktop",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "gitpod",
"version": "0.0.11",
"version": "0.0.14",
"license": "MIT",
"preview": true,
"repository": {
Expand All @@ -21,20 +21,27 @@
],
"activationEvents": [
"*",
"onCommand:gitpod-ui.api.autoTunnel"
"onCommand:gitpod-desktop.api.autoTunnel"
],
"main": "./out/extension.js",
"scripts": {
"compile": "gulp compile-extension:gitpod-ui",
"watch": "gulp watch-extension:gitpod-ui",
"compile": "gulp compile-extension:gitpod-desktop",
"watch": "gulp watch-extension:gitpod-desktop",
"vscode:prepublish": "npm run compile"
},
"devDependencies": {
"@types/node": "^10.12.21"
"@types/node": "^10.12.21",
"@types/node-fetch": "^2.5.12",
"@types/tmp": "^0.2.1"
},
"dependencies": {
"@gitpod/local-app-api-grpcweb": "ak-remote-ssh",
"@gitpod/local-app-api-grpcweb": "ak-vscode-desktop",
"@improbable-eng/grpc-web-node-http-transport": "^0.14.0",
"node-fetch": "^2.6.1",
"tmp": "^0.2.1",
"vscode-nls": "^5.0.0"
}
},
"extensionDependencies": [
"ms-vscode-remote.remote-ssh"
]
}
4 changes: 4 additions & 0 deletions extensions/gitpod-desktop/package.nls.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"displayName": "Gitpod Desktop",
"description": "Gitpod Desktop Support"
}
Loading

0 comments on commit 5efc4d0

Please sign in to comment.