Skip to content

Commit

Permalink
Merge branch 'release/1.0.15'
Browse files Browse the repository at this point in the history
  • Loading branch information
Foboz committed Apr 3, 2020
2 parents 382d3b3 + 0ea9845 commit 28a1e8b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### Release 1.0.15
- Buy Ether scenario fix

### Release 1.0.14
ANNOUNCEMENT: Full-fledged MEW wallet app is now available!
You can now buy, hold and send Ether and tokens directly in the app, without having to connect to MEW web.
Expand Down
4 changes: 2 additions & 2 deletions Configurations/application.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
APPLICATION_VERSION=1.0.12
APPLICATION_BUILD=19050102
APPLICATION_VERSION=1.0.15
APPLICATION_BUILD=20032501.7
12 changes: 6 additions & 6 deletions MyEtherWallet-iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -12096,7 +12096,7 @@
CODE_SIGN_ENTITLEMENTS = "MyEtherWallet-iOS/MyEtherWallet-iOS.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 20031001.5;
CURRENT_PROJECT_VERSION = "${APPLICATION_BUILD}";
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
Expand All @@ -12108,7 +12108,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
MARKETING_VERSION = 1.0.14;
MARKETING_VERSION = "${APPLICATION_VERSION}";
PRODUCT_BUNDLE_IDENTIFIER = com.myetherwallet.mewconnect;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -12387,7 +12387,7 @@
CODE_SIGN_ENTITLEMENTS = "MyEtherWallet-iOS/MyEtherWallet-iOS.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 20031001.5;
CURRENT_PROJECT_VERSION = "${APPLICATION_BUILD}";
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
Expand All @@ -12399,7 +12399,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
MARKETING_VERSION = 1.0.14;
MARKETING_VERSION = "${APPLICATION_VERSION}";
PRODUCT_BUNDLE_IDENTIFIER = com.myetherwallet.mewconnect;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -12420,7 +12420,7 @@
CODE_SIGN_ENTITLEMENTS = "MyEtherWallet-iOS/MyEtherWallet-iOS.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 20031001.5;
CURRENT_PROJECT_VERSION = "${APPLICATION_BUILD}";
DEVELOPMENT_TEAM = MDN888GSU8;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
Expand All @@ -12432,7 +12432,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
MARKETING_VERSION = 1.0.14;
MARKETING_VERSION = "${APPLICATION_VERSION}";
PRODUCT_BUNDLE_IDENTIFIER = com.myetherwallet.mewconnect;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ - (AnalyticsBody *) _obtainBodyWithEvent:(NSString *)event {

NSISO8601DateFormatter *dateFormatter = [[NSISO8601DateFormatter alloc] init];
dateFormatter.formatOptions = NSISO8601DateFormatWithFullDate | NSISO8601DateFormatWithFullTime;
if (@available(iOS 11.0, *)) {
if (@available(iOS 11.2, *)) {
dateFormatter.formatOptions |= NSISO8601DateFormatWithFractionalSeconds;
}

NSString *timestamp = [dateFormatter stringFromDate:[NSDate date]];
if (@available(iOS 11.0, *)) {
if (@available(iOS 11.2, *)) {
//do nothing
} else {
if ([timestamp length] > 1) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ - (instancetype)initWithBaseURL:(NSURL *)baseURL
if (self) {
_baseURL = [baseURL copy];
_apiPath = [apiPath copy];
self.HTTPMethodsEncodingParametersInURI = [self.HTTPMethodsEncodingParametersInURI setByAddingObject:@"POST"];
}
return self;
}
Expand Down

0 comments on commit 28a1e8b

Please sign in to comment.