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
Fix brand.patch: Correct line numbers and context for VS Code 1.106.0
- extensionLinter.ts: Fix context to include line 32
- html-language-features: Revert to line 25 (was correct)
- typescript-language-features: Fix to line 170 (not 172)
- server.cli.ts: Fix function signature (err: unknown not err: any)
- extensionsActions.ts: Fix to line 2599 with correct context
- gettingStartedContent.ts: Fix to line 15 and 225
@@ -32,5 +32,5 @@ const dataUrlsNotValid = l10n.t("Data URLs are not a valid image source.");
69
+
const relativeUrlRequiresHttpsRepository = l10n.t("Relative image URLs require a repository with HTTPS protocol to be specified in the package.json.");
69
70
const relativeBadgeUrlRequiresHttpsRepository = l10n.t("Relative badge URLs require a repository with HTTPS protocol to be specified in this package.json.");
70
71
-const apiProposalNotListed = l10n.t("This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.");
71
72
-const bumpEngineForImplicitActivationEvents = l10n.t("This activation event can be removed for extensions targeting engine version ^1.75.0 as VS Code will generate these automatically from your package.json contribution declarations.");
@@ -249,7 +250,7 @@ index f36ecf3..9545ba2 100644
249
250
- "html.customData.desc": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its HTML support for the custom HTML tags, attributes and attribute values you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.",
250
251
+ "html.customData.desc": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\n\n!!APP_NAME!! loads custom data on startup to enhance its HTML support for the custom HTML tags, attributes and attribute values you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.",
251
252
"html.format.enable.desc": "Enable/disable default HTML formatter.",
252
-
@@ -26,3 +26,3 @@
253
+
@@ -25,3 +25,3 @@
253
254
"html.suggest.html5.desc": "Controls whether the built-in HTML language support suggests HTML5 tags, properties and values.",
254
255
"html.suggest.hideEndTagSuggestions.desc": "Controls whether the built-in HTML language support suggests closing tags. When disabled, end tag completions like `</div>` will not be shown.",
255
256
- "html.trace.server.desc": "Traces the communication between VS Code and the HTML language server.",
@@ -377,10 +378,10 @@ index 447359e..e40077c 100644
377
378
- "typescript.updateImportsOnFileMove.enabled": "Enable/disable automatic updating of import paths when you rename or move a file in VS Code.",
378
379
+ "typescript.updateImportsOnFileMove.enabled": "Enable/disable automatic updating of import paths when you rename or move a file in !!APP_NAME!!.",
379
380
"typescript.updateImportsOnFileMove.enabled.prompt": "Prompt on each rename.",
380
-
@@ -172,6 +172,6 @@
381
-
"configuration.suggest.completeJSDocs": "Enable/disable suggestion to complete JSDoc comments.",
381
+
@@ -170,6 +170,6 @@
382
382
"typescript.autoClosingTags": "Enable/disable automatic closing of JSX tags.",
"configuration.suggest.completeJSDocs": "Enable/disable suggestion to complete JSDoc comments.",
384
385
- "configuration.tsserver.useVsCodeWatcher": "Use VS Code's file watchers instead of TypeScript's. Requires using TypeScript 5.4+ in the workspace.",
385
386
+ "configuration.tsserver.useVsCodeWatcher": "Use !!APP_NAME!!'s file watchers instead of TypeScript's. Requires using TypeScript 5.4+ in the workspace.",
386
387
"configuration.tsserver.useVsCodeWatcher.deprecation": "Please use the `#typescript.tsserver.watchOptions#` setting instead.",
@@ -470,3 +470,3 @@ function asExtensionIdOrVSIX(inputs: string[] | undefined) {
659
-
function fatal(message: string, err: any): void {
659
+
@@ -469,3 +469,3 @@ function asExtensionIdOrVSIX(inputs: string[] | undefined) {
660
+
function fatal(message: string, err: unknown): void {
660
661
- console.error('Unable to connect to VS Code server: ' + message);
661
662
+ console.error('Unable to connect to !!APP_NAME!! server: ' + message);
662
663
console.error(err);
@@ -784,8 +785,8 @@ index 572bb26..53f5740 100644
784
785
- alert(localize('uninstallExtensionComplete', "Please reload Visual Studio Code to complete the uninstallation of the extension {0}.", this.extension.displayName));
785
786
+ alert(localize('uninstallExtensionComplete', "Please reload !!APP_NAME!! to complete the uninstallation of the extension {0}.", this.extension.displayName));
786
787
} catch (error) {
787
-
@@ -2600,3 +2600,3 @@ export class ExtensionStatusAction extends ExtensionAction {
788
-
} else if (this.extension.deprecationInfo.settings) {
788
+
@@ -2599,4 +2599,4 @@ export class ExtensionStatusAction extends ExtensionAction {
789
+
} else if (this.extension.deprecationInfo.settings) {
789
790
const link = `[${localize('settings', "settings")}](${createCommandUri('workbench.action.openSettings', this.extension.deprecationInfo.settings.map(setting => `@id:${setting}`).join(' '))}})`;
790
791
- this.updateStatus({ icon: warningIcon, message: new MarkdownString(localize('deprecated with alternate settings tooltip', "This extension is deprecated as this functionality is now built-in to VS Code. Configure these {0} to use this functionality.", link)) }, true);
791
792
+ this.updateStatus({ icon: warningIcon, message: new MarkdownString(localize('deprecated with alternate settings tooltip', "This extension is deprecated as this functionality is now built-in to !!APP_NAME!!. Configure these {0} to use this functionality.", link)) }, true);
-const CopilotStepTitle = localize('gettingStarted.copilotSetup.title', "Use AI features with Copilot for free");
1043
1044
-const CopilotDescription = localize({ key: 'gettingStarted.copilotSetup.description', comment: ['{Locked="["}', '{Locked="]({0})"}'] }, "You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code, and much more using natural language.", defaultChat.documentationUrl ?? '');
0 commit comments