diff --git a/img/bluebeast.png b/img/bluebeast.png new file mode 100644 index 00000000..45734b8b Binary files /dev/null and b/img/bluebeast.png differ diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 45d77b49..d0d0f00e 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -261,7 +261,7 @@ PODS: - React - RNDeviceInfo (4.0.1): - React - - RNFS (2.16.4): + - RNFS (2.16.6): - React - RNGestureHandler (1.5.6): - React @@ -356,7 +356,7 @@ DEPENDENCIES: - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: - trunk: + https://github.com/cocoapods/specs.git: - boost-for-react-native - EFQRCode - lottie-ios @@ -520,7 +520,7 @@ SPEC CHECKSUMS: RNCAsyncStorage: 8539fc80a0075fcc9c8e2dff84cd22dc5bf1dacf RNDefaultPreference: 12d246dd2222e66dadcd76cc1250560663befc3a RNDeviceInfo: 12faae605ba42a1a5041c3c41a77834bc23f049d - RNFS: 90d1a32d3bc8f75cc7fc3dd2f67506049664346b + RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df RNGestureHandler: 911d3b110a7a233a34c4f800e7188a84b75319c6 RNHandoff: d3b0754cca3a6bcd9b25f544f733f7f033ccf5fa RNQuickAction: 6d404a869dc872cde841ad3147416a670d13fa93 @@ -539,4 +539,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 932f5bffd3ddea34b78c9ed0921a6f8cccf442b5 -COCOAPODS: 1.8.4 +COCOAPODS: 1.7.5 diff --git a/package.json b/package.json index 024cdeea..a62d93d0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bluewallet", "version": "5.2.1", - "license" : "MIT", + "license": "MIT", "devDependencies": { "@babel/core": "^7.6.2", "@babel/runtime": "^7.6.2", diff --git a/screen/settings/about.js b/screen/settings/about.js index 537d9404..28450bc7 100644 --- a/screen/settings/about.js +++ b/screen/settings/about.js @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { ScrollView, Linking, Dimensions } from 'react-native'; +import { ScrollView, Linking, Dimensions, Image, View, Text, TouchableOpacity } from 'react-native'; import { useNavigation } from 'react-navigation-hooks'; import { BlueTextCentered, @@ -10,6 +10,7 @@ import { BlueCard, BlueText, BlueNavigationStyle, + BlueListItem, } from '../../BlueComponents'; import { getApplicationName, getVersion, getBundleId, getBuildNumber } from 'react-native-device-info'; import Rate, { AndroidMarket } from 'react-native-rate'; @@ -24,7 +25,7 @@ const About = () => { useEffect(() => { setIsLoading(false); - }); + }); const handleOnReleaseNotesPress = () => { navigate('ReleaseNotes'); @@ -65,82 +66,93 @@ const About = () => { return isLoading ? ( ) : ( - + - BlueWallet is a free and open source Bitcoin wallet. Licensed MIT. - - - Always backup your keys - - - - - - - - - - - - + + Blue Wallet is a free and open source project. Crafted by Bitcoin users. + Always backup your keys! + - - - Built with awesome: - - * React Native - * bitcoinjs-lib - * Nodejs - * Electrum server - + + + + + + + - + Built with the awesome 👍 - - - - - {getApplicationName()} ver {getVersion()} (build {getBuildNumber()}) - - {new Date(getBuildNumber() * 1000).toGMTString()} - {getBundleId()} - - w, h = {width}, {height} - + React Native + bitcoinjs-lib + Nodejs + Electrum server + + + + + + + {getApplicationName()} ver {getVersion()} (build {getBuildNumber()}) + + {new Date(getBuildNumber() * 1000).toGMTString()} + {getBundleId()} + + w, h = {width}, {height} + );