From 22efe80ab36dfbc7eef44804aab5a6e9d6d80b4e Mon Sep 17 00:00:00 2001 From: chriswang521 Date: Fri, 17 Mar 2023 17:43:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9settings=EF=BC=9A=E5=85=B3?= =?UTF-8?q?=E9=97=AD=E9=81=A5=E6=B5=8B=E5=92=8C=E9=81=A5=E6=B5=8B=E5=B4=A9?= =?UTF-8?q?=E6=BA=83=E6=8A=A5=E5=91=8A=EF=BC=8C=E5=85=B3=E9=97=ADApplicati?= =?UTF-8?q?on=E8=87=AA=E5=8A=A8=E6=9B=B4=E6=96=B0=E5=92=8C=E6=98=BE?= =?UTF-8?q?=E7=A4=BAreleaseNotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/vs/platform/telemetry/common/telemetryService.ts | 2 +- src/vs/platform/update/common/update.config.contribution.ts | 4 ++-- src/vs/workbench/electron-sandbox/desktop.contribution.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/platform/telemetry/common/telemetryService.ts b/src/vs/platform/telemetry/common/telemetryService.ts index f3dab6de..6fa59160 100644 --- a/src/vs/platform/telemetry/common/telemetryService.ts +++ b/src/vs/platform/telemetry/common/telemetryService.ts @@ -291,7 +291,7 @@ Registry.as(Extensions.Configuration).registerConfigurat localize('telemetry.telemetryLevel.off', "Disables all product telemetry.") ], 'markdownDescription': getTelemetryLevelSettingDescription(), - 'default': TelemetryConfiguration.ON, + 'default': TelemetryConfiguration.OFF, 'restricted': true, 'scope': ConfigurationScope.APPLICATION, 'tags': ['usesOnlineServices', 'telemetry'] diff --git a/src/vs/platform/update/common/update.config.contribution.ts b/src/vs/platform/update/common/update.config.contribution.ts index 5ceb9572..d35a9e6e 100644 --- a/src/vs/platform/update/common/update.config.contribution.ts +++ b/src/vs/platform/update/common/update.config.contribution.ts @@ -18,7 +18,7 @@ configurationRegistry.registerConfiguration({ 'update.mode': { type: 'string', enum: ['none', 'manual', 'start', 'default'], - default: 'default', + default: 'none', scope: ConfigurationScope.APPLICATION, description: localize('updateMode', "Configure whether you receive automatic updates. Requires a restart after change. The updates are fetched from a Microsoft online service."), tags: ['usesOnlineServices'], @@ -46,7 +46,7 @@ configurationRegistry.registerConfiguration({ }, 'update.showReleaseNotes': { type: 'boolean', - default: true, + default: false, scope: ConfigurationScope.APPLICATION, description: localize('showReleaseNotes', "Show Release Notes after an update. The Release Notes are fetched from a Microsoft online service."), tags: ['usesOnlineServices'] diff --git a/src/vs/workbench/electron-sandbox/desktop.contribution.ts b/src/vs/workbench/electron-sandbox/desktop.contribution.ts index 15bcde98..206b1ae3 100644 --- a/src/vs/workbench/electron-sandbox/desktop.contribution.ts +++ b/src/vs/workbench/electron-sandbox/desktop.contribution.ts @@ -251,7 +251,7 @@ import { ModifierKeyEmitter } from 'vs/base/browser/dom'; 'telemetry.enableCrashReporter': { 'type': 'boolean', 'description': localize('telemetry.enableCrashReporting', "Enable crash reports to be collected. This helps us improve stability. \nThis option requires restart to take effect."), - 'default': true, + 'default': false, 'tags': ['usesOnlineServices', 'telemetry'], 'markdownDeprecationMessage': localize('enableCrashReporterDeprecated', "If this setting is false, no telemetry will be sent regardless of the new setting's value. Deprecated due to being combined into the {0} setting.", `\`#${TELEMETRY_SETTING_ID}#\``), }