@codingame/monaco-vscode-edit-sessions-service-override 2.2.0-next.1 → 2.2.0-next.2
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-edit-sessions-service-override",
|
|
3
|
-
"version": "2.2.0-next.
|
|
3
|
+
"version": "2.2.0-next.2",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@2.2.0-next.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@2.2.0-next.2",
|
|
22
22
|
"vscode-marked": "npm:marked@=3.0.2"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -48,6 +48,20 @@ let EditSessionsDataViews = class EditSessionsDataViews extends Disposable {
|
|
|
48
48
|
order: 100,
|
|
49
49
|
hideByDefault: true,
|
|
50
50
|
}], container);
|
|
51
|
+
viewsRegistry.registerViewWelcomeContent(viewId, {
|
|
52
|
+
content: ( localizeWithPath(
|
|
53
|
+
'vs/workbench/contrib/editSessions/browser/editSessionsViews',
|
|
54
|
+
'noStoredChanges',
|
|
55
|
+
'You have no stored changes in the cloud to display.\n{0}',
|
|
56
|
+
`[${( localizeWithPath(
|
|
57
|
+
'vs/workbench/contrib/editSessions/browser/editSessionsViews',
|
|
58
|
+
'storeWorkingChangesTitle',
|
|
59
|
+
'Store Working Changes'
|
|
60
|
+
))}](command:workbench.editSessions.actions.store)`
|
|
61
|
+
)),
|
|
62
|
+
when: ( ContextKeyExpr.equals(EDIT_SESSIONS_COUNT_KEY, 0)),
|
|
63
|
+
order: 1
|
|
64
|
+
});
|
|
51
65
|
registerAction2(class extends Action2 {
|
|
52
66
|
constructor() {
|
|
53
67
|
super({
|