Skip to content
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
4 changes: 0 additions & 4 deletions web/packages/teleterm/src/services/config/appConfigSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ export const createAppConfigSchema = (platform: Platform) => {
.boolean()
.default(false)
.describe('Enables collecting of anonymous usage data.'),
'feature.searchBar': z
.boolean()
.default(true)
.describe('Replaces the command bar with the new search bar'),
'keymap.tab1': shortcutSchema
.default(defaultKeymap['tab1'])
.describe(getShortcutDesc('open tab 1')),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ async function startTerminalSession(
documentsService: DocumentsService,
doc: types.DocumentTerminal
) {
// DELETE IN 14.0.0
//
// Logging in to an arbitrary host was removed in 13.0 together with the command bar.
// However, there's a slight chance that some users upgrading from 12.x to 13.0 still have
// documents with loginHost in the app state (e.g. if the doc failed to connect to the server).
// Let's just remove this in 14.0.0 instead to make sure those users can safely upgrade the app.
if (isDocumentTshNodeWithLoginHost(doc)) {
doc = await resolveLoginHost(ctx, logger, documentsService, doc);
}
Expand Down
299 changes: 0 additions & 299 deletions web/packages/teleterm/src/ui/QuickInput/QuickInput.story.tsx

This file was deleted.

Loading