From d7614b1dd7d8ef1e445b8a0784418761a065fa2f Mon Sep 17 00:00:00 2001 From: shawn Date: Mon, 25 Mar 2024 23:44:01 +0800 Subject: [PATCH 1/3] acala/karura kusama plugin update --- ios/Runner.xcodeproj/project.pbxproj | 6 +++--- pubspec.lock | 12 ++++++------ pubspec.yaml | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 101b7025..2f386d2f 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -352,7 +352,7 @@ CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3621; + CURRENT_PROJECT_VERSION = 3622; DEVELOPMENT_TEAM = WQ5H736A22; ENABLE_BITCODE = NO; EXCLUDED_ARCHS = armv7; @@ -500,7 +500,7 @@ CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3621; + CURRENT_PROJECT_VERSION = 3622; DEVELOPMENT_TEAM = WQ5H736A22; ENABLE_BITCODE = NO; EXCLUDED_ARCHS = armv7; @@ -541,7 +541,7 @@ CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3621; + CURRENT_PROJECT_VERSION = 3622; DEVELOPMENT_TEAM = WQ5H736A22; ENABLE_BITCODE = NO; EXCLUDED_ARCHS = armv7; diff --git a/pubspec.lock b/pubspec.lock index 223eaebb..f8679723 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1019,8 +1019,8 @@ packages: dependency: "direct main" description: path: "." - ref: "98afd44f9da52ea073edc54cdfdb83396de10ac0" - resolved-ref: "98afd44f9da52ea073edc54cdfdb83396de10ac0" + ref: d27ed9e709a54fa2ef036ff5277ac75c87a088ac + resolved-ref: d27ed9e709a54fa2ef036ff5277ac75c87a088ac url: "https://github.com/AcalaNetwork/polkawallet_plugin_acala.git" source: git version: "0.5.6" @@ -1064,8 +1064,8 @@ packages: dependency: "direct main" description: path: "." - ref: "1952901b1e2b3a7f8ac954452be8ea41bb8dabfe" - resolved-ref: "1952901b1e2b3a7f8ac954452be8ea41bb8dabfe" + ref: fbcc061f0248c2adcec7835fac4636be05b4736b + resolved-ref: fbcc061f0248c2adcec7835fac4636be05b4736b url: "https://github.com/AcalaNetwork/polkawallet_plugin_karura.git" source: git version: "0.5.6" @@ -1073,8 +1073,8 @@ packages: dependency: "direct main" description: path: "." - ref: f67193f9da6aa2a99d9c45cc1f4aa18f9e9cc33b - resolved-ref: f67193f9da6aa2a99d9c45cc1f4aa18f9e9cc33b + ref: f2ff2c916faee504f8271afcb487d87268aee182 + resolved-ref: f2ff2c916faee504f8271afcb487d87268aee182 url: "https://github.com/polkawallet-io/polkawallet_plugin_kusama.git" source: git version: "0.5.2" diff --git a/pubspec.yaml b/pubspec.yaml index 34b51e1b..932aaa08 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 3.6.2+3621 +version: 3.6.2+3622 environment: sdk: ">=2.10.0 <3.0.0" @@ -51,15 +51,15 @@ dependencies: polkawallet_plugin_kusama: git: url: https://github.com/polkawallet-io/polkawallet_plugin_kusama.git - ref: f67193f9da6aa2a99d9c45cc1f4aa18f9e9cc33b + ref: f2ff2c916faee504f8271afcb487d87268aee182 polkawallet_plugin_acala: git: url: https://github.com/AcalaNetwork/polkawallet_plugin_acala.git - ref: 98afd44f9da52ea073edc54cdfdb83396de10ac0 + ref: d27ed9e709a54fa2ef036ff5277ac75c87a088ac polkawallet_plugin_karura: git: url: https://github.com/AcalaNetwork/polkawallet_plugin_karura.git - ref: 1952901b1e2b3a7f8ac954452be8ea41bb8dabfe + ref: fbcc061f0248c2adcec7835fac4636be05b4736b polkawallet_plugin_evm: git: url: https://github.com/polkawallet-io/polkawallet_plugin_evm.git From 2fae33efe7f3cd8e641d17a15b9eeee3b4af88a0 Mon Sep 17 00:00:00 2001 From: shawn Date: Tue, 26 Mar 2024 22:05:41 +0800 Subject: [PATCH 2/3] balances.transfer -> balances.transferAllowDeath --- lib/pages/assets/transfer/transferPage.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/assets/transfer/transferPage.dart b/lib/pages/assets/transfer/transferPage.dart index bb2118e2..3d5a2de9 100644 --- a/lib/pages/assets/transfer/transferPage.dart +++ b/lib/pages/assets/transfer/transferPage.dart @@ -144,7 +144,7 @@ class TransferPageState extends State { return TxConfirmParams( txTitle: '${dic['transfer']} $symbol', module: 'balances', - call: _keepAlive ? 'transferKeepAlive' : 'transfer', + call: _keepAlive ? 'transferKeepAlive' : 'transferAllowDeath', txDisplayBold: { dic['to']: Row( children: [ @@ -181,7 +181,7 @@ class TransferPageState extends State { txParams = TxConfirmParams( txTitle: '', module: 'balances', - call: _keepAlive ? 'transferKeepAlive' : 'transfer', + call: _keepAlive ? 'transferKeepAlive' : 'transferAllowDeath', txDisplay: {}, params: [ widget.service.keyring.allWithContacts[0].address, From 878eee1036030283d444ae7f95a26ed54e5515c9 Mon Sep 17 00:00:00 2001 From: shawn Date: Tue, 26 Mar 2024 22:16:29 +0800 Subject: [PATCH 3/3] acala/karura plugin update --- pubspec.lock | 12 ++++++------ pubspec.yaml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index f8679723..4407e663 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1019,8 +1019,8 @@ packages: dependency: "direct main" description: path: "." - ref: d27ed9e709a54fa2ef036ff5277ac75c87a088ac - resolved-ref: d27ed9e709a54fa2ef036ff5277ac75c87a088ac + ref: "9c88125ae51c102259a7579a5a0a7784c1970dd3" + resolved-ref: "9c88125ae51c102259a7579a5a0a7784c1970dd3" url: "https://github.com/AcalaNetwork/polkawallet_plugin_acala.git" source: git version: "0.5.6" @@ -1064,8 +1064,8 @@ packages: dependency: "direct main" description: path: "." - ref: fbcc061f0248c2adcec7835fac4636be05b4736b - resolved-ref: fbcc061f0248c2adcec7835fac4636be05b4736b + ref: "7f7c86aa7610baa3aad0863bff676de81978026d" + resolved-ref: "7f7c86aa7610baa3aad0863bff676de81978026d" url: "https://github.com/AcalaNetwork/polkawallet_plugin_karura.git" source: git version: "0.5.6" @@ -1108,10 +1108,10 @@ packages: dependency: "direct main" description: name: polkawallet_ui - sha256: "4c8c471bd339346cdf521774b27d72ba6a2e6fc24ab7924755537f0d5923121a" + sha256: "9cbe970586a5bf250c1153b61bac246d3d7dbf7e9ded8382f312a97fb9e3e847" url: "https://pub.dev" source: hosted - version: "0.5.5+1" + version: "0.5.5+2" pool: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 932aaa08..5efb7f8b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -55,11 +55,11 @@ dependencies: polkawallet_plugin_acala: git: url: https://github.com/AcalaNetwork/polkawallet_plugin_acala.git - ref: d27ed9e709a54fa2ef036ff5277ac75c87a088ac + ref: 9c88125ae51c102259a7579a5a0a7784c1970dd3 polkawallet_plugin_karura: git: url: https://github.com/AcalaNetwork/polkawallet_plugin_karura.git - ref: fbcc061f0248c2adcec7835fac4636be05b4736b + ref: 7f7c86aa7610baa3aad0863bff676de81978026d polkawallet_plugin_evm: git: url: https://github.com/polkawallet-io/polkawallet_plugin_evm.git @@ -111,7 +111,7 @@ dependency_overrides: # path: ../../coding/polkawallet/polkawallet_plugin_statemine # polkawallet_plugin_evm: # path: ../../coding/polkawallet/polkawallet_plugin_evm - polkawallet_ui: ^0.5.5+1 + polkawallet_ui: ^0.5.5+2 polkawallet_sdk: ^0.5.9+4 # polkawallet_ui: # path: ../../coding/polkawallet/ui