Skip to content

Commit

Permalink
[APP]Release v1.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wannabit-yongjoo committed Apr 30, 2024
1 parent b4aa0d1 commit 2e073ee
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions Cosmostation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6353,7 +6353,7 @@
CODE_SIGN_ENTITLEMENTS = Cosmostation/Cosmostation.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 272;
CURRENT_PROJECT_VERSION = 273;
DEVELOPMENT_TEAM = 8G562MW56M;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -6365,7 +6365,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.10.7;
MARKETING_VERSION = 1.10.8;
PRODUCT_BUNDLE_IDENTIFIER = io.wannabit.cosmostation.debug;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -6386,7 +6386,7 @@
CODE_SIGN_ENTITLEMENTS = Cosmostation/Cosmostation.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 272;
CURRENT_PROJECT_VERSION = 273;
DEVELOPMENT_TEAM = 8G562MW56M;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 8G562MW56M;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -6399,7 +6399,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.10.7;
MARKETING_VERSION = 1.10.8;
PRODUCT_BUNDLE_IDENTIFIER = io.wannabit.cosmostation.debug;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "Cosmostation debug provisioning profile";
Expand Down Expand Up @@ -6539,7 +6539,7 @@
CODE_SIGN_ENTITLEMENTS = Cosmostation/Cosmostation.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 272;
CURRENT_PROJECT_VERSION = 273;
DEVELOPMENT_TEAM = 8G562MW56M;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -6553,7 +6553,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.10.7;
MARKETING_VERSION = 1.10.8;
PRODUCT_BUNDLE_IDENTIFIER = io.wannabit.cosmostation;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -6572,7 +6572,7 @@
CODE_SIGN_ENTITLEMENTS = Cosmostation/Cosmostation.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 272;
CURRENT_PROJECT_VERSION = 273;
DEVELOPMENT_TEAM = 8G562MW56M;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -6586,7 +6586,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.10.7;
MARKETING_VERSION = 1.10.8;
PRODUCT_BUNDLE_IDENTIFIER = io.wannabit.cosmostation;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion Cosmostation/Controller/Sheet/TxSendAddressSheet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class TxSendAddressSheet: BaseVC, UITextViewDelegate, UITextFieldDelegate, QrSca
self.onShowToast(NSLocalizedString("error_invalid_address", comment: ""))
return
}
if (userInput?.lowercased() == senderBechAddress.lowercased() || userInput?.lowercased() == senderEvmAddress.lowercased() ) {
if (userInput?.lowercased() == senderBechAddress?.lowercased() || userInput?.lowercased() == senderEvmAddress?.lowercased() ) {
self.onShowToast(NSLocalizedString("error_self_send", comment: ""))
return
}
Expand Down

0 comments on commit 2e073ee

Please sign in to comment.