@codingame/monaco-vscode-walkthrough-service-override 9.0.0 → 9.0.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 +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +20 -20
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +27 -27
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +146 -146
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js
CHANGED
|
@@ -2,7 +2,7 @@ import { localize } from 'vscode/vscode/vs/nls';
|
|
|
2
2
|
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
3
3
|
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
4
4
|
|
|
5
|
-
const gettingStartedUncheckedCodicon = registerIcon('getting-started-step-unchecked', Codicon.circleLargeOutline, ( localize(
|
|
6
|
-
const gettingStartedCheckedCodicon = registerIcon('getting-started-step-checked', Codicon.passFilled, ( localize(
|
|
5
|
+
const gettingStartedUncheckedCodicon = registerIcon('getting-started-step-unchecked', Codicon.circleLargeOutline, ( localize(7527, "Used to represent walkthrough steps which have not been completed")));
|
|
6
|
+
const gettingStartedCheckedCodicon = registerIcon('getting-started-step-checked', Codicon.passFilled, ( localize(7528, "Used to represent walkthrough steps which have been completed")));
|
|
7
7
|
|
|
8
8
|
export { gettingStartedCheckedCodicon, gettingStartedUncheckedCodicon };
|
|
@@ -10,12 +10,12 @@ registerAction2(class extends Action2 {
|
|
|
10
10
|
constructor() {
|
|
11
11
|
super({
|
|
12
12
|
id: 'resetGettingStartedProgress',
|
|
13
|
-
category: ( localize2(
|
|
14
|
-
title: ( localize2(
|
|
13
|
+
category: ( localize2(7524, "Developer")),
|
|
14
|
+
title: ( localize2(7525, "Reset Welcome Page Walkthrough Progress")),
|
|
15
15
|
f1: true,
|
|
16
16
|
metadata: {
|
|
17
17
|
description: ( localize2(
|
|
18
|
-
|
|
18
|
+
7526,
|
|
19
19
|
'Reset the progress of all Walkthrough steps on the Welcome Page to make them appear as if they are being viewed for the first time, providing a fresh start to the getting started experience.'
|
|
20
20
|
)),
|
|
21
21
|
}
|
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js
CHANGED
|
@@ -34,7 +34,7 @@ import { getDefaultIconPath } from 'vscode/vscode/vs/workbench/services/extensio
|
|
|
34
34
|
const HasMultipleNewFileEntries = ( (new RawContextKey('hasMultipleNewFileEntries', false)));
|
|
35
35
|
const hiddenEntriesConfigurationKey = 'workbench.welcomePage.hiddenCategories';
|
|
36
36
|
const walkthroughMetadataConfigurationKey = 'workbench.welcomePage.walkthroughMetadata';
|
|
37
|
-
const BUILT_IN_SOURCE = ( localize(
|
|
37
|
+
const BUILT_IN_SOURCE = ( localize(3129, "Built-In"));
|
|
38
38
|
const DAYS = 24 * 60 * 60 * 1000;
|
|
39
39
|
const NEW_WALKTHROUGH_TIME = 7 * DAYS;
|
|
40
40
|
let WalkthroughsService = class WalkthroughsService extends Disposable {
|
|
@@ -37,7 +37,7 @@ let StartupPageEditorResolverContribution = class StartupPageEditorResolverContr
|
|
|
37
37
|
this.instantiationService = instantiationService;
|
|
38
38
|
editorResolverService.registerEditor(`${GettingStartedInput.RESOURCE.scheme}:/**`, {
|
|
39
39
|
id: GettingStartedInput.ID,
|
|
40
|
-
label: ( localize(
|
|
40
|
+
label: ( localize(7520, "Welcome Page")),
|
|
41
41
|
priority: RegisteredEditorPriority.builtin,
|
|
42
42
|
}, {
|
|
43
43
|
singlePerResource: false,
|
|
@@ -157,7 +157,7 @@ let StartupPageRunnerContribution = class StartupPageRunnerContribution {
|
|
|
157
157
|
await Promise.all([
|
|
158
158
|
this.commandService.executeCommand('markdown.showPreview', null, readmes.filter(isMarkDown), { locked: true }).catch(error => {
|
|
159
159
|
this.notificationService.error(( localize(
|
|
160
|
-
|
|
160
|
+
7521,
|
|
161
161
|
'Could not open markdown preview: {0}.\n\nPlease make sure the markdown extension is enabled.',
|
|
162
162
|
error.message
|
|
163
163
|
)));
|