Added empty food menu notice, code for checking the app version, possible fix for jumpy CollectionView behaviour, TODO: check on real device

This commit is contained in:
Deniz Duezgoeren
2019-10-19 09:29:59 +02:00
parent fc8349d30c
commit ede4f0cc0a
7 changed files with 29 additions and 6 deletions
@@ -119,6 +119,13 @@ class CustomizationViewController: UITableViewController, UITextFieldDelegate, U
self.prefs.set(newValue, forKey: "use_test_urls")
toastMessage = "Test URLs set to \(newValue)"
break
case "_version":
if let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String {
toastMessage = "App version: \(version)"
} else {
toastMessage = "Version couldn't be resolved"
}
break
default:
toastMessage = NSLocalizedString("invalid_code", comment: "")
break