You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warn about installed extensions that are no longer available in Marketplace (microsoft#248852)
* Display warning for unpublished gallery extensions
ref: microsoft#181248
* naming is hard
* tidy up
* update variable
* detect missing extension
* add a filter to 'syncMissingFromGallery' so we can compare against subsets of a galleryExtension
* move into syncInstalledExtensionsWithGallery
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/extensions/browser/extensionsActions.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2608,6 +2608,11 @@ export class ExtensionStatusAction extends ExtensionAction {
2608
2608
return;
2609
2609
}
2610
2610
2611
+
if(this.extension.missingFromGallery){
2612
+
this.updateStatus({icon: warningIcon,message: newMarkdownString(localize('missing from gallery tooltip',"This extension is no longer available on the Extension Marketplace."))},true);
0 commit comments