Skip to content

Commit 3b2d693

Browse files
Merge pull request #1098 from synonymdev/release-fixes
fix: temp hide delete contact button
2 parents bfd9925 + dae3241 commit 3b2d693

File tree

6 files changed

+19
-20
lines changed

6 files changed

+19
-20
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ android {
9898
applicationId "to.synonym.bitkit.wallet"
9999
minSdkVersion rootProject.ext.minSdkVersion
100100
targetSdkVersion rootProject.ext.targetSdkVersion
101-
versionCode 46
101+
versionCode 51
102102
versionName "1.0"
103103
multiDexEnabled true
104104
missingDimensionStrategy 'react-native-camera', 'general'

ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ PODS:
348348
- React-Core
349349
- react-native-image-picker (5.3.1):
350350
- React-Core
351-
- react-native-ldk (0.0.96):
351+
- react-native-ldk (0.0.97):
352352
- React
353353
- react-native-libsodium (0.7.0):
354354
- React-Core
@@ -835,7 +835,7 @@ SPEC CHECKSUMS:
835835
react-native-document-picker: 495c444c0c773c6e83a5d91165890ecb1c0a399a
836836
react-native-flipper: 5d8dcbcb905a7e8076c9a61a3709944c23cf48ee
837837
react-native-image-picker: ec9b713e248760bfa0f879f0715391de4651a7cb
838-
react-native-ldk: d74fff362f75541785d504c78407a1d89efc83e4
838+
react-native-ldk: 38eb5291779f3ef181fd6472e7cd5ebf15797f8d
839839
react-native-libsodium: 2834a805c906aef4b7609019bcc87e7d9eb86b23
840840
react-native-mmkv: 7da5e18e55c04a9af9a7e0ab9792a1e8d33765a1
841841
react-native-netinfo: 22c082970cbd99071a4e5aa7a612ac20d66b08f0

ios/bitkit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@
556556
buildSettings = {
557557
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
558558
CLANG_ENABLE_MODULES = YES;
559-
CURRENT_PROJECT_VERSION = 46;
559+
CURRENT_PROJECT_VERSION = 51;
560560
DEVELOPMENT_TEAM = KYH47R284B;
561561
ENABLE_BITCODE = NO;
562562
INFOPLIST_FILE = bitkit/Info.plist;
@@ -587,7 +587,7 @@
587587
buildSettings = {
588588
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
589589
CLANG_ENABLE_MODULES = YES;
590-
CURRENT_PROJECT_VERSION = 46;
590+
CURRENT_PROJECT_VERSION = 51;
591591
DEVELOPMENT_TEAM = KYH47R284B;
592592
ENABLE_BITCODE = NO;
593593
INFOPLIST_FILE = bitkit/Info.plist;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bitkit",
33
"author": "Synonym",
4-
"version": "1.0.0-beta.46",
4+
"version": "1.0.0-beta.51",
55
"private": false,
66
"scripts": {
77
"setup-android": "yarn add -D github:sodium-friends/react-native-libsodium#6fbfee572fdfde7e7eec7a1956951d106b342145",
@@ -50,7 +50,7 @@
5050
"@reduxjs/toolkit": "^1.9.3",
5151
"@shopify/react-native-skia": "0.1.182",
5252
"@synonymdev/blocktank-client": "0.0.50",
53-
"@synonymdev/react-native-ldk": "0.0.96",
53+
"@synonymdev/react-native-ldk": "0.0.97",
5454
"@synonymdev/react-native-lnurl": "0.0.4",
5555
"@synonymdev/result": "0.0.2",
5656
"@synonymdev/slashtags-auth": "^1.0.0-alpha.5",

src/screens/Contacts/Contact.tsx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
CopyIcon,
1313
PencileIcon,
1414
ShareIcon,
15-
TrashIcon,
1615
} from '../../styles/icons';
1716
import NavigationHeader from '../../components/NavigationHeader';
1817
import SafeAreaInset from '../../components/SafeAreaInset';
@@ -171,14 +170,14 @@ const Contact = ({
171170
}}>
172171
<PencileIcon height={20} width={20} color="brand" />
173172
</IconButton>
174-
<IconButton
175-
style={styles.iconButton}
176-
onPress={(): void => {
177-
setShowDialog(true);
178-
}}
179-
testID="DeleteContactButton">
180-
<TrashIcon height={24} width={24} color="brand" />
181-
</IconButton>
173+
{/*<IconButton*/}
174+
{/* style={styles.iconButton}*/}
175+
{/* onPress={(): void => {*/}
176+
{/* setShowDialog(true);*/}
177+
{/* }}*/}
178+
{/* testID="DeleteContactButton">*/}
179+
{/* <TrashIcon height={24} width={24} color="brand" />*/}
180+
{/*</IconButton>*/}
182181
</View>
183182
<ProfileLinks style={styles.links} links={profileLinksWithIds} />
184183

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2603,10 +2603,10 @@
26032603
cross-fetch "^3.1.4"
26042604
node-fetch "3.1.1"
26052605

2606-
"@synonymdev/[email protected].96":
2607-
version "0.0.96"
2608-
resolved "https://registry.yarnpkg.com/@synonymdev/react-native-ldk/-/react-native-ldk-0.0.96.tgz#7fd8d9fc60784ead20f62ca684e30099af146ea9"
2609-
integrity sha512-zyvUCmVSM7uidPXgx+X1Ygi0aO9sbjtKmX75GTm2urw2PVESV840DhHcO0ojWYq3efrRYDf3AofDylRjCmHLqw==
2606+
"@synonymdev/[email protected].97":
2607+
version "0.0.97"
2608+
resolved "https://registry.yarnpkg.com/@synonymdev/react-native-ldk/-/react-native-ldk-0.0.97.tgz#b2dd1cc066599ea167ffd49a65669b57c0dceea0"
2609+
integrity sha512-2mQiumWerAh8+9bDnBB1n0rstfmz7wGISYJvw6BsFydwKQrBaH4E9MfRWOcKB6cf9nW4CD7uzRyH0QlqOvnbdQ==
26102610
dependencies:
26112611
bitcoinjs-lib "^6.0.2"
26122612

0 commit comments

Comments
 (0)