@codingame/monaco-vscode-chat-service-override 11.0.1 → 11.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-chat-service-override",
|
|
3
|
-
"version": "11.0
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@11.0
|
|
30
|
-
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.0
|
|
31
|
-
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0
|
|
32
|
-
"@codingame/monaco-vscode-chat-notebook-common": "11.0
|
|
33
|
-
"@codingame/monaco-vscode-chat-interactive-notebook-search-common": "11.0
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@11.1.0",
|
|
30
|
+
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.1.0",
|
|
31
|
+
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.1.0",
|
|
32
|
+
"@codingame/monaco-vscode-chat-notebook-common": "11.1.0",
|
|
33
|
+
"@codingame/monaco-vscode-chat-interactive-notebook-search-common": "11.1.0"
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -13,14 +13,14 @@ import { IChatService } from 'vscode/vscode/vs/workbench/contrib/chat/common/cha
|
|
|
13
13
|
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
14
14
|
|
|
15
15
|
const defaultFileName = 'chat.json';
|
|
16
|
-
const filters = [{ name: ( localize(
|
|
16
|
+
const filters = [{ name: ( localize(7602, "Chat Session")), extensions: ['json'] }];
|
|
17
17
|
function registerChatExportActions() {
|
|
18
18
|
registerAction2(class ExportChatAction extends Action2 {
|
|
19
19
|
constructor() {
|
|
20
20
|
super({
|
|
21
21
|
id: 'workbench.action.chat.export',
|
|
22
22
|
category: CHAT_CATEGORY,
|
|
23
|
-
title: ( localize2(
|
|
23
|
+
title: ( localize2(7603, "Export Chat...")),
|
|
24
24
|
precondition: CONTEXT_CHAT_ENABLED,
|
|
25
25
|
f1: true,
|
|
26
26
|
});
|
|
@@ -54,7 +54,7 @@ function registerChatExportActions() {
|
|
|
54
54
|
constructor() {
|
|
55
55
|
super({
|
|
56
56
|
id: 'workbench.action.chat.import',
|
|
57
|
-
title: ( localize2(
|
|
57
|
+
title: ( localize2(7604, "Import Chat...")),
|
|
58
58
|
category: CHAT_CATEGORY,
|
|
59
59
|
precondition: CONTEXT_CHAT_ENABLED,
|
|
60
60
|
f1: true,
|
|
@@ -24,7 +24,7 @@ function registerMoveActions() {
|
|
|
24
24
|
constructor() {
|
|
25
25
|
super({
|
|
26
26
|
id: `workbench.action.chat.openInEditor`,
|
|
27
|
-
title: ( localize2(
|
|
27
|
+
title: ( localize2(7599, "Open Chat in Editor")),
|
|
28
28
|
category: CHAT_CATEGORY,
|
|
29
29
|
precondition: CONTEXT_CHAT_ENABLED,
|
|
30
30
|
f1: true,
|
|
@@ -44,7 +44,7 @@ function registerMoveActions() {
|
|
|
44
44
|
constructor() {
|
|
45
45
|
super({
|
|
46
46
|
id: `workbench.action.chat.openInNewWindow`,
|
|
47
|
-
title: ( localize2(
|
|
47
|
+
title: ( localize2(7600, "Open Chat in New Window")),
|
|
48
48
|
category: CHAT_CATEGORY,
|
|
49
49
|
precondition: CONTEXT_CHAT_ENABLED,
|
|
50
50
|
f1: true,
|
|
@@ -64,7 +64,7 @@ function registerMoveActions() {
|
|
|
64
64
|
constructor() {
|
|
65
65
|
super({
|
|
66
66
|
id: `workbench.action.chat.openInSidebar`,
|
|
67
|
-
title: ( localize2(
|
|
67
|
+
title: ( localize2(7601, "Open Chat in Side Bar")),
|
|
68
68
|
category: CHAT_CATEGORY,
|
|
69
69
|
precondition: CONTEXT_CHAT_ENABLED,
|
|
70
70
|
f1: true,
|