mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
Fix Conflicts with main
This commit is contained in:
parent
53d3db5340
commit
5ba313cb13
3 changed files with 4 additions and 6 deletions
|
@ -3,6 +3,7 @@ import 'package:cake_wallet/core/auth_service.dart';
|
||||||
import 'package:cake_wallet/entities/desktop_dropdown_item.dart';
|
import 'package:cake_wallet/entities/desktop_dropdown_item.dart';
|
||||||
import 'package:cake_wallet/generated/i18n.dart';
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
import 'package:cake_wallet/routes.dart';
|
import 'package:cake_wallet/routes.dart';
|
||||||
|
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
|
||||||
import 'package:cake_wallet/src/screens/dashboard/desktop_widgets/dropdown_item_widget.dart';
|
import 'package:cake_wallet/src/screens/dashboard/desktop_widgets/dropdown_item_widget.dart';
|
||||||
import 'package:cake_wallet/src/screens/wallet_unlock/wallet_unlock_arguments.dart';
|
import 'package:cake_wallet/src/screens/wallet_unlock/wallet_unlock_arguments.dart';
|
||||||
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
||||||
|
|
|
@ -404,16 +404,13 @@ abstract class SettingsStoreBase with Store {
|
||||||
final havenNode = nodeSource.get(havenNodeId);
|
final havenNode = nodeSource.get(havenNodeId);
|
||||||
final deviceName = await _getDeviceName() ?? '';
|
final deviceName = await _getDeviceName() ?? '';
|
||||||
final shouldShowYatPopup = sharedPreferences.getBool(PreferencesKey.shouldShowYatPopup) ?? true;
|
final shouldShowYatPopup = sharedPreferences.getBool(PreferencesKey.shouldShowYatPopup) ?? true;
|
||||||
final packageInfo = await PackageInfo.fromPlatform();
|
|
||||||
var appVersion = '';
|
var appVersion = '';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
final packageInfo = await PackageInfo.fromPlatform();
|
||||||
appVersion = packageInfo.version;
|
appVersion = packageInfo.version;
|
||||||
} catch(_) {}
|
} catch(_) {}
|
||||||
|
|
||||||
final shouldShowYatPopup =
|
|
||||||
sharedPreferences.getBool(PreferencesKey.shouldShowYatPopup) ?? true;
|
|
||||||
|
|
||||||
final nodes = <WalletType, Node>{};
|
final nodes = <WalletType, Node>{};
|
||||||
|
|
||||||
if (moneroNode != null) {
|
if (moneroNode != null) {
|
||||||
|
|
|
@ -14,8 +14,8 @@ if [ -n "$1" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CAKEWALLET_NAME="Cake Wallet"
|
CAKEWALLET_NAME="Cake Wallet"
|
||||||
CAKEWALLET_VERSION="1.0.0"
|
CAKEWALLET_VERSION="1.0.1"
|
||||||
CAKEWALLET_BUILD_NUMBER=1
|
CAKEWALLET_BUILD_NUMBER=2
|
||||||
|
|
||||||
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
|
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
|
||||||
echo "Wrong app type."
|
echo "Wrong app type."
|
||||||
|
|
Loading…
Reference in a new issue