This commit is contained in:
Alin
2023-11-20 10:28:18 -07:00
parent 78c3a2b0cf
commit 33494e87b0
8 changed files with 94 additions and 39 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ func checkForUpdate(appState: AppState, manual: Bool = false) {
guard let latestRelease = appState.releases.first else { return }
let currentVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String
if latestRelease.tag_name > currentVersion ?? "" {
NewWin.show(appState: appState, width: 500, height: 400, newWin: .update)
NewWin.show(appState: appState, width: 500, height: 440, newWin: .update)
// appState.alertType = .update
// appState.showAlert = true
} else {