Skip to content

Commit

Permalink
New versions 4.10.1 and 1.7.1 (#1127)
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarHatem28 authored Oct 16, 2023
1 parent 426ac99 commit 69a77d4
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
6 changes: 2 additions & 4 deletions assets/text/Release_Notes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Add Nano wallet
Add WalletConnect to connect your ETH wallet with your favorite dApp
Support getting Addresses from ENS and Mastodon
Add BitcoinCash (BCH)
Bug fixes
Minor enhancements
Accessibility enhancements
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ SPEC CHECKSUMS:
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179
file_picker: ce3938a0df3cc1ef404671531facef740d03f920
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_inappwebview: bfd58618f49dc62f2676de690fc6dcda1d6c3721
flutter_inappwebview: 3d32228f1304635e7c028b0d4252937730bbc6cf
flutter_mailer: 2ef5a67087bc8c6c4cefd04a178bf1ae2c94cd83
flutter_secure_storage: 23fc622d89d073675f2eaa109381aefbcf5a49be
in_app_review: 318597b3a06c22bb46dc454d56828c85f444f99d
Expand Down
8 changes: 4 additions & 4 deletions scripts/android/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
APP_ANDROID_TYPE=$1

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.7.0"
MONERO_COM_BUILD_NUMBER=61
MONERO_COM_VERSION="1.7.1"
MONERO_COM_BUILD_NUMBER=62
MONERO_COM_BUNDLE_ID="com.monero.app"
MONERO_COM_PACKAGE="com.monero.app"
MONERO_COM_SCHEME="monero.com"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.10.0"
CAKEWALLET_BUILD_NUMBER=175
CAKEWALLET_VERSION="4.10.1"
CAKEWALLET_BUILD_NUMBER=176
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
CAKEWALLET_SCHEME="cakewallet"
Expand Down
Empty file modified scripts/ios/app_config.sh
100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions scripts/ios/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
APP_IOS_TYPE=$1

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.7.0"
MONERO_COM_BUILD_NUMBER=59
MONERO_COM_VERSION="1.7.1"
MONERO_COM_BUILD_NUMBER=60
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.10.0"
CAKEWALLET_BUILD_NUMBER=189
CAKEWALLET_VERSION="4.10.1"
CAKEWALLET_BUILD_NUMBER=190
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"

HAVEN_NAME="Haven"
Expand Down
4 changes: 2 additions & 2 deletions scripts/macos/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ if [ -n "$1" ]; then
fi

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="1.3.0"
CAKEWALLET_BUILD_NUMBER=36
CAKEWALLET_VERSION="1.3.1"
CAKEWALLET_BUILD_NUMBER=37
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"

if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then
Expand Down
6 changes: 4 additions & 2 deletions tool/configure.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Future<void> main(List<String> args) async {
Future<void> generateBitcoin(bool hasImplementation) async {
final outputFile = File(bitcoinOutputPath);
const bitcoinCommonHeaders = """
import 'package:cw_core/unspent_transaction_output.dart';
import 'package:cw_core/wallet_credentials.dart';
import 'package:cw_core/wallet_info.dart';
import 'package:cw_core/transaction_priority.dart';
Expand Down Expand Up @@ -98,7 +99,7 @@ abstract class Bitcoin {
int formatterStringDoubleToBitcoinAmount(String amount);
String bitcoinTransactionPriorityWithLabel(TransactionPriority priority, int rate);
List<BitcoinUnspent> getUnspents(Object wallet);
List<Unspent> getUnspents(Object wallet);
void updateUnspents(Object wallet);
WalletService createBitcoinWalletService(Box<WalletInfo> walletInfoSource, Box<UnspentCoinsInfo> unspentCoinSource);
WalletService createLitecoinWalletService(Box<WalletInfo> walletInfoSource, Box<UnspentCoinsInfo> unspentCoinSource);
Expand Down Expand Up @@ -577,7 +578,7 @@ Future<void> generateBitcoinCash(bool hasImplementation) async {
const bitcoinCashCommonHeaders = """
import 'dart:typed_data';
import 'package:cw_bitcoin/bitcoin_transaction_priority.dart';
import 'package:cw_core/unspent_transaction_output.dart';
import 'package:cw_core/transaction_priority.dart';
import 'package:cw_core/unspent_coins_info.dart';
import 'package:cw_core/wallet_credentials.dart';
Expand All @@ -587,6 +588,7 @@ import 'package:hive/hive.dart';
""";
const bitcoinCashCWHeaders = """
import 'package:cw_bitcoin_cash/cw_bitcoin_cash.dart';
import 'package:cw_bitcoin/bitcoin_transaction_priority.dart';
""";
const bitcoinCashCwPart = "part 'cw_bitcoin_cash.dart';";
const bitcoinCashContent = """
Expand Down

0 comments on commit 69a77d4

Please sign in to comment.