Minor bug fixes. 4.2.1.

M committed May 12, 2021 at 18:06 UTC 643da68048ddb1dab0b6718050fb711ca1757c10
5 files changed +10 -10
ios/Runner.xcodeproj/project.pbxproj
+6 -6
@@ -362,7 +362,7 @@
362 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
363 CLANG_ENABLE_MODULES = YES;
364 CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
365 - CURRENT_PROJECT_VERSION = 40;
365 + CURRENT_PROJECT_VERSION = 41;
366 DEVELOPMENT_TEAM = 32J6BB6VUS;
367 ENABLE_BITCODE = NO;
368 FRAMEWORK_SEARCH_PATHS = (
@@ -379,7 +379,7 @@
379 "$(inherited)",
380 "$(PROJECT_DIR)/Flutter",
381 );
382 - MARKETING_VERSION = 4.2.0;
382 + MARKETING_VERSION = 4.2.1;
383 PRODUCT_BUNDLE_IDENTIFIER = com.fotolockr.cakewallet;
384 PRODUCT_NAME = "$(TARGET_NAME)";
385 SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
@@ -505,7 +505,7 @@
505 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
506 CLANG_ENABLE_MODULES = YES;
507 CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
508 - CURRENT_PROJECT_VERSION = 40;
508 + CURRENT_PROJECT_VERSION = 41;
509 DEVELOPMENT_TEAM = 32J6BB6VUS;
510 ENABLE_BITCODE = NO;
511 FRAMEWORK_SEARCH_PATHS = (
@@ -522,7 +522,7 @@
522 "$(inherited)",
523 "$(PROJECT_DIR)/Flutter",
524 );
525 - MARKETING_VERSION = 4.2.0;
525 + MARKETING_VERSION = 4.2.1;
526 PRODUCT_BUNDLE_IDENTIFIER = com.fotolockr.cakewallet;
527 PRODUCT_NAME = "$(TARGET_NAME)";
528 SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
@@ -540,7 +540,7 @@
540 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
541 CLANG_ENABLE_MODULES = YES;
542 CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
543 - CURRENT_PROJECT_VERSION = 40;
543 + CURRENT_PROJECT_VERSION = 41;
544 DEVELOPMENT_TEAM = 32J6BB6VUS;
545 ENABLE_BITCODE = NO;
546 FRAMEWORK_SEARCH_PATHS = (
@@ -557,7 +557,7 @@
557 "$(inherited)",
558 "$(PROJECT_DIR)/Flutter",
559 );
560 - MARKETING_VERSION = 4.2.0;
560 + MARKETING_VERSION = 4.2.1;
561 PRODUCT_BUNDLE_IDENTIFIER = com.fotolockr.cakewallet;
562 PRODUCT_NAME = "$(TARGET_NAME)";
563 SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
lib/bitcoin/bitcoin_mnemonic_is_incorrect_exception.dart
+1 -1
@@ -1,5 +1,5 @@
1 class BitcoinMnemonicIsIncorrectException implements Exception {
2 @override
3 String toString() =>
4 - 'Bitcoin mnemonic has incorrect format. Mnemonic should contain 24 words separated by space.';
4 + 'Bitcoin mnemonic has incorrect format. Mnemonic should contain 12 or 24 words separated by space.';
5 }
lib/bitcoin/electrum_transaction_history.dart
+1 -1
@@ -35,7 +35,7 @@ abstract class ElectrumTransactionHistoryBase
35
36 @override
37 void addMany(Map<String, ElectrumTransactionInfo> transactions) =>
38 - this.transactions.addAll(transactions);
38 + transactions.forEach((_, tx) => _updateOrInsert(tx));
39
40 @override
41 Future<void> save() async {
lib/entities/wallet_type.dart
+1 -1
@@ -71,7 +71,7 @@ String walletTypeToDisplayName(WalletType type) {
71 case WalletType.bitcoin:
72 return 'Bitcoin (Electrum)';
73 case WalletType.litecoin:
74 - return 'Litecoin';
74 + return 'Litecoin (Electrum)';
75 default:
76 return '';
77 }
pubspec.yaml
+1 -1
@@ -11,7 +11,7 @@ description: Cake Wallet.
11 # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
12 # Read more about iOS versioning at
13 # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14 -version: 4.2.0+49
14 +version: 4.2.1+50
15
16 environment:
17 sdk: ">=2.7.0 <3.0.0"