Skip to content

Commit cce43a7

Browse files
authored
Merge pull request #27 from ApptiveDev/dev
[Release] 1.0.12
2 parents 02cfbf0 + 4fb46d6 commit cce43a7

2 files changed

Lines changed: 11 additions & 17 deletions

File tree

KillingPart.xcodeproj/project.pbxproj

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@
434434
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
435435
CODE_SIGN_ENTITLEMENTS = KillingPart/KillingPart.entitlements;
436436
CODE_SIGN_STYLE = Automatic;
437-
CURRENT_PROJECT_VERSION = 11;
437+
CURRENT_PROJECT_VERSION = 12;
438438
DEAD_CODE_STRIPPING = YES;
439439
DEVELOPMENT_TEAM = GQ89YG5G9R;
440440
ENABLE_APP_SANDBOX = YES;
@@ -453,18 +453,13 @@
453453
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
454454
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
455455
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
456-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = (
457-
UIInterfaceOrientationPortrait,
458-
UIInterfaceOrientationPortraitUpsideDown,
459-
UIInterfaceOrientationLandscapeLeft,
460-
UIInterfaceOrientationLandscapeRight,
461-
);
456+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
462457
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = UIInterfaceOrientationPortrait;
463458
IPHONEOS_DEPLOYMENT_TARGET = 16.6;
464459
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
465460
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
466461
MACOSX_DEPLOYMENT_TARGET = 14.0;
467-
MARKETING_VERSION = 1.0.11;
462+
MARKETING_VERSION = 1.0.12;
468463
PRODUCT_BUNDLE_IDENTIFIER = com.killingpoint.killingpart;
469464
PRODUCT_NAME = "$(TARGET_NAME)";
470465
REGISTER_APP_GROUPS = YES;
@@ -484,7 +479,7 @@
484479
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
485480
CODE_SIGN_ENTITLEMENTS = KillingPart/KillingPart.entitlements;
486481
CODE_SIGN_STYLE = Automatic;
487-
CURRENT_PROJECT_VERSION = 11;
482+
CURRENT_PROJECT_VERSION = 12;
488483
DEAD_CODE_STRIPPING = YES;
489484
DEVELOPMENT_TEAM = GQ89YG5G9R;
490485
ENABLE_APP_SANDBOX = YES;
@@ -503,18 +498,13 @@
503498
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
504499
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
505500
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
506-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = (
507-
UIInterfaceOrientationPortrait,
508-
UIInterfaceOrientationPortraitUpsideDown,
509-
UIInterfaceOrientationLandscapeLeft,
510-
UIInterfaceOrientationLandscapeRight,
511-
);
501+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
512502
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = UIInterfaceOrientationPortrait;
513503
IPHONEOS_DEPLOYMENT_TARGET = 16.6;
514504
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
515505
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
516506
MACOSX_DEPLOYMENT_TARGET = 14.0;
517-
MARKETING_VERSION = 1.0.11;
507+
MARKETING_VERSION = 1.0.12;
518508
PRODUCT_BUNDLE_IDENTIFIER = com.killingpoint.killingpart;
519509
PRODUCT_NAME = "$(TARGET_NAME)";
520510
REGISTER_APP_GROUPS = YES;

KillingPart/Views/Screens/Main/My/MyTabView.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ struct MyTabView: View {
1313
var body: some View {
1414
NavigationStack {
1515
GeometryReader { geometry in
16+
let bottomContentInset = min(geometry.safeAreaInsets.bottom, AppSpacing.xl) + AppSpacing.l
17+
1618
ZStack {
1719
Image("my_background")
1820
.resizable()
@@ -38,13 +40,15 @@ struct MyTabView: View {
3840
}
3941
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top)
4042
.clipped()
43+
.padding(.bottom, bottomContentInset)
4144
}
42-
4345
.padding(.horizontal, AppSpacing.m)
4446
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top)
47+
.padding(.bottom, bottomContentInset)
4548
}
4649
.frame(maxWidth: .infinity, maxHeight: .infinity)
4750
.toolbar(.hidden, for: .navigationBar)
51+
.padding(.bottom, bottomContentInset)
4852
}
4953
}
5054
}

0 commit comments

Comments
 (0)