Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Change app name to Teleport Connect #753

Merged
merged 1 commit into from
Apr 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/teleterm/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Teleport Terminal
## Teleport Connect

Teleport Terminal (teleterm) is a desktop application that allows easy access to Teleport resources.
Teleport Connect (previously Teleport Terminal, package name `teleterm`) is a desktop application that allows easy access to Teleport resources.

### Building and Packaging

Teleport Terminal consists of two main components: the `tsh` tool and the Electron app. Our build
Teleport Connect consists of two main components: the `tsh` tool and the Electron app. Our build
scripts assume that the `webapps` repo and the `teleport` repo are in the same folder.

To get started, first we need to build `tsh` that resides in the `teleport` repo.
Expand Down
8 changes: 4 additions & 4 deletions packages/teleterm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gravitational/teleterm",
"version": "1.0.0",
"description": "Teleport Terminal",
"description": "Teleport Connect",
"main": "build/app/dist/main/main.js",
"author": {
"name": "Teleport",
Expand All @@ -17,7 +17,7 @@
"build-main": "webpack build --config webpack.main.config.js --progress --mode=production",
"build-renderer": "webpack build --config webpack.renderer.prod.config.js --progress",
"build-natives": "electron-builder install-app-deps",
"package": "electron-builder build --publish never -c.extraMetadata.name=teleterm"
"package": "electron-builder build --publish never -c.extraMetadata.name=teleconnect"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was an issue with productName on Linux. For now I will change it to teleconnect, but we will verify that when we will release the app for that OS.

},
"repository": {
"type": "git",
Expand Down Expand Up @@ -51,10 +51,10 @@
"xterm": "^4.15.0",
"xterm-addon-fit": "^0.5.0"
},
"productName": "Teleport Connect Preview",
"build": {
"electronVersion": "13.2.3",
"productName": "teleterm",
"appId": "gravitational.teleport.terminal",
"appId": "gravitational.teleport.connect",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/teleterm/src/mainProcess/windowsManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class WindowsManager {
backgroundColor: theme.colors.primary.darker,
minWidth: 400,
minHeight: 300,
title: 'Teleport Terminal',
title: 'Teleport Connect Preview',
icon: getAssetPath('icon.png'),
webPreferences: {
contextIsolation: true,
Expand Down