V4.23.3 RC (#2069)

* V4.23.3 RC

* update release notes [skip ci]
This commit is contained in:
Omar Hatem 2025-03-07 02:48:22 +02:00 committed by GitHub
parent 3dabad81f4
commit e56dd1256d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 33 additions and 37 deletions

View file

@ -1,3 +1,3 @@
Ledger fixes UI/UX enhancements
UI enhancements Stability improvements
Bug fixes Bug fixes

View file

@ -1,5 +1,3 @@
Zano enhancements UI/UX enhancements
Ethereum enhancements Stability improvements
Ledger fixes
UI enhancements
Bug fixes Bug fixes

View file

@ -240,7 +240,7 @@ SPEC CHECKSUMS:
connectivity_plus: bf0076dd84a130856aa636df1c71ccaff908fa1d connectivity_plus: bf0076dd84a130856aa636df1c71ccaff908fa1d
CryptoSwift: 967f37cea5a3294d9cce358f78861652155be483 CryptoSwift: 967f37cea5a3294d9cce358f78861652155be483
cw_haven: b3e54e1fbe7b8e6fda57a93206bc38f8e89b898a cw_haven: b3e54e1fbe7b8e6fda57a93206bc38f8e89b898a
cw_mweb: 87af74f9659fed0c1a2cbfb44413f1070e79e3ae cw_mweb: 22cd01dfb8ad2d39b15332006f22046aaa8352a3
cw_shared_external: 2972d872b8917603478117c9957dfca611845a92 cw_shared_external: 2972d872b8917603478117c9957dfca611845a92
device_display_brightness: 1510e72c567a1f6ce6ffe393dcd9afd1426034f7 device_display_brightness: 1510e72c567a1f6ce6ffe393dcd9afd1426034f7
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6 device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6

View file

@ -130,7 +130,8 @@ class MoonPayProvider extends BuyProvider {
final List<PaymentMethod> paymentMethods = []; final List<PaymentMethod> paymentMethods = [];
if (isBuyAction) { if (isBuyAction) {
final fiatBuyCredentials = await fetchFiatCredentials(fiatCurrency, cryptoCurrency.title, null); final fiatBuyCredentials =
await fetchFiatCredentials(fiatCurrency, cryptoCurrency.title, null);
if (fiatBuyCredentials.isNotEmpty) { if (fiatBuyCredentials.isNotEmpty) {
final paymentMethod = fiatBuyCredentials['paymentMethod'] as String?; final paymentMethod = fiatBuyCredentials['paymentMethod'] as String?;
paymentMethods.add(PaymentMethod.fromMoonPayJson( paymentMethods.add(PaymentMethod.fromMoonPayJson(
@ -223,7 +224,6 @@ class MoonPayProvider extends BuyProvider {
required bool isBuyAction, required bool isBuyAction,
required String cryptoCurrencyAddress, required String cryptoCurrencyAddress,
String? countryCode}) async { String? countryCode}) async {
final Map<String, String> params = { final Map<String, String> params = {
'theme': themeToMoonPayTheme(_settingsStore.currentTheme), 'theme': themeToMoonPayTheme(_settingsStore.currentTheme),
'language': _settingsStore.languageCode, 'language': _settingsStore.languageCode,
@ -246,19 +246,17 @@ class MoonPayProvider extends BuyProvider {
if (!isBuyAction) params['quoteCurrencyCode'] = quote.cryptoCurrency.name; if (!isBuyAction) params['quoteCurrencyCode'] = quote.cryptoCurrency.name;
try { try {
{ final uri = await requestMoonPayUrl(
final uri = await requestMoonPayUrl( walletAddress: cryptoCurrencyAddress,
walletAddress: cryptoCurrencyAddress, settingsStore: _settingsStore,
settingsStore: _settingsStore, isBuyAction: isBuyAction,
isBuyAction: isBuyAction, amount: amount.toString(),
amount: amount.toString(), params: params);
params: params);
if (await canLaunchUrl(uri)) { if (await canLaunchUrl(uri)) {
await launchUrl(uri, mode: LaunchMode.externalApplication); await launchUrl(uri, mode: LaunchMode.externalApplication);
} else { } else {
throw Exception('Could not launch URL'); throw Exception('Could not launch URL');
}
} }
} catch (e) { } catch (e) {
if (context.mounted) { if (context.mounted) {

View file

@ -15,15 +15,15 @@ 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.20.2" MONERO_COM_VERSION="1.20.3"
MONERO_COM_BUILD_NUMBER=114 MONERO_COM_BUILD_NUMBER=115
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"
MONERO_COM_SCHEME="monero.com" MONERO_COM_SCHEME="monero.com"
CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.23.2" CAKEWALLET_VERSION="4.23.3"
CAKEWALLET_BUILD_NUMBER=247 CAKEWALLET_BUILD_NUMBER=248
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"
CAKEWALLET_SCHEME="cakewallet" CAKEWALLET_SCHEME="cakewallet"

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.20.2" MONERO_COM_VERSION="1.20.3"
MONERO_COM_BUILD_NUMBER=112 MONERO_COM_BUILD_NUMBER=113
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.23.2" CAKEWALLET_VERSION="4.23.3"
CAKEWALLET_BUILD_NUMBER=298 CAKEWALLET_BUILD_NUMBER=301
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet" CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
HAVEN_NAME="Haven" HAVEN_NAME="Haven"

View file

@ -14,8 +14,8 @@ if [ -n "$1" ]; then
fi fi
CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="1.13.2" CAKEWALLET_VERSION="1.13.3"
CAKEWALLET_BUILD_NUMBER=47 CAKEWALLET_BUILD_NUMBER=48
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
echo "Wrong app type." echo "Wrong app type."

View file

@ -16,13 +16,13 @@ if [ -n "$1" ]; then
fi fi
MONERO_COM_NAME="Monero.com" MONERO_COM_NAME="Monero.com"
MONERO_COM_VERSION="1.10.2" MONERO_COM_VERSION="1.10.3"
MONERO_COM_BUILD_NUMBER=44 MONERO_COM_BUILD_NUMBER=45
MONERO_COM_BUNDLE_ID="com.cakewallet.monero" MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="1.16.2" CAKEWALLET_VERSION="1.16.3"
CAKEWALLET_BUILD_NUMBER=105 CAKEWALLET_BUILD_NUMBER=106
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet" CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then

View file

@ -1,5 +1,5 @@
#define MyAppName "Cake Wallet" #define MyAppName "Cake Wallet"
#define MyAppVersion "0.4.2" #define MyAppVersion "0.4.3"
#define MyAppPublisher "Cake Labs LLC" #define MyAppPublisher "Cake Labs LLC"
#define MyAppURL "https://cakewallet.com/" #define MyAppURL "https://cakewallet.com/"
#define MyAppExeName "CakeWallet.exe" #define MyAppExeName "CakeWallet.exe"