Skip to content

Commit 15db1e8

Browse files
authored
chat session 'getting started' tweaks (microsoft#264083)
* install pre-release when not in insiders * tidy copy * update distro (microsoft/vscode-distro#1202)
1 parent 30237b4 commit 15db1e8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-oss-dev",
33
"version": "1.104.0",
4-
"distro": "58e4a3ea0bbc94dd155845c88c7e77228c231efa",
4+
"distro": "c4728bca0e277089b2284f45740eed082a58b8f4",
55
"author": {
66
"name": "Microsoft Corporation"
77
},

src/vs/workbench/contrib/chat/browser/chatSessions.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1556,7 +1556,7 @@ class SessionsViewPane extends ViewPane {
15561556
},
15571557
{
15581558
id: 'learn-more',
1559-
label: nls.localize('chatSessions.learnMoreGHCodingAgent', "Learn More about GitHub Copilot coding agent"),
1559+
label: nls.localize('chatSessions.learnMoreGHCodingAgent', "Learn More About GitHub Copilot coding agent"),
15601560
commandId: 'vscode.open',
15611561
icon: Codicon.book,
15621562
args: [URI.parse('https://aka.ms/coding-agent-docs')]
@@ -1738,16 +1738,16 @@ class ChatSessionsGettingStartedAction extends Action2 {
17381738
label: recommendation.displayName,
17391739
description: recommendation.description,
17401740
detail: extensionInstalled
1741-
? nls.localize('chatSessions.extensionAlreadyInstalled', "Extension already installed")
1742-
: nls.localize('chatSessions.installExtension', "Installs '{0}' extension", recommendation.extensionName),
1741+
? nls.localize('chatSessions.extensionAlreadyInstalled', "'{0}' is already installed", recommendation.extensionName)
1742+
: nls.localize('chatSessions.installExtension', "Installs '{0}'", recommendation.extensionName),
17431743
extensionId: recommendation.extensionId,
17441744
disabled: extensionInstalled,
17451745
};
17461746
});
17471747

17481748
const selected = await quickInputService.pick(quickPickItems, {
1749-
title: nls.localize('chatSessions.selectExtension', "Select extensions to install"),
1750-
placeHolder: nls.localize('chatSessions.pickPlaceholder', "Choose an extension that adds chat session functionality"),
1749+
title: nls.localize('chatSessions.selectExtension', "Install Chat Extensions"),
1750+
placeHolder: nls.localize('chatSessions.pickPlaceholder', "Choose extensions to enhance your chat experience"),
17511751
canPickMany: true,
17521752
});
17531753

@@ -1759,7 +1759,7 @@ class ChatSessionsGettingStartedAction extends Action2 {
17591759
if (!galleryExtensions) {
17601760
return;
17611761
}
1762-
await extensionManagementService.installGalleryExtensions(galleryExtensions.map(extension => ({ extension, options: {} })));
1762+
await extensionManagementService.installGalleryExtensions(galleryExtensions.map(extension => ({ extension, options: { preRelease: productService.quality !== 'stable' } })));
17631763
}
17641764
}
17651765

0 commit comments

Comments
 (0)