|
@@ -421,7 +421,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, iRateDelegate{
|
|
|
tVersion?.applicationBundleID = Bundle.main.bundleIdentifier
|
|
|
|
|
|
var tStr = "New Update Available"
|
|
|
- tVersion?.updateAvailableTitle = tVersion?.localizedString(forKey: tStr, withDefault: tStr)
|
|
|
+ tVersion?.updateAvailableTitle = (tVersion?.localizedString(forKey: tStr, withDefault: tStr) ?? "") + "\n"
|
|
|
tVersion?.versionLabelFormat = ""
|
|
|
tVersion?.groupNotesByVersion = true
|
|
|
tVersion?.showOnFirstLaunch = false
|
|
@@ -439,7 +439,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, iRateDelegate{
|
|
|
tStr = (tVersion?.localizedString(forKey: tStr, withDefault: tStr))!
|
|
|
tStr = String(format: tStr, appName)
|
|
|
|
|
|
- tVersion?.inThisVersionTitle = "\n" + tStr
|
|
|
+ tVersion?.inThisVersionTitle = tStr
|
|
|
|
|
|
tStr = "UPDATE NOW";
|
|
|
tVersion!.downloadButtonLabel = tVersion?.localizedString(forKey: tStr, withDefault: tStr)
|