Skip to content

Commit

Permalink
Update launch tutorial to work on SE first gen
Browse files Browse the repository at this point in the history
  • Loading branch information
afterxleep committed Feb 19, 2022
1 parent 2973cfa commit 960bc6f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Bouncer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.2.0;
MARKETING_VERSION = 2.2.1;
PRODUCT_BUNDLE_IDENTIFIER = com.banshai.bouncer.smsfilter;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -794,7 +794,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.2.0;
MARKETING_VERSION = 2.2.1;
PRODUCT_BUNDLE_IDENTIFIER = com.banshai.bouncer.smsfilter;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -941,7 +941,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2.0;
MARKETING_VERSION = 2.2.1;
PRODUCT_BUNDLE_IDENTIFIER = com.banshai.bouncer;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -969,7 +969,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2.0;
MARKETING_VERSION = 2.2.1;
PRODUCT_BUNDLE_IDENTIFIER = com.banshai.bouncer;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion Bouncer/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>167</string>
<string>169</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSceneManifest</key>
Expand Down
9 changes: 4 additions & 5 deletions Bouncer/Views/Tutorial/TutorialView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ struct TutorialView: View {
Text("WELCOME_SUBTITLE")
.font(.largeTitle)
.foregroundColor(Color("TextDefaultColor"))
.padding(.bottom, 60.0)
.padding(.bottom, 20.0)
}
else {
Text("HELP")
.font(.largeTitle)
.fontWeight(.bold)
.foregroundColor(Color("TextHighLightColor"))
.padding(.bottom, 20.0)
}
}
VStack(alignment: .center) {
Expand All @@ -43,8 +42,8 @@ struct TutorialView: View {
.fontWeight(.bold) +
Text("ON_YOUR_IPHONE").foregroundColor(Color("TextDefaultColor"))
}
.padding(.horizontal, 40.0)
.padding(.top, 40)
.padding(.horizontal, 20.0)
.padding(.top, 20)
.fixedSize(horizontal: false, vertical: true)
.multilineTextAlignment(.center)

Expand Down Expand Up @@ -91,7 +90,7 @@ struct TutorialView: View {
Text( "'Bouncer'").foregroundColor(Color("TextDefaultColor"))
}
}
.padding(.bottom, 35)
.padding(.bottom, 20)

Button(action: {
if(!hasLaunchedApp) {
Expand Down
2 changes: 1 addition & 1 deletion smsfilter/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>167</string>
<string>169</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down

0 comments on commit 960bc6f

Please sign in to comment.