diff --git a/android/app/build.gradle b/android/app/build.gradle index 029f58e8..b4109dd6 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -102,8 +102,8 @@ android { applicationId "com.minibits_wallet" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 18 - versionName "0.1.3" + versionCode 21 + versionName "0.1.3-tor-beta.6" ndk { abiFilters 'arm64-v8a', 'x86_64', 'x86', 'armeabi-v7a' } // react-native-tor build diff --git a/package.json b/package.json index a3771722..c4657df1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minibits_wallet", - "version": "0.1.3-beta.4", + "version": "0.1.3-tor-beta.6", "private": true, "scripts": { "android:clean": "cd android && ./gradlew clean", diff --git a/src/screens/MintsScreen.tsx b/src/screens/MintsScreen.tsx index 3f087ef6..d070bd40 100644 --- a/src/screens/MintsScreen.tsx +++ b/src/screens/MintsScreen.tsx @@ -325,12 +325,14 @@ export const MintsScreen: FC> = observer(funct - + setMintUrl(mintUrl)} + autoCapitalize='none' + keyboardType='default' value={mintUrl} style={[$mintInput, {backgroundColor: inputBg}]} maxLength={200} @@ -376,8 +378,7 @@ export const MintsScreen: FC> = observer(funct } onBackButtonPress={toggleAddMintModal} - onBackdropPress={toggleAddMintModal} - top={spacing.screenHeight * 0.35} + onBackdropPress={toggleAddMintModal} /> {error && } {info && } @@ -402,9 +403,9 @@ const $contentContainer: TextStyle = { } const $actionCard: ViewStyle = { - marginBottom: spacing.extraSmall, + marginBottom: spacing.small, marginTop: -spacing.extraLarge * 1.5, - // padding: 0, + minHeight: 70, } const $actionItem: ViewStyle = { @@ -433,8 +434,8 @@ const $bottomContainer: ViewStyle = { alignSelf: 'stretch', } -const $bottomModal: ViewStyle = { - padding: spacing.small, +const $bottomModal: ViewStyle = { + alignItems: 'center', } diff --git a/src/screens/WalletScreen.tsx b/src/screens/WalletScreen.tsx index f743a8f2..fbf06867 100644 --- a/src/screens/WalletScreen.tsx +++ b/src/screens/WalletScreen.tsx @@ -103,8 +103,8 @@ export const WalletScreen: FC = observer( setUpdateSize(`${round(update.packageSize * 0.000001, 2)}MB`) setIsUpdateAvailable(true) toggleUpdateModal() - } - log.trace('update', update, 'checkForUpdate') + log.info('OTA Update available', update, 'checkForUpdate') + } } catch (e: any) { return false // silent } @@ -116,6 +116,7 @@ export const WalletScreen: FC = observer( const handleBinaryVersionMismatchCallback = function(update: RemotePackage) { + log.info('Native update available', update) setIsNativeUpdateAvailable(true) toggleUpdateModal() }