mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-22 10:45:08 +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
|
Monero enhancements
|
||||||
Bug fixes and generic enhancements
|
Bug fixes
|
|
@ -1,3 +1,2 @@
|
||||||
In-app Cake Pay is Back
|
Monero enhancements
|
||||||
Bitcoin nodes stability enhancements
|
Bug fixes
|
||||||
Bug fixes and generic enhancements
|
|
|
@ -438,9 +438,9 @@ packages:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: "200ad221441c6481439c966288b6e8834769ed21"
|
ref: d46753eca865e9e56c2f0ef6fe485c42e11982c5
|
||||||
resolved-ref: "200ad221441c6481439c966288b6e8834769ed21"
|
resolved-ref: d46753eca865e9e56c2f0ef6fe485c42e11982c5
|
||||||
url: "https://git.mrcyjanek.net/mrcyjanek/monero.dart"
|
url: "https://github.com/mrcyjanek/monero.dart"
|
||||||
source: git
|
source: git
|
||||||
version: "0.0.0"
|
version: "0.0.0"
|
||||||
mutex:
|
mutex:
|
||||||
|
|
|
@ -197,7 +197,8 @@ class WalletRestoreFromSeedFormState extends State<WalletRestoreFromSeedForm> {
|
||||||
focusNode: widget.blockHeightFocusNode,
|
focusNode: widget.blockHeightFocusNode,
|
||||||
key: blockchainHeightKey,
|
key: blockchainHeightKey,
|
||||||
onHeightOrDateEntered: widget.onHeightOrDateEntered,
|
onHeightOrDateEntered: widget.onHeightOrDateEntered,
|
||||||
hasDatePicker: widget.type == WalletType.monero),
|
hasDatePicker: widget.type == WalletType.monero || widget.type == WalletType.wownero,
|
||||||
|
),
|
||||||
if (widget.displayPassphrase) ...[
|
if (widget.displayPassphrase) ...[
|
||||||
const SizedBox(height: 10),
|
const SizedBox(height: 10),
|
||||||
BaseTextFormField(
|
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(
|
Widget get expandIcon => Container(
|
||||||
padding: EdgeInsets.all(18),
|
padding: EdgeInsets.all(18),
|
||||||
|
|
|
@ -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.15.2"
|
MONERO_COM_VERSION="1.16.0"
|
||||||
MONERO_COM_BUILD_NUMBER=90
|
MONERO_COM_BUILD_NUMBER=91
|
||||||
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.18.2"
|
CAKEWALLET_VERSION="4.19.0"
|
||||||
CAKEWALLET_BUILD_NUMBER=250
|
CAKEWALLET_BUILD_NUMBER=251
|
||||||
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
||||||
|
|
||||||
HAVEN_NAME="Haven"
|
HAVEN_NAME="Haven"
|
||||||
|
|
Loading…
Reference in a new issue