Remove "v" from version number. Issue #1339

This commit is contained in:
Maurice Parker 2019-11-24 11:25:42 -06:00
parent a3abef2b62
commit e8395c8bfc
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class SettingsViewController: UITableViewController {
let buildLabel = NonIntrinsicLabel(frame: CGRect(x: 20.0, y: 0.0, width: 0.0, height: 0.0))
buildLabel.font = UIFont.systemFont(ofSize: 11.0)
buildLabel.textColor = UIColor.gray
buildLabel.text = "\(Bundle.main.appName) v \(Bundle.main.versionNumber) (Build \(Bundle.main.buildNumber))"
buildLabel.text = "\(Bundle.main.appName) \(Bundle.main.versionNumber) (Build \(Bundle.main.buildNumber))"
buildLabel.sizeToFit()
buildLabel.translatesAutoresizingMaskIntoConstraints = false