diff --git a/GP App.xcodeproj/project.pbxproj b/GP App.xcodeproj/project.pbxproj index ebd2edd..8e962ce 100644 --- a/GP App.xcodeproj/project.pbxproj +++ b/GP App.xcodeproj/project.pbxproj @@ -700,7 +700,7 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 32; + CURRENT_PROJECT_VERSION = 33; DEVELOPMENT_TEAM = KMS556J2F8; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = OneSignalNotificationServiceExtension/Info.plist; @@ -713,7 +713,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.5.4; PRODUCT_BUNDLE_IDENTIFIER = "be.ghentphotography.www.GP-App.OneSignalNotificationServiceExtension"; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; @@ -729,7 +729,7 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 32; + CURRENT_PROJECT_VERSION = 33; DEVELOPMENT_TEAM = KMS556J2F8; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = OneSignalNotificationServiceExtension/Info.plist; @@ -742,7 +742,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.5.4; PRODUCT_BUNDLE_IDENTIFIER = "be.ghentphotography.www.GP-App.OneSignalNotificationServiceExtension"; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; @@ -875,7 +875,7 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_ENTITLEMENTS = "GP App/GP App.entitlements"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 32; + CURRENT_PROJECT_VERSION = 33; DEVELOPMENT_TEAM = KMS556J2F8; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = "GP App/Info.plist"; @@ -892,7 +892,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.5.4; PRODUCT_BUNDLE_IDENTIFIER = "be.ghentphotography.www.GP-App"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_EMIT_LOC_STRINGS = YES; @@ -909,7 +909,7 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_ENTITLEMENTS = "GP App/GP App.entitlements"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 32; + CURRENT_PROJECT_VERSION = 33; DEVELOPMENT_TEAM = KMS556J2F8; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = "GP App/Info.plist"; @@ -926,7 +926,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.5.4; PRODUCT_BUNDLE_IDENTIFIER = "be.ghentphotography.www.GP-App"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_EMIT_LOC_STRINGS = YES; diff --git a/GP App.xcodeproj/project.xcworkspace/xcuserdata/dave.xcuserdatad/UserInterfaceState.xcuserstate b/GP App.xcodeproj/project.xcworkspace/xcuserdata/dave.xcuserdatad/UserInterfaceState.xcuserstate index 0b2bb18..bfae2ec 100644 Binary files a/GP App.xcodeproj/project.xcworkspace/xcuserdata/dave.xcuserdatad/UserInterfaceState.xcuserstate and b/GP App.xcodeproj/project.xcworkspace/xcuserdata/dave.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/GP App/Home.swift b/GP App/Home.swift index cc061fb..43cd1b6 100644 --- a/GP App/Home.swift +++ b/GP App/Home.swift @@ -18,13 +18,16 @@ class Home: UIViewController { override func viewDidLoad() { super.viewDidLoad() + // Set the view controller's title + title = "Ghent Photography" + view.addSubview(scrollView) NSLayoutConstraint.activate([ scrollView.leadingAnchor.constraint(equalTo: view.leadingAnchor), scrollView.trailingAnchor.constraint(equalTo: view.trailingAnchor), scrollView.topAnchor.constraint(equalTo: view.topAnchor), - scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -49) // Adjust for tab bar height + scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor) ]) let buttonSize = CGSize(width: view.bounds.width - 32, height: view.bounds.width - 32) diff --git a/GP App/Settings/About GP/ReleaseNotesViewController.swift.swift b/GP App/Settings/About GP/ReleaseNotesViewController.swift.swift index 5b43a22..3639e9d 100644 --- a/GP App/Settings/About GP/ReleaseNotesViewController.swift.swift +++ b/GP App/Settings/About GP/ReleaseNotesViewController.swift.swift @@ -28,6 +28,11 @@ class ReleaseNotesViewController: UIViewController { }() private let releaseNotesText = """ + v1.5.4 (14/09/2023) + + - All InfoViews have been added + - Minor bug fixes + v1.5.3 (13/08/2023) - New Home (Initial View Controller)