Actually shows AltStore build version in Settings for BETA builds

This commit is contained in:
Riley Testut
2023-12-08 18:48:17 -06:00
parent 11fa622b42
commit eb80b59e3d

View File

@@ -107,7 +107,12 @@ 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