Skip to content

Commit e56dd12

Browse files
authored
V4.23.3 RC (#2069)
* V4.23.3 RC * update release notes [skip ci]
1 parent 3dabad8 commit e56dd12

File tree

9 files changed

+34
-38
lines changed

9 files changed

+34
-38
lines changed
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Ledger fixes
2-
UI enhancements
1+
UI/UX enhancements
2+
Stability improvements
33
Bug fixes

assets/text/Release_Notes.txt

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
Zano enhancements
2-
Ethereum enhancements
3-
Ledger fixes
4-
UI enhancements
1+
UI/UX enhancements
2+
Stability improvements
53
Bug fixes

ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ SPEC CHECKSUMS:
240240
connectivity_plus: bf0076dd84a130856aa636df1c71ccaff908fa1d
241241
CryptoSwift: 967f37cea5a3294d9cce358f78861652155be483
242242
cw_haven: b3e54e1fbe7b8e6fda57a93206bc38f8e89b898a
243-
cw_mweb: 87af74f9659fed0c1a2cbfb44413f1070e79e3ae
243+
cw_mweb: 22cd01dfb8ad2d39b15332006f22046aaa8352a3
244244
cw_shared_external: 2972d872b8917603478117c9957dfca611845a92
245245
device_display_brightness: 1510e72c567a1f6ce6ffe393dcd9afd1426034f7
246246
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
@@ -277,4 +277,4 @@ SPEC CHECKSUMS:
277277

278278
PODFILE CHECKSUM: e448f662d4c41f0c0b1ccbb78afd57dbf895a597
279279

280-
COCOAPODS: 1.15.2
280+
COCOAPODS: 1.15.2

lib/buy/moonpay/moonpay_provider.dart

+13-15
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ class MoonPayProvider extends BuyProvider {
130130
final List<PaymentMethod> paymentMethods = [];
131131

132132
if (isBuyAction) {
133-
final fiatBuyCredentials = await fetchFiatCredentials(fiatCurrency, cryptoCurrency.title, null);
133+
final fiatBuyCredentials =
134+
await fetchFiatCredentials(fiatCurrency, cryptoCurrency.title, null);
134135
if (fiatBuyCredentials.isNotEmpty) {
135136
final paymentMethod = fiatBuyCredentials['paymentMethod'] as String?;
136137
paymentMethods.add(PaymentMethod.fromMoonPayJson(
@@ -223,7 +224,6 @@ class MoonPayProvider extends BuyProvider {
223224
required bool isBuyAction,
224225
required String cryptoCurrencyAddress,
225226
String? countryCode}) async {
226-
227227
final Map<String, String> params = {
228228
'theme': themeToMoonPayTheme(_settingsStore.currentTheme),
229229
'language': _settingsStore.languageCode,
@@ -246,19 +246,17 @@ class MoonPayProvider extends BuyProvider {
246246
if (!isBuyAction) params['quoteCurrencyCode'] = quote.cryptoCurrency.name;
247247

248248
try {
249-
{
250-
final uri = await requestMoonPayUrl(
251-
walletAddress: cryptoCurrencyAddress,
252-
settingsStore: _settingsStore,
253-
isBuyAction: isBuyAction,
254-
amount: amount.toString(),
255-
params: params);
256-
257-
if (await canLaunchUrl(uri)) {
258-
await launchUrl(uri, mode: LaunchMode.externalApplication);
259-
} else {
260-
throw Exception('Could not launch URL');
261-
}
249+
final uri = await requestMoonPayUrl(
250+
walletAddress: cryptoCurrencyAddress,
251+
settingsStore: _settingsStore,
252+
isBuyAction: isBuyAction,
253+
amount: amount.toString(),
254+
params: params);
255+
256+
if (await canLaunchUrl(uri)) {
257+
await launchUrl(uri, mode: LaunchMode.externalApplication);
258+
} else {
259+
throw Exception('Could not launch URL');
262260
}
263261
} catch (e) {
264262
if (context.mounted) {

scripts/android/app_env.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
1515
APP_ANDROID_TYPE=$1
1616

1717
MONERO_COM_NAME="Monero.com"
18-
MONERO_COM_VERSION="1.20.2"
19-
MONERO_COM_BUILD_NUMBER=114
18+
MONERO_COM_VERSION="1.20.3"
19+
MONERO_COM_BUILD_NUMBER=115
2020
MONERO_COM_BUNDLE_ID="com.monero.app"
2121
MONERO_COM_PACKAGE="com.monero.app"
2222
MONERO_COM_SCHEME="monero.com"
2323

2424
CAKEWALLET_NAME="Cake Wallet"
25-
CAKEWALLET_VERSION="4.23.2"
26-
CAKEWALLET_BUILD_NUMBER=247
25+
CAKEWALLET_VERSION="4.23.3"
26+
CAKEWALLET_BUILD_NUMBER=248
2727
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
2828
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
2929
CAKEWALLET_SCHEME="cakewallet"

scripts/ios/app_env.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
1313
APP_IOS_TYPE=$1
1414

1515
MONERO_COM_NAME="Monero.com"
16-
MONERO_COM_VERSION="1.20.2"
17-
MONERO_COM_BUILD_NUMBER=112
16+
MONERO_COM_VERSION="1.20.3"
17+
MONERO_COM_BUILD_NUMBER=113
1818
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
1919

2020
CAKEWALLET_NAME="Cake Wallet"
21-
CAKEWALLET_VERSION="4.23.2"
22-
CAKEWALLET_BUILD_NUMBER=298
21+
CAKEWALLET_VERSION="4.23.3"
22+
CAKEWALLET_BUILD_NUMBER=301
2323
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
2424

2525
HAVEN_NAME="Haven"

scripts/linux/app_env.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ if [ -n "$1" ]; then
1414
fi
1515

1616
CAKEWALLET_NAME="Cake Wallet"
17-
CAKEWALLET_VERSION="1.13.2"
18-
CAKEWALLET_BUILD_NUMBER=47
17+
CAKEWALLET_VERSION="1.13.3"
18+
CAKEWALLET_BUILD_NUMBER=48
1919

2020
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
2121
echo "Wrong app type."

scripts/macos/app_env.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ if [ -n "$1" ]; then
1616
fi
1717

1818
MONERO_COM_NAME="Monero.com"
19-
MONERO_COM_VERSION="1.10.2"
20-
MONERO_COM_BUILD_NUMBER=44
19+
MONERO_COM_VERSION="1.10.3"
20+
MONERO_COM_BUILD_NUMBER=45
2121
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
2222

2323
CAKEWALLET_NAME="Cake Wallet"
24-
CAKEWALLET_VERSION="1.16.2"
25-
CAKEWALLET_BUILD_NUMBER=105
24+
CAKEWALLET_VERSION="1.16.3"
25+
CAKEWALLET_BUILD_NUMBER=106
2626
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
2727

2828
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then

scripts/windows/build_exe_installer.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "Cake Wallet"
2-
#define MyAppVersion "0.4.2"
2+
#define MyAppVersion "0.4.3"
33
#define MyAppPublisher "Cake Labs LLC"
44
#define MyAppURL "https://cakewallet.com/"
55
#define MyAppExeName "CakeWallet.exe"

0 commit comments

Comments
 (0)