Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UI/UX] Remove 'Check for Updates on Startup' setting #1250

Merged
merged 4 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,6 @@
"autoUpdateGames": "Automatically update games",
"autovkd3d": "Auto Install/Update VKD3D on Prefix",
"change-target-exe": "Select an alternative EXE to run",
"checkForUpdatesOnStartup": "Check for HyperPlay Updates on Startup",
"crossover-version": "Crossover/Wine Version",
"custom_themes_path": "Custom Themes Path",
"customWineProton": "Custom Wine/Proton Paths",
Expand Down
1 change: 0 additions & 1 deletion src/backend/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ class GlobalConfigV0 extends GlobalConfig {
autoInstallDxvkNvapi: false,
addSteamShortcuts: false,
preferSystemLibs: false,
checkForUpdatesOnStartup: !isLinux,
autoUpdateGames: true,
customWinePaths: isWindows ? null : [],
defaultInstallPath: installPath,
Expand Down
16 changes: 3 additions & 13 deletions src/backend/updater/updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { app, dialog, shell } from 'electron'
import { autoUpdater } from 'electron-updater'
import { t } from 'i18next'

import { configStore, icon, isLinux } from '../constants'
import { icon, isLinux } from '../constants'
import { logError, logInfo, LogPrefix } from '../logger/logger'
import { captureException } from '@sentry/electron'
import { getFileSize } from '../utils'
Expand All @@ -12,11 +12,9 @@ import { getErrorMessage, removeCachedUpdatesFolder } from './utils'
// to test auto update on windows locally make sure you added the option verifyUpdateCodeSignature: false
// under build.win in electron-builder.yml and also change the app version to an old one there

const appSettings = configStore.get_nodefault('settings')
const shouldCheckForUpdates = appSettings?.checkForUpdatesOnStartup === true
let newVersion: string

autoUpdater.autoDownload = shouldCheckForUpdates && !isLinux
autoUpdater.autoDownload = !isLinux
autoUpdater.autoInstallOnAppQuit = true

let isAppUpdating = false
Expand All @@ -29,7 +27,7 @@ const MAX_UPDATE_ATTEMPTS = 10
const checkUpdateInterval = 3 * 1000 * 60 * 60

setInterval(async () => {
if (shouldCheckForUpdates && !hasUpdated && !isAppUpdating) {
if (!hasUpdated && !isAppUpdating) {
logInfo('Checking for client updates...', LogPrefix.AutoUpdater)
await autoUpdater.checkForUpdates()
}
Expand All @@ -44,14 +42,6 @@ autoUpdater.on('update-available', async (info) => {
return
}

if (!shouldCheckForUpdates) {
logInfo(
'New update available, but user has disabled auto updates',
LogPrefix.AutoUpdater
)

return
}
newVersion = info.version

trackEvent({
Expand Down
38 changes: 0 additions & 38 deletions src/frontend/screens/Settings/components/CheckUpdatesOnStartup.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/frontend/screens/Settings/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export { default as AutoDXVKNVAPI } from './AutoDXVKNVAPI'
export { default as AutoUpdateGames } from './AutoUpdateGames'
export { default as AutoVKD3D } from './AutoVKD3D'
export { default as BattlEyeRuntime } from './BattlEyeRuntime'
export { default as CheckUpdatesOnStartup } from './CheckUpdatesOnStartup'
export { default as CrossoverBottle } from './CrossoverBottle'
export { default as CustomWineProton } from './CustomWineProton'
export { default as DefaultInstallPath } from './DefaultInstallPath'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { useTranslation } from 'react-i18next'
import LanguageSelector from 'frontend/components/UI/LanguageSelector'
import {
AutoUpdateGames,
CheckUpdatesOnStartup,
DefaultInstallPath,
DefaultSteamPath,
EgsSettings,
Expand Down Expand Up @@ -40,8 +39,6 @@ export default function GeneralSettings() {

<AutoLaunchHyperPlay />

<CheckUpdatesOnStartup />

<AutoUpdateGames />

<TraySettings />
Expand Down
Loading