Update deps and add a setting for rounded corners on windows

This commit is contained in:
2025-08-04 13:12:38 -07:00
parent e8ae09446c
commit 70847f46f0
8 changed files with 192 additions and 153 deletions

View File

@@ -2,6 +2,7 @@ export class SettingsType {
constructor (
public checkForNewVersionOnLoad: boolean = true,
public allowNotifications: boolean = true,
public useWineOnUnixWhenNeeded: boolean = false
public useWineOnUnixWhenNeeded: boolean = false,
public useWindowsRoundedCorners: boolean = false
) {}
}