macos new build
Some checks are pending
Cache Dependencies / test (push) Waiting to run

linux new build
This commit is contained in:
OmarHatem 2024-12-03 21:29:40 +03:00
parent 01faeabefe
commit ad6eb7db15
4 changed files with 15 additions and 7 deletions

View file

@ -44,7 +44,7 @@ android {
disable 'InvalidPackage'
}
namespace appProperties['id']
namespace "com.cakewallet.cake_wallet"
defaultConfig {
applicationId appProperties['id']

View file

@ -1,3 +1,5 @@
import 'dart:io';
import 'package:cake_wallet/generated/i18n.dart';
import 'package:cake_wallet/routes.dart';
import 'package:cake_wallet/src/widgets/alert_with_one_action.dart';
@ -40,7 +42,13 @@ class CakeFeaturesPage extends StatelessWidget {
children: <Widget>[
SizedBox(height: 20),
DashBoardRoundedCardWidget(
onTap: () => _navigatorToGiftCardsPage(context),
onTap: () {
if (Platform.isMacOS) {
_launchUrl("buy.cakepay.com");
} else {
_navigatorToGiftCardsPage(context);
}
},
title: 'Cake Pay',
subTitle: S.of(context).cake_pay_subtitle,
image: Image.asset(
@ -75,7 +83,7 @@ class CakeFeaturesPage extends StatelessWidget {
icon: Icon(
Icons.speaker_notes_rounded,
color:
Theme.of(context).extension<DashboardPageTheme>()!.pageTitleTextColor,
Theme.of(context).extension<DashboardPageTheme>()!.pageTitleTextColor,
size: 75,
),
);

View file

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

View file

@ -21,8 +21,8 @@ MONERO_COM_BUILD_NUMBER=37
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="1.14.1"
CAKEWALLET_BUILD_NUMBER=97
CAKEWALLET_VERSION="1.14.2"
CAKEWALLET_BUILD_NUMBER=98
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then