@codingame/monaco-vscode-log-service-override 2.2.2 → 3.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-log-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@3.0.0",
|
|
22
22
|
"vscode-marked": "npm:marked@=3.0.2",
|
|
23
|
-
"@codingame/monaco-vscode-environment-service-override": "
|
|
23
|
+
"@codingame/monaco-vscode-environment-service-override": "3.0.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
|
|
2
|
-
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
2
|
+
import { localize2WithPath, localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
4
4
|
import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
|
|
5
5
|
import { registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
@@ -37,11 +37,11 @@ registerAction2(class extends Action2 {
|
|
|
37
37
|
constructor() {
|
|
38
38
|
super({
|
|
39
39
|
id: 'workbench.action.setDefaultLogLevel',
|
|
40
|
-
title:
|
|
40
|
+
title: ( localize2WithPath(
|
|
41
41
|
'vs/workbench/contrib/logs/common/logs.contribution',
|
|
42
42
|
'setDefaultLogLevel',
|
|
43
43
|
"Set Default Log Level"
|
|
44
|
-
)),
|
|
44
|
+
)),
|
|
45
45
|
category: Categories.Developer,
|
|
46
46
|
});
|
|
47
47
|
}
|
|
@@ -191,11 +191,11 @@ let LogOutputChannels = class LogOutputChannels extends Disposable {
|
|
|
191
191
|
constructor() {
|
|
192
192
|
super({
|
|
193
193
|
id: showWindowLogActionId,
|
|
194
|
-
title:
|
|
194
|
+
title: ( localize2WithPath(
|
|
195
195
|
'vs/workbench/contrib/logs/common/logs.contribution',
|
|
196
196
|
'show window log',
|
|
197
197
|
"Show Window Log"
|
|
198
|
-
)),
|
|
198
|
+
)),
|
|
199
199
|
category: Categories.Developer,
|
|
200
200
|
f1: true
|
|
201
201
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
|
|
2
|
-
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
2
|
+
import { localize2WithPath, localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
4
4
|
import { isLogLevel, LogLevel, ILoggerService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
5
5
|
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput';
|
|
@@ -14,11 +14,11 @@ import { DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
|
14
14
|
|
|
15
15
|
let SetLogLevelAction = class SetLogLevelAction extends Action {
|
|
16
16
|
static { this.ID = 'workbench.action.setLogLevel'; }
|
|
17
|
-
static { this.TITLE =
|
|
17
|
+
static { this.TITLE = ( localize2WithPath(
|
|
18
18
|
'vs/workbench/contrib/logs/common/logsActions',
|
|
19
19
|
'setLogLevel',
|
|
20
20
|
"Set Log Level..."
|
|
21
|
-
))
|
|
21
|
+
)); }
|
|
22
22
|
constructor(id, label, quickInputService, loggerService, outputService, defaultLogLevelsService) {
|
|
23
23
|
super(id, label);
|
|
24
24
|
this.quickInputService = quickInputService;
|
|
@@ -183,11 +183,11 @@ SetLogLevelAction = ( __decorate([
|
|
|
183
183
|
], SetLogLevelAction));
|
|
184
184
|
(class OpenWindowSessionLogFileAction extends Action {
|
|
185
185
|
static { this.ID = 'workbench.action.openSessionLogFile'; }
|
|
186
|
-
static { this.TITLE =
|
|
186
|
+
static { this.TITLE = ( localize2WithPath(
|
|
187
187
|
'vs/workbench/contrib/logs/common/logsActions',
|
|
188
188
|
'openSessionLogFile',
|
|
189
189
|
"Open Window Log File (Session)..."
|
|
190
|
-
))
|
|
190
|
+
)); }
|
|
191
191
|
constructor(id, label, environmentService, fileService, quickInputService, editorService) {
|
|
192
192
|
super(id, label);
|
|
193
193
|
this.environmentService = environmentService;
|