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
21 changes: 18 additions & 3 deletions patches/common/remove-builtin-extensions.diff
Original file line number Diff line number Diff line change
Expand Up @@ -219,19 +219,18 @@ Index: third-party-src/src/vs/workbench/contrib/chat/browser/chat.contribution.t
===================================================================
--- third-party-src.orig/src/vs/workbench/contrib/chat/browser/chat.contribution.ts
+++ third-party-src/src/vs/workbench/contrib/chat/browser/chat.contribution.ts
@@ -800,8 +800,9 @@ configurationRegistry.registerConfigurat
@@ -800,8 +800,8 @@ configurationRegistry.registerConfigurat
'chat.disableAIFeatures': {
type: 'boolean',
description: nls.localize('chat.disableAIFeatures', "Disable and hide built-in AI features provided by GitHub Copilot, including chat and inline suggestions."),
- default: false,
- scope: ConfigurationScope.WINDOW
+ default: true,
+ scope: ConfigurationScope.WINDOW,
+ included: false
},
'chat.allowAnonymousAccess': { // TODO@bpasero remove me eventually
type: 'boolean',
@@ -834,7 +835,8 @@ configurationRegistry.registerConfigurat
@@ -837,7 +837,8 @@ configurationRegistry.registerConfigurat
tags: ['experimental'],
experiment: {
mode: 'auto'
Expand Down Expand Up @@ -291,3 +290,19 @@ Index: third-party-src/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup
precondition: ContextKeyExpr.or(
ChatContextKeys.Setup.hidden,
ChatContextKeys.Setup.disabled,
Index: third-party-src/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts
===================================================================
--- third-party-src.orig/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts
+++ third-party-src/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts
@@ -259,11 +259,6 @@ export const tocData: ITOCEntry<string>
settings: ['mergeEditor.*']
},
{
- id: 'features/chat',
- label: localize('chat', 'Chat'),
- settings: ['chat.*', 'inlineChat.*', 'mcp']
- },
- {
id: 'features/issueReporter',
label: localize('issueReporter', 'Issue Reporter'),
settings: ['issueReporter.*'],
2 changes: 1 addition & 1 deletion patches/sagemaker/display-both-versions-in-about.diff
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Index: code-editor-src/product.json
"nameShort": "SageMaker Code Editor",
"nameLong": "SageMaker Code Editor",
"codeEditorVersion": "1.0.0",
+ "sagemakerCodeEditorVersion":"1.0.0",
+ "sagemakerCodeEditorVersion":"1.9",
"applicationName": "code",
"dataFolderName": ".vscode-editor",
"win32MutexName": "vscodeoss",
Expand Down