Skip to content
7 changes: 5 additions & 2 deletions assets/text/Monerocom_Release_Notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Enhance Trezor support
Add Swaps.xyz Decentralized Exchange
Improve wallets performance
Improvements for AnyPay
Better automatic node switching
New navbar/tab navigation
Add Dark and tintable app icons
Bug fixes
9 changes: 9 additions & 0 deletions assets/text/Release_Notes.txt
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
Improve wallets performance
Litecoin and MWEB support in Cupcake
Ethereum and EVM chains enhancements
Improved EVM fee estimation
Improvements for AnyPay
Better automatic node switching
New navbar/tab navigation
WalletConnect enhancements
Add Dark and tintable app icons
Bug fixes
15 changes: 15 additions & 0 deletions lib/view_model/wallet_creation_vm.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,24 @@ abstract class WalletCreationVMBase with Store {

Future<bool> typeExists(WalletType type) => walletCreationService.typeExists(type);

bool _isCreating = false;
Future<void> create({dynamic options}) async {
try {
if (_isCreating) {
printV("not creating because we don't feel like doing so");
return;
}
_isCreating = true;
await _create(options: options);
} finally {
_isCreating = false;
}
}

Future<void> _create({dynamic options}) async {
final type = this.type;
try {

state = IsExecutingState();
if (name.isEmpty) {
name = await generateName();
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 @@ -14,15 +14,15 @@ TYPES=($MONERO_COM $CAKEWALLET)
APP_ANDROID_TYPE=$1

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="5.5.1"
MONERO_COM_BUILD_NUMBER=4140
MONERO_COM_VERSION="5.6.0"
MONERO_COM_BUILD_NUMBER=4142
MONERO_COM_BUNDLE_ID="com.monero.app"
MONERO_COM_PACKAGE="com.monero.app"
MONERO_COM_SCHEME="monero.com"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="5.5.2"
CAKEWALLET_BUILD_NUMBER=4284
CAKEWALLET_VERSION="5.6.0"
CAKEWALLET_BUILD_NUMBER=4286
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
CAKEWALLET_SCHEME="cakewallet"
Expand Down
8 changes: 4 additions & 4 deletions scripts/ios/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ TYPES=($MONERO_COM $CAKEWALLET)
APP_IOS_TYPE=$1

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="5.5.1"
MONERO_COM_BUILD_NUMBER=142
MONERO_COM_VERSION="5.6.0"
MONERO_COM_BUILD_NUMBER=145
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="5.5.2"
CAKEWALLET_BUILD_NUMBER=345
CAKEWALLET_VERSION="5.6.0"
CAKEWALLET_BUILD_NUMBER=349
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"


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

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="5.5.2"
CAKEWALLET_BUILD_NUMBER=72
CAKEWALLET_VERSION="5.6.0"
CAKEWALLET_BUILD_NUMBER=73

if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
echo "Wrong app type."
Expand Down
8 changes: 4 additions & 4 deletions scripts/macos/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ if [ -n "$1" ]; then
fi

MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="5.5.1"
MONERO_COM_BUILD_NUMBER=69
MONERO_COM_VERSION="5.6.0"
MONERO_COM_BUILD_NUMBER=70
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="5.5.2"
CAKEWALLET_BUILD_NUMBER=136
CAKEWALLET_VERSION="5.6.0"
CAKEWALLET_BUILD_NUMBER=137
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"

if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/build_exe_installer.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "Cake Wallet"
#define MyAppVersion "5.5.2"
#define MyAppVersion "5.6.0"
#define MyAppPublisher "Cake Labs LLC"
#define MyAppURL "https://cakewallet.com/"
#define MyAppExeName "CakeWallet.exe"
Expand Down
Loading