forked from openkylin/kylin-code
修改settings:关闭遥测和遥测崩溃报告,关闭Application自动更新和显示releaseNotes
This commit is contained in:
parent
bd158b40ef
commit
22efe80ab3
|
@ -291,7 +291,7 @@ Registry.as<IConfigurationRegistry>(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']
|
||||
|
|
|
@ -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']
|
||||
|
|
|
@ -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}#\``),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue