From c479038aa01cca28fdb537bd1d1163a1e224d5f9 Mon Sep 17 00:00:00 2001 From: Nico De Cleyre Date: Sun, 29 Dec 2024 17:10:13 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=9A=80=20Enhance=20progress=20notific?= =?UTF-8?q?ations=20with=20output=20window=20links=20for=20better=20user?= =?UTF-8?q?=20guidance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/actions/CliActions.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/services/actions/CliActions.ts b/src/services/actions/CliActions.ts index 6922d9e..2f79efd 100644 --- a/src/services/actions/CliActions.ts +++ b/src/services/actions/CliActions.ts @@ -443,7 +443,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: 'Creating app registration...', + title: `Creating app registration... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try { @@ -481,7 +481,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: `Generating ${input.workflowType === WorkflowType.gitHub ? 'GitHub Workflow' : 'Azure DevOps Pipeline'}...`, + title: `Generating ${input.workflowType === WorkflowType.gitHub ? 'GitHub Workflow' : 'Azure DevOps Pipeline'}... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try { @@ -575,7 +575,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: 'Generating the upgrade steps...', + title: `Generating the upgrade steps... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try { @@ -641,7 +641,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: 'Renaming the current project...', + title: `Renaming the current project... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try { @@ -693,7 +693,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: 'Granting API permissions for the current project...', + title: `Granting API permissions for the current project... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try { @@ -749,7 +749,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: 'Validating the current project...', + title: `Validating the current project... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try { From f45f33d0ab6e2af564bac21809e6bad5a6daae96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20W=C3=B3jcik?= Date: Thu, 2 Jan 2025 01:01:17 +0100 Subject: [PATCH 2/2] fixup --- src/services/actions/CliActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/actions/CliActions.ts b/src/services/actions/CliActions.ts index 2f79efd..7f3d2c1 100644 --- a/src/services/actions/CliActions.ts +++ b/src/services/actions/CliActions.ts @@ -1014,7 +1014,7 @@ export class CliActions { await window.withProgress({ location: ProgressLocation.Notification, - title: 'Setting form customizer...', + title: `Setting form customizer... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`, cancellable: true }, async (progress: Progress<{ message?: string; increment?: number }>) => { try {