Skip to content

Commit

Permalink
- Minor bug fixes
Browse files Browse the repository at this point in the history
“appledave”vc committed Sep 14, 2023
1 parent a609b55 commit eb84ad3
Showing 4 changed files with 17 additions and 9 deletions.
16 changes: 8 additions & 8 deletions GP App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -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;
Binary file not shown.
5 changes: 4 additions & 1 deletion GP App/Home.swift
Original file line number Diff line number Diff line change
@@ -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)
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit eb84ad3

Please sign in to comment.