mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
Release 4.4.4 (#451)
* Update build versions for Cake Wallet for ios and android. * Add formatted crypto amount to xmr transaction for anypay transactions. Hide order id and payment id if they are not exists on payment status screen. * Change build number for Cake Wallet ios and android. * Change ionia api to production endpoint. * Update version for monero.com app. * Update build number to cake wallet. * Fix for formatting amount for any_pay_payment totalAmount.
This commit is contained in:
parent
3cfe2ec532
commit
aa9ed08648
4 changed files with 12 additions and 12 deletions
|
@ -1,8 +1,8 @@
|
|||
import 'package:cake_wallet/anypay/any_pay_chain.dart';
|
||||
import 'package:cw_bitcoin/bitcoin_amount_format.dart';
|
||||
import 'package:cw_core/monero_amount_format.dart';
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:cake_wallet/anypay/any_pay_payment_instruction.dart';
|
||||
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
||||
import 'package:cake_wallet/monero/monero.dart';
|
||||
|
||||
class AnyPayPayment {
|
||||
AnyPayPayment({
|
||||
|
@ -45,11 +45,11 @@ class AnyPayPayment {
|
|||
.fold<int>(0, (int outAcc, out) => outAcc + out.amount));
|
||||
switch (chain) {
|
||||
case AnyPayChain.xmr:
|
||||
return moneroAmountToString(amount: total);
|
||||
return monero.formatterMoneroAmountToString(amount: total);
|
||||
case AnyPayChain.btc:
|
||||
return bitcoinAmountToString(amount: total);
|
||||
return bitcoin.formatterBitcoinAmountToString(amount: total);
|
||||
case AnyPayChain.ltc:
|
||||
return bitcoinAmountToString(amount: total);
|
||||
return bitcoin.formatterBitcoinAmountToString(amount: total);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ import 'package:cake_wallet/ionia/ionia_category.dart';
|
|||
import 'package:cake_wallet/ionia/ionia_gift_card.dart';
|
||||
|
||||
class IoniaApi {
|
||||
static const baseUri = 'apistaging.ionia.io';
|
||||
static const baseUri = 'api.ionia.io';
|
||||
static const pathPrefix = 'cake';
|
||||
static final createUserUri = Uri.https(baseUri, '/$pathPrefix/CreateUser');
|
||||
static final verifyEmailUri = Uri.https(baseUri, '/$pathPrefix/VerifyEmail');
|
||||
|
|
|
@ -14,14 +14,14 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
|
|||
APP_ANDROID_TYPE=$1
|
||||
|
||||
MONERO_COM_NAME="Monero.com"
|
||||
MONERO_COM_VERSION="1.0.7"
|
||||
MONERO_COM_BUILD_NUMBER=14
|
||||
MONERO_COM_VERSION="1.0.8"
|
||||
MONERO_COM_BUILD_NUMBER=15
|
||||
MONERO_COM_BUNDLE_ID="com.monero.app"
|
||||
MONERO_COM_PACKAGE="com.monero.app"
|
||||
|
||||
CAKEWALLET_NAME="Cake Wallet"
|
||||
CAKEWALLET_VERSION="4.4.4"
|
||||
CAKEWALLET_BUILD_NUMBER=111
|
||||
CAKEWALLET_BUILD_NUMBER=112
|
||||
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
|
||||
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
|
||||
|
||||
|
|
|
@ -13,13 +13,13 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
|
|||
APP_IOS_TYPE=$1
|
||||
|
||||
MONERO_COM_NAME="Monero.com"
|
||||
MONERO_COM_VERSION="1.0.7"
|
||||
MONERO_COM_BUILD_NUMBER=17
|
||||
MONERO_COM_VERSION="1.0.8"
|
||||
MONERO_COM_BUILD_NUMBER=18
|
||||
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
|
||||
|
||||
CAKEWALLET_NAME="Cake Wallet"
|
||||
CAKEWALLET_VERSION="4.4.4"
|
||||
CAKEWALLET_BUILD_NUMBER=111
|
||||
CAKEWALLET_BUILD_NUMBER=112
|
||||
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
||||
|
||||
HAVEN_NAME="Haven"
|
||||
|
|
Loading…
Reference in a new issue