V4.6.3_1.3.3 (#893)

* - Update App versions
- Add release notes

* Modify Monero.com release notes

* Fix issues with Frozen balance for Monero.com build

* Update cake wallet app build number
This commit is contained in:
Omar Hatem 2023-04-24 14:02:17 +02:00 committed by GitHub
parent 1eb8d0c698
commit 9d47e0e67c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 40 additions and 46 deletions

View file

@ -1,13 +1,13 @@
Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate)Added Fixed Rate for exchanges This update includes a HUGE number of usability improvements!
WWEE(enter the "receive" amount on the exchange page to get the fixed rate)Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate)Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate) Type a fiat amount in the receive screen
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Easily restore wallets from QR code
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Pay Bitcoin Lightning invoices in exchange
Keep screen awake while the synchronization function Optionally disable the marketplace in display settings
Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate) Better warning messages if trying to exchange outside the min/max limits
Changed algorithm for choosing of change address for BTC and LTC electrum wallets More address flexibility when exchanging the currently-active wallet asset
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Modernized the seed language selection picker
Keep screen awake while the synchronization function Adjusted pickers to resize if the keyboard is active
Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate) Improved accessibility
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Click to copy additional fields in the exchange checkout
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Fix padding on some devices
Keep screen awake while the synchronizatio Bug fixes and code refactoring

View file

@ -1,13 +1,16 @@
Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate)Added Fixed Rate for exchanges This update includes a HUGE number of usability improvements!
WWEE(enter the "receive" amount on the exchange page to get the fixed rate)Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate)Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate) BTC/LTC coin control enhancements and bugfixes; easily look up Ordinals
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Type a fiat amount in the receive screen
Changed algorithm for choosing of change address for BTC and LTC electrum wallets New Onramper Buy widget
Keep screen awake while the synchronization function Easily restore wallets from QR code
Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate) Substantially better reliability for seeing incoming, unconfirmed BTC/LTC transactions
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Pay Bitcoin Lightning invoices in exchange
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Optionally disable the marketplace in display settings
Keep screen awake while the synchronization function Better warning messages if trying to exchange outside the min/max limits
Added Fixed Rate for exchanges (enter the "receive" amount on the exchange page to get the fixed rate) More address flexibility when exchanging the currently-active wallet asset
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Modernized the seed language selection picker
Changed algorithm for choosing of change address for BTC and LTC electrum wallets Adjusted pickers to resize if the keyboard is active
Keep screen awake while the synchronizatio Improved accessibility
Click to copy additional fields in the exchange checkout
Fix padding on some devices
Bug fixes and code refactoring

View file

@ -8,4 +8,6 @@ abstract class Balance {
String get formattedAvailableBalance; String get formattedAvailableBalance;
String get formattedAdditionalBalance; String get formattedAdditionalBalance;
String get formattedFrozenBalance => '';
} }

View file

@ -1,9 +1,5 @@
import 'package:cake_wallet/bitcoin/bitcoin.dart';
import 'package:cake_wallet/entities/fiat_api_mode.dart'; import 'package:cake_wallet/entities/fiat_api_mode.dart';
import 'package:cw_bitcoin/bitcoin_amount_format.dart';
import 'package:cw_bitcoin/electrum_balance.dart';
import 'package:cw_core/transaction_history.dart'; import 'package:cw_core/transaction_history.dart';
import 'package:cw_core/unspent_coins_info.dart';
import 'package:cw_core/wallet_base.dart'; import 'package:cw_core/wallet_base.dart';
import 'package:cw_core/balance.dart'; import 'package:cw_core/balance.dart';
import 'package:cw_core/crypto_currency.dart'; import 'package:cw_core/crypto_currency.dart';
@ -15,7 +11,6 @@ import 'package:cake_wallet/entities/calculate_fiat_amount.dart';
import 'package:cake_wallet/store/app_store.dart'; import 'package:cake_wallet/store/app_store.dart';
import 'package:cake_wallet/store/settings_store.dart'; import 'package:cake_wallet/store/settings_store.dart';
import 'package:cake_wallet/store/dashboard/fiat_conversion_store.dart'; import 'package:cake_wallet/store/dashboard/fiat_conversion_store.dart';
import 'package:hive/hive.dart';
import 'package:mobx/mobx.dart'; import 'package:mobx/mobx.dart';
part 'balance_view_model.g.dart'; part 'balance_view_model.g.dart';
@ -361,9 +356,6 @@ abstract class BalanceViewModelBase with Store {
} }
} }
String getFormattedFrozenBalance(Balance walletBalance) => walletBalance.formattedFrozenBalance;
String getFormattedFrozenBalance(Balance walletBalance) =>
walletBalance is ElectrumBalance ? walletBalance.formattedFrozenBalance : '';
} }

View file

@ -1,11 +1,8 @@
import 'package:cake_wallet/core/address_validator.dart';
import 'package:cake_wallet/core/seed_validator.dart'; import 'package:cake_wallet/core/seed_validator.dart';
import 'package:cake_wallet/entities/mnemonic_item.dart';
import 'package:cake_wallet/entities/parse_address_from_domain.dart'; import 'package:cake_wallet/entities/parse_address_from_domain.dart';
import 'package:cake_wallet/entities/qr_scanner.dart'; import 'package:cake_wallet/entities/qr_scanner.dart';
import 'package:cake_wallet/view_model/restore/restore_mode.dart'; import 'package:cake_wallet/view_model/restore/restore_mode.dart';
import 'package:cake_wallet/view_model/restore/restore_wallet.dart'; import 'package:cake_wallet/view_model/restore/restore_wallet.dart';
import 'package:cw_bitcoin/bitcoin_mnemonic.dart';
import 'package:cw_core/wallet_type.dart'; import 'package:cw_core/wallet_type.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';

View file

@ -14,14 +14,14 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
APP_ANDROID_TYPE=$1 APP_ANDROID_TYPE=$1
MONERO_COM_NAME="Monero.com" MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.3.2" MONERO_COM_VERSION="1.3.3"
MONERO_COM_BUILD_NUMBER=42 MONERO_COM_BUILD_NUMBER=43
MONERO_COM_BUNDLE_ID="com.monero.app" MONERO_COM_BUNDLE_ID="com.monero.app"
MONERO_COM_PACKAGE="com.monero.app" MONERO_COM_PACKAGE="com.monero.app"
CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.6.2" CAKEWALLET_VERSION="4.6.3"
CAKEWALLET_BUILD_NUMBER=151 CAKEWALLET_BUILD_NUMBER=154
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet" CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet" CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"

View file

@ -13,13 +13,13 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
APP_IOS_TYPE=$1 APP_IOS_TYPE=$1
MONERO_COM_NAME="Monero.com" MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.3.2" MONERO_COM_VERSION="1.3.3"
MONERO_COM_BUILD_NUMBER=40 MONERO_COM_BUILD_NUMBER=41
MONERO_COM_BUNDLE_ID="com.cakewallet.monero" MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.6.3" CAKEWALLET_VERSION="4.6.3"
CAKEWALLET_BUILD_NUMBER=146 CAKEWALLET_BUILD_NUMBER=148
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet" CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
HAVEN_NAME="Haven" HAVEN_NAME="Haven"

View file

@ -16,7 +16,7 @@ fi
CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="1.0.2" CAKEWALLET_VERSION="1.0.2"
CAKEWALLET_BUILD_NUMBER=12 CAKEWALLET_BUILD_NUMBER=14
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet" CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then