1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Mobile,Desktop,Cli: Fixes #10896: Fix "Enable auto-updates" enabled by default and visible on unsupported platforms (#10897)

This commit is contained in:
Henry Heino 2024-08-22 13:51:57 -07:00 committed by GitHub
parent 59a8c2115c
commit c19d0773b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1553,12 +1553,14 @@ const builtInMetadata = (Setting: typeof SettingType) => {
},
'featureFlag.autoUpdaterServiceEnabled': {
value: true,
value: false,
type: SettingItemType.Bool,
public: true,
storage: SettingStorage.File,
appTypes: [AppType.Desktop],
label: () => 'Enable auto-updates',
description: () => 'Enable this feature to receive notifications about updates and install them instead of manually downloading them. Restart app to start receiving auto-updates.',
show: () => shim.isWindows() || shim.isMac(),
section: 'application',
isGlobal: true,
},