Skip to content

Commit

Permalink
Merge pull request #174 from VerusCoin/dev
Browse files Browse the repository at this point in the history
v1.0.14
  • Loading branch information
Asherda authored Jul 31, 2024
2 parents 63f248d + b2ab2fb commit f13e5f0
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.android.build.OutputFile

def versionMajor = 1
def versionMinor = 0
def versionRevision = 13
def versionRevision = 14
def versionBuild = 0

def keystorePropertiesFile = rootProject.file("keystore.properties");
Expand Down
2 changes: 1 addition & 1 deletion env/main.android.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "1.0.13",
"APP_VERSION": "1.0.14",
"ELECTRUM_PROTOCOL_CHANGE": 1.4,

"KEY_DERIVATION_VERSION": 1,
Expand Down
2 changes: 1 addition & 1 deletion env/main.ios.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "1.0.13",
"APP_VERSION": "1.0.14",
"ELECTRUM_PROTOCOL_CHANGE": 1.4,

"KEY_DERIVATION_VERSION": 1,
Expand Down
2 changes: 1 addition & 1 deletion ios/assets/env/main.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "1.0.13",
"APP_VERSION": "1.0.14",
"ELECTRUM_PROTOCOL_CHANGE": 1.4,

"KEY_DERIVATION_VERSION": 1,
Expand Down
4 changes: 2 additions & 2 deletions ios/verusMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@
"\"${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob\"",
);
MARKETING_VERSION = 1.0.13;
MARKETING_VERSION = 1.0.14;
PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.verusmobile;
PRODUCT_NAME = verusmobile;
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -792,7 +792,7 @@
"\"${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob\"",
);
MARKETING_VERSION = 1.0.13;
MARKETING_VERSION = 1.0.14;
PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.verusmobile;
PRODUCT_NAME = verusmobile;
PROVISIONING_PROFILE_SPECIFIER = "";
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": "verusmobile",
"version": "1.0.13",
"version": "1.0.14",
"private": true,
"scripts": {
"postinstall": "./node_modules/.bin/rn-nodeify --hack --install --yarn && npx jetify",
Expand Down
3 changes: 3 additions & 0 deletions src/actions/actions/UserData.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,9 @@ export const addKeypairs = async (
const seed = accountSeeds[seedType]
? accountSeeds[seedType]
: accountSeeds[ELECTRUM];

if (!seed) throw new Error('No seed found for account');

if (
coinObj.compatible_channels.includes(seedType) &&
(seedType !== DLIGHT_PRIVATE || accountSeeds[seedType])
Expand Down
4 changes: 2 additions & 2 deletions src/containers/Settings/ProfileSettings/ProfileSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ class ProfileSettings extends Component {
/>
<Divider />
</TouchableOpacity>
<TouchableOpacity onPress={() => this._openSettings(RESET_PWD)}>
{/* <TouchableOpacity onPress={() => this._openSettings(RESET_PWD)}>
<List.Item
title={"Change Password"}
left={(props) => <List.Icon {...props} icon={"lock-reset"} />}
Expand All @@ -426,7 +426,7 @@ class ProfileSettings extends Component {
)}
/>
<Divider />
</TouchableOpacity>
</TouchableOpacity> */}
{(this.props.activeAccount.biometry ||
this.state.supportedBiometryType.biometry) && (
<TouchableOpacity
Expand Down

0 comments on commit f13e5f0

Please sign in to comment.