diff --git a/product.json b/product.json index fcd2a1960a..5739885851 100644 --- a/product.json +++ b/product.json @@ -27,7 +27,8 @@ "reportIssueUrl": "https://github.com/Microsoft/sqlopsstudio/issues/new?labels=customer%20reported%20issue", "requestFeatureUrl": "https://github.com/Microsoft/sqlopsstudio/issues/new?labels=feature-request" }, - "releaseNotesUrl": "https://go.microsoft.com/fwlink/?linkid=862039", + "gettingStartedUrl": "https://go.microsoft.com/fwlink/?linkid=862039", + "releaseNotesUrl": "https://go.microsoft.com/fwlink/?linkid=875578", "documentationUrl": "https://go.microsoft.com/fwlink/?linkid=862277", "commit": "9ca6200018fc206d67a47229f991901a8a453781", "date": "2017-12-15T12:00:00.000Z", diff --git a/src/sql/workbench/update/releaseNotes.ts b/src/sql/workbench/update/releaseNotes.ts index 72dd258154..9b5bb46f4b 100644 --- a/src/sql/workbench/update/releaseNotes.ts +++ b/src/sql/workbench/update/releaseNotes.ts @@ -29,14 +29,14 @@ export class OpenGettingStartedInBrowserAction extends Action { } run(): TPromise { - const uri = URI.parse(product.releaseNotesUrl); + const uri = URI.parse(product.gettingStartedUrl); return this.openerService.open(uri); } } export class ShowCurrentReleaseNotesAction extends AbstractShowReleaseNotesAction { - static ID = 'update.showCurrentCarbonReleaseNotes'; + static ID = 'update.showGettingStarted'; static LABEL = nls.localize('showReleaseNotes', "Show Getting Started"); constructor( diff --git a/src/vs/code/electron-main/menus.ts b/src/vs/code/electron-main/menus.ts index d1983a9b27..4ad7eb4fd7 100644 --- a/src/vs/code/electron-main/menus.ts +++ b/src/vs/code/electron-main/menus.ts @@ -999,8 +999,8 @@ export class CodeMenu { arrays.coalesce([ // new MenuItem({ label: mnemonicLabel(nls.localize({ key: 'miWelcome', comment: ['&& denotes a mnemonic'] }, "&&Welcome")), click: () => this.windowsService.sendToFocused('vscode:runAction', 'workbench.action.showWelcomePage') }), // {{SQL CARBON EDIT}} - product.releaseNotesUrl ? - this.createMenuItem(nls.localize({ key: 'miReleaseNotes', comment: ['&& denotes a mnemonic'] }, "Getting &&Started"), 'update.showCurrentCarbonReleaseNotes') + product.gettingStartedUrl ? + this.createMenuItem(nls.localize({ key: 'miGettingStarted', comment: ['&& denotes a mnemonic'] }, "Getting &&Started"), 'update.showGettingStarted') : null, product.documentationUrl ? this.createMenuItem(nls.localize({ key: 'miDocumentation', comment: ['&& denotes a mnemonic'] }, "&&Documentation"), 'workbench.action.openDocumentationUrl') diff --git a/src/vs/platform/node/product.ts b/src/vs/platform/node/product.ts index f3e59444aa..198ff7d1cb 100644 --- a/src/vs/platform/node/product.ts +++ b/src/vs/platform/node/product.ts @@ -52,6 +52,7 @@ export interface IProductConfiguration { }; documentationUrl: string; releaseNotesUrl: string; + gettingStartedUrl: string; keyboardShortcutsUrlMac: string; keyboardShortcutsUrlLinux: string; keyboardShortcutsUrlWin: string;