mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-22 02:34:59 +00:00
minor fixes
This commit is contained in:
parent
43622373d8
commit
257465308e
5 changed files with 19 additions and 17 deletions
|
@ -1,2 +1,2 @@
|
|||
In-app Cake Pay is Back
|
||||
Bug fixes and generic enhancements
|
||||
Monero enhancements
|
||||
Bug fixes
|
|
@ -1,3 +1,2 @@
|
|||
In-app Cake Pay is Back
|
||||
Bitcoin nodes stability enhancements
|
||||
Bug fixes and generic enhancements
|
||||
Monero enhancements
|
||||
Bug fixes
|
|
@ -438,9 +438,9 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
path: "."
|
||||
ref: "200ad221441c6481439c966288b6e8834769ed21"
|
||||
resolved-ref: "200ad221441c6481439c966288b6e8834769ed21"
|
||||
url: "https://git.mrcyjanek.net/mrcyjanek/monero.dart"
|
||||
ref: d46753eca865e9e56c2f0ef6fe485c42e11982c5
|
||||
resolved-ref: d46753eca865e9e56c2f0ef6fe485c42e11982c5
|
||||
url: "https://github.com/mrcyjanek/monero.dart"
|
||||
source: git
|
||||
version: "0.0.0"
|
||||
mutex:
|
||||
|
|
|
@ -194,10 +194,11 @@ class WalletRestoreFromSeedFormState extends State<WalletRestoreFromSeedForm> {
|
|||
),
|
||||
if (!isPolyseed && widget.displayBlockHeightSelector)
|
||||
BlockchainHeightWidget(
|
||||
focusNode: widget.blockHeightFocusNode,
|
||||
key: blockchainHeightKey,
|
||||
onHeightOrDateEntered: widget.onHeightOrDateEntered,
|
||||
hasDatePicker: widget.type == WalletType.monero),
|
||||
focusNode: widget.blockHeightFocusNode,
|
||||
key: blockchainHeightKey,
|
||||
onHeightOrDateEntered: widget.onHeightOrDateEntered,
|
||||
hasDatePicker: widget.type == WalletType.monero || widget.type == WalletType.wownero,
|
||||
),
|
||||
if (widget.displayPassphrase) ...[
|
||||
const SizedBox(height: 10),
|
||||
BaseTextFormField(
|
||||
|
@ -209,7 +210,9 @@ class WalletRestoreFromSeedFormState extends State<WalletRestoreFromSeedForm> {
|
|||
]));
|
||||
}
|
||||
|
||||
bool get isPolyseed => widget.seedTypeViewModel.moneroSeedType == SeedType.polyseed;
|
||||
bool get isPolyseed =>
|
||||
widget.seedTypeViewModel.moneroSeedType == SeedType.polyseed &&
|
||||
widget.type == WalletType.monero;
|
||||
|
||||
Widget get expandIcon => Container(
|
||||
padding: EdgeInsets.all(18),
|
||||
|
|
|
@ -13,13 +13,13 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
|
|||
APP_IOS_TYPE=$1
|
||||
|
||||
MONERO_COM_NAME="Monero.com"
|
||||
MONERO_COM_VERSION="1.15.2"
|
||||
MONERO_COM_BUILD_NUMBER=90
|
||||
MONERO_COM_VERSION="1.16.0"
|
||||
MONERO_COM_BUILD_NUMBER=91
|
||||
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
|
||||
|
||||
CAKEWALLET_NAME="Cake Wallet"
|
||||
CAKEWALLET_VERSION="4.18.2"
|
||||
CAKEWALLET_BUILD_NUMBER=250
|
||||
CAKEWALLET_VERSION="4.19.0"
|
||||
CAKEWALLET_BUILD_NUMBER=251
|
||||
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
||||
|
||||
HAVEN_NAME="Haven"
|
||||
|
|
Loading…
Reference in a new issue