@codingame/monaco-vscode-notifications-service-override 7.1.1 → 8.0.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-notifications-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@8.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -161,7 +161,7 @@ let NotificationService = class NotificationService extends Disposable {
|
|
|
161
161
|
(new NoOpNotification())
|
|
162
162
|
);
|
|
163
163
|
}
|
|
164
|
-
const neverShowAgainAction = toDispose.add(( (new Action('workbench.notification.neverShowAgain', ( localize(
|
|
164
|
+
const neverShowAgainAction = toDispose.add(( (new Action('workbench.notification.neverShowAgain', ( localize(2648, "Don't Show Again")), undefined, true, async () => {
|
|
165
165
|
handle.close();
|
|
166
166
|
this.storageService.store(id, true, scope, StorageTarget.USER);
|
|
167
167
|
}))));
|
|
@@ -204,7 +204,7 @@ let NotificationService = class NotificationService extends Disposable {
|
|
|
204
204
|
);
|
|
205
205
|
}
|
|
206
206
|
const neverShowAgainChoice = {
|
|
207
|
-
label: ( localize(
|
|
207
|
+
label: ( localize(2648, "Don't Show Again")),
|
|
208
208
|
run: () => this.storageService.store(id, true, scope, StorageTarget.USER),
|
|
209
209
|
isSecondary: options.neverShowAgain.isSecondary
|
|
210
210
|
};
|