Skip to content

Commit

Permalink
v1.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Oct 14, 2021
1 parent c5ca8f9 commit e17664b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 16 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ android {
applicationId "com.zecwalletmobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 47
versionName "1.7.7"
versionCode 48
versionName "1.7.8"

missingDimensionStrategy 'react-native-camera', 'general'
}
Expand Down
2 changes: 1 addition & 1 deletion components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const AboutModal: React.FunctionComponent<AboutModalProps> = ({closeModal}) => {
}}>
<View>
<View style={{alignItems: 'center', backgroundColor: colors.card, paddingBottom: 25, paddingTop: 25}}>
<Text style={{marginTop: 5, padding: 5, color: colors.text, fontSize: 28}}>Zecwallet Lite v1.7.7</Text>
<Text style={{marginTop: 5, padding: 5, color: colors.text, fontSize: 28}}>Zecwallet Lite v1.7.8</Text>
</View>
<View style={{display: 'flex', alignItems: 'center', marginTop: -25}}>
<Image source={require('../assets/img/logobig.png')} style={{width: 50, height: 50, resizeMode: 'contain'}} />
Expand Down
2 changes: 1 addition & 1 deletion components/InfoModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const InfoModal: React.FunctionComponent<InfoModalProps> = ({info, closeModal})
</View>

<View style={{display: 'flex', margin: 10}}>
<DetailLine label="Wallet Version" value="Zecwallet Lite v1.7.7" />
<DetailLine label="Wallet Version" value="Zecwallet Lite v1.7.8" />
<DetailLine label="Server Version" value={info?.version} />
<DetailLine label="Lightwallet Server URL" value={info?.serverUri} />
<DetailLine label="Network" value={info?.testnet ? 'Testnet' : 'Mainnet'} />
Expand Down
13 changes: 6 additions & 7 deletions components/ReceiveScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,15 +293,14 @@ const ReceiveScreen: React.FunctionComponent<ReceiveScreenProps> = ({
return;
}

let address = '';
if (addressList && addressList.length > 0) {
address = addressList[0];
if (addressList && typeof addressList === 'string' && addressList.length > 0) {
const address = JSON.parse(addressList)[0];
// Show the toast in settimeout, because it sometimes gets lost.
setTimeout(() => {
Toast.show(`Importing ${Utils.trimToSmall(address)}`, Toast.LONG);
}, 1000);
}

// Show the toast in settimeout, because it sometimes gets lost.
setTimeout(() => {
Toast.show(`Importing ${Utils.trimToSmall(address)}`, Toast.LONG);
}, 1000);
startRescan();
};

Expand Down
8 changes: 4 additions & 4 deletions ios/ZecwalletMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 47;
CURRENT_PROJECT_VERSION = 48;
DEVELOPMENT_TEAM = 5N76B7JDDT;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = ZecwalletMobile/Info.plist;
Expand All @@ -515,7 +515,7 @@
"$(inherited)",
"$(PROJECT_DIR)",
);
MARKETING_VERSION = 1.7.7;
MARKETING_VERSION = 1.7.8;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -536,7 +536,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 47;
CURRENT_PROJECT_VERSION = 48;
DEVELOPMENT_TEAM = 5N76B7JDDT;
INFOPLIST_FILE = ZecwalletMobile/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -547,7 +547,7 @@
"$(inherited)",
"$(PROJECT_DIR)",
);
MARKETING_VERSION = 1.7.7;
MARKETING_VERSION = 1.7.8;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ZecwalletMobile",
"version": "1.7.7",
"version": "1.7.8",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down

0 comments on commit e17664b

Please sign in to comment.