提交 0dd8feee 编写于 作者: R Ramya Achutha Rao

Changelog for built in extensions #54098

上级 b33be761
......@@ -264,7 +264,7 @@ ${this.description}
return uri.scheme === 'file';
}
return false;
return this.type === LocalExtensionType.System;
}
getChangelog(): TPromise<string> {
......@@ -275,6 +275,10 @@ ${this.description}
const changelogUrl = this.local && this.local.changelogUrl;
if (!changelogUrl) {
if (this.type === LocalExtensionType.System) {
return TPromise.as(nls.localize('checkReleaseNotes', 'Please check the [VS Code Release Notes](https://code.visulstudio.com/updates) for changes to the built-in extensions.'));
}
return TPromise.wrapError<string>(new Error('not available'));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册