1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Windows: Re-enable the beta "auto-update" feature flag (#11802)

This commit is contained in:
Henry Heino
2025-02-07 12:18:40 -08:00
committed by GitHub
parent 18a9c3f841
commit 7055d3db18
3 changed files with 21 additions and 5 deletions

View File

@@ -1672,12 +1672,12 @@ const builtInMetadata = (Setting: typeof SettingType) => {
'featureFlag.autoUpdaterServiceEnabled': {
value: false,
type: SettingItemType.Bool,
public: false,
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(),
show: () => shim.isWindows(),
section: 'application',
isGlobal: true,
},