Skip to content

Commit

Permalink
✨ Some more IAP UI fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsetsonwheels committed Feb 26, 2022
1 parent 47774d4 commit 2c98981
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Iamages.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
CODE_SIGN_ENTITLEMENTS = Widgets/WidgetsExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_TEAM = 2VZNUT7D2E;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Widgets/Info.plist;
Expand Down Expand Up @@ -703,7 +703,7 @@
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
CODE_SIGN_ENTITLEMENTS = Widgets/WidgetsExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_TEAM = 2VZNUT7D2E;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Widgets/Info.plist;
Expand All @@ -730,7 +730,7 @@
buildSettings = {
CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_TEAM = 2VZNUT7D2E;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = ShareExtension/Info.plist;
Expand All @@ -757,7 +757,7 @@
buildSettings = {
CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_TEAM = 2VZNUT7D2E;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = ShareExtension/Info.plist;
Expand Down Expand Up @@ -904,7 +904,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
CODE_SIGN_ENTITLEMENTS = Iamages/Iamages.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_ASSET_PATHS = "\"Iamages/Preview Content\"";
DEVELOPMENT_TEAM = 2VZNUT7D2E;
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
Expand Down Expand Up @@ -942,7 +942,7 @@
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
CODE_SIGN_ENTITLEMENTS = Iamages/Iamages.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_ASSET_PATHS = "\"Iamages/Preview Content\"";
DEVELOPMENT_TEAM = 2VZNUT7D2E;
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
Expand Down
3 changes: 2 additions & 1 deletion Iamages/Views/PreferencesView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,12 @@ struct PreferencesView: View {
if self.areProductsLoading {
HStack {
ProgressView()
.padding(.trailing, 4)
Text("Loading tips...")
}
} else {
if let productsLoadingErrorText: String = self.productsLoadingErrorText {
Text("Loading tips failed: \(productsLoadingErrorText). Please relaunch the app to retry.")
Text("**Loading tips failed!**\n\n\(productsLoadingErrorText)\n\nPlease relaunch the app to retry.")
} else {
ForEach(self.products) { product in
Button("\(product.displayName) (\(product.displayPrice))") {
Expand Down

0 comments on commit 2c98981

Please sign in to comment.