Skip to content

Commit

Permalink
release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SwenVanZanten committed Dec 18, 2020
1 parent e7abdf4 commit b8de3a2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions VergeiOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2786,8 +2786,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CF_BUNDLE_BUILD_VERSION_STRING = 202006190001;
CF_BUNDLE_SHORT_VERSION_STRING = 1.5.1;
CF_BUNDLE_BUILD_VERSION_STRING = 202012140001;
CF_BUNDLE_SHORT_VERSION_STRING = 1.6.0;

This comment has been minimized.

Copy link
@justinvforvendetta

justinvforvendetta Dec 18, 2020

Member

🎆

CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
Expand Down Expand Up @@ -2852,8 +2852,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CF_BUNDLE_BUILD_VERSION_STRING = 202006190001;
CF_BUNDLE_SHORT_VERSION_STRING = 1.5.1;
CF_BUNDLE_BUILD_VERSION_STRING = 202012140001;
CF_BUNDLE_SHORT_VERSION_STRING = 1.6.0;

This comment has been minimized.

Copy link
@justinvforvendetta

justinvforvendetta Dec 18, 2020

Member

🥇

CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
Expand Down
9 changes: 7 additions & 2 deletions VergeiOS/Controllers/Send/SendViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,9 @@ extension SendViewController: SendTransactionDelegate {
// MARK: - Send Transaction Delegate

func didChangeSendTransaction(_ transaction: WalletTransactionFactory) {
self.present(self.loadingAlert, animated: true)
if !self.loadingAlert.isBeingPresented {
self.present(self.loadingAlert, animated: true)
}

self.txFactory.address = transaction.address
self.txFactory.memo = transaction.memo
Expand All @@ -671,7 +673,10 @@ extension SendViewController: SendTransactionDelegate {

extension SendViewController: CurrencyDelegate {
func didSelectCurrency(currency: String, sender: Any?) {
self.present(self.loadingAlert, animated: true)
if !self.loadingAlert.isBeingPresented {
self.present(self.loadingAlert, animated: true)
}

self.txFactory.currency = .FIAT

self.txFactory.setBy(fiatCurrency: currency).then { _ in
Expand Down
1 change: 0 additions & 1 deletion VergeiOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
<string>nfc</string>
</array>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
Expand Down
1 change: 0 additions & 1 deletion VergeiOS/VergeiOS.entitlements
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
</array>
<key>com.apple.developer.nfc.readersession.formats</key>
<array>
<string>NDEF</string>
<string>TAG</string>
</array>
<key>com.apple.developer.siri</key>
Expand Down

0 comments on commit b8de3a2

Please sign in to comment.