mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-23 18:53:36 +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:
parent
59a8c2115c
commit
c19d0773b3
@ -1553,12 +1553,14 @@ const builtInMetadata = (Setting: typeof SettingType) => {
|
|||||||
},
|
},
|
||||||
|
|
||||||
'featureFlag.autoUpdaterServiceEnabled': {
|
'featureFlag.autoUpdaterServiceEnabled': {
|
||||||
value: true,
|
value: false,
|
||||||
type: SettingItemType.Bool,
|
type: SettingItemType.Bool,
|
||||||
public: true,
|
public: true,
|
||||||
storage: SettingStorage.File,
|
storage: SettingStorage.File,
|
||||||
|
appTypes: [AppType.Desktop],
|
||||||
label: () => 'Enable auto-updates',
|
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.',
|
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',
|
section: 'application',
|
||||||
isGlobal: true,
|
isGlobal: true,
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user