V4.16.0 (#1445)
* update build numbers * fix UI issue * Add Nano to secret generation properly [skip ci] * remove to utc from expiration time * update app version Remove tron
Omar Hatem committed
May 10, 2024 at 21:34 UTC
97555f2ce12419187bdf004aa8af799bf0682bca
8 files changed
+9
-10
assets/text/Release_Notes.txt
-1
@@ -1,4 +1,3 @@
1
Hardware wallets support for Bitcoin, Ethereum and Polygon
2
-Add Tron wallet
2
Security enhancements
3
Bug fixes and generic enhancements
\ No newline at end of file
cw_tron/lib/tron_client.dart
+2
-2
@@ -387,7 +387,7 @@ class TronClient {
387
if (feeLimit > tronBalanceInt) {
388
final feeInTrx = TronHelper.fromSun(BigInt.parse(feeLimit.toString()));
389
throw Exception(
390
- 'You don\'t have enough TRX to cover the transaction fee for this transaction. Kindly top up.\nTransaction fee: $feeInTrx TRX',
390
+ 'You don\'t have enough TRX to cover the transaction fee for this transaction. Please top up.\nTransaction fee: $feeInTrx TRX',
391
);
392
}
393
@@ -444,7 +444,7 @@ class TronClient {
444
if (feeLimit > tronBalanceInt) {
445
final feeInTrx = TronHelper.fromSun(BigInt.parse(feeLimit.toString()));
446
throw Exception(
447
- 'You don\'t have enough TRX to cover the transaction fee for this transaction. Kindly top up. Transaction fee: $feeInTrx TRX',
447
+ 'You don\'t have enough TRX to cover the transaction fee for this transaction. Please top up. Transaction fee: $feeInTrx TRX',
448
);
449
}
450
lib/view_model/send/send_view_model.dart
+1
-1
@@ -580,7 +580,7 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
580
}
581
582
if (errorMessage.contains('Transaction expired')) {
583
- return 'An error occurred while processing the transaction. Kindly retry the transaction';
583
+ return 'An error occurred while processing the transaction. Please retry the transaction';
584
}
585
}
586
scripts/android/app_env.sh
+1
-1
@@ -23,7 +23,7 @@ MONERO_COM_SCHEME="monero.com"
23
24
CAKEWALLET_NAME="Cake Wallet"
25
CAKEWALLET_VERSION="4.16.0"
26
-CAKEWALLET_BUILD_NUMBER=209
26
+CAKEWALLET_BUILD_NUMBER=210
27
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
28
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
29
CAKEWALLET_SCHEME="cakewallet"
scripts/android/pubspec_gen.sh
+1
-1
@@ -10,7 +10,7 @@ case $APP_ANDROID_TYPE in
10
CONFIG_ARGS="--monero"
11
;;
12
$CAKEWALLET)
13
- CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana --tron"
13
+ CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana"
14
;;
15
$HAVEN)
16
CONFIG_ARGS="--haven"
scripts/ios/app_config.sh
+1
-1
@@ -28,7 +28,7 @@ case $APP_IOS_TYPE in
28
CONFIG_ARGS="--monero"
29
;;
30
$CAKEWALLET)
31
- CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana --tron"
31
+ CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana"
32
;;
33
$HAVEN)
34
scripts/macos/app_config.sh
+1
-1
@@ -31,7 +31,7 @@ case $APP_MACOS_TYPE in
31
$MONERO_COM)
32
CONFIG_ARGS="--monero";;
33
$CAKEWALLET)
34
- CONFIG_ARGS="--monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana --tron";; #--haven
34
+ CONFIG_ARGS="--monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana";; #--haven
35
esac
36
37
cp -rf pubspec_description.yaml pubspec.yaml
scripts/macos/app_env.sh
+2
-2
@@ -17,12 +17,12 @@ fi
17
18
MONERO_COM_NAME="Monero.com"
19
MONERO_COM_VERSION="1.3.0"
20
-MONERO_COM_BUILD_NUMBER=18
20
+MONERO_COM_BUILD_NUMBER=17
21
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
22
23
CAKEWALLET_NAME="Cake Wallet"
24
CAKEWALLET_VERSION="1.9.0"
25
-CAKEWALLET_BUILD_NUMBER=70
25
+CAKEWALLET_BUILD_NUMBER=71
26
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
27
28
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then