diff --git a/AltStore/Settings/SettingsViewController.swift b/AltStore/Settings/SettingsViewController.swift index a3054acf..e85fa870 100644 --- a/AltStore/Settings/SettingsViewController.swift +++ b/AltStore/Settings/SettingsViewController.swift @@ -132,7 +132,12 @@ final class SettingsViewController: UITableViewController { #if BETA // Only show build version for BETA builds. - let localizedVersion = installedApp.localizedVersion + let localizedVersion = if let bundleVersion = Bundle.main.object(forInfoDictionaryKey: kCFBundleVersionKey as String) as? String { + "\(installedApp.version) (\(bundleVersion))" + } + else { + installedApp.localizedVersion + } #else let localizedVersion = installedApp.version #endif