Skip to content

Commit

Permalink
v1.8.7
Browse files Browse the repository at this point in the history
Revert to rustc 1.56 to fix compiler caused crashes
  • Loading branch information
adityapk00 committed Aug 30, 2022
1 parent a4d9692 commit 987256d
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# OSX
#
.DS_Store
/ZecwalletMobile*/

# Xcode
#
Expand Down
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 65
versionName "1.8.6"
versionCode 66
versionName "1.8.7"

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.8.6</Text>
<Text style={{marginTop: 5, padding: 5, color: colors.text, fontSize: 28}}>Zecwallet Lite v1.8.7</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.8.6" />
<DetailLine label="Wallet Version" value="Zecwallet Lite v1.8.7" />
<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
8 changes: 4 additions & 4 deletions ios/ZecwalletMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 66;
DEVELOPMENT_TEAM = 5N76B7JDDT;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = ZecwalletMobile/Info.plist;
Expand All @@ -520,7 +520,7 @@
"$(PROJECT_DIR)",
"$(SDKROOT)/usr/lib/swift",
);
MARKETING_VERSION = 1.8.6;
MARKETING_VERSION = 1.8.7;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -541,7 +541,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 66;
DEVELOPMENT_TEAM = 5N76B7JDDT;
INFOPLIST_FILE = ZecwalletMobile/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -553,7 +553,7 @@
"$(PROJECT_DIR)",
"$(SDKROOT)/usr/lib/swift",
);
MARKETING_VERSION = 1.8.6;
MARKETING_VERSION = 1.8.7;
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.8.6",
"version": "1.8.7",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
2 changes: 1 addition & 1 deletion rust/android/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.62
1.56
2 changes: 1 addition & 1 deletion rust/ios/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.62
1.56
2 changes: 1 addition & 1 deletion rust/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.62
1.56

0 comments on commit 987256d

Please sign in to comment.