diff --git a/src/common/user-store/preferences-helpers.ts b/src/common/user-store/preferences-helpers.ts index 7bb3aee41b..76251d92c2 100644 --- a/src/common/user-store/preferences-helpers.ts +++ b/src/common/user-store/preferences-helpers.ts @@ -301,6 +301,9 @@ export interface UpdateChannelInfo { } export const updateChannels = readonly(new Map([ + ["none", { + label: "Do Not Update", + }], ["latest", { label: "Stable", }], @@ -311,7 +314,8 @@ export const updateChannels = readonly(new Map([ label: "Alpha", }], ])); -export const defaultUpdateChannel = new SemVer(getAppVersion()).prerelease[0]?.toString() || "latest"; +// export const defaultUpdateChannel = new SemVer(getAppVersion()).prerelease[0]?.toString() || "latest"; +export const defaultUpdateChannel = "none"; const updateChannel: PreferenceDescription = { fromStore(val) {