Skip to content

Commit

Permalink
Merge branch 'develop' into release/5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmain committed Oct 10, 2022
2 parents 964711e + b882f04 commit 7e1a626
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Chores

- Updated `cardano-wallet` to v2022-10-06 ([PR 3045](https://github.com/input-output-hk/daedalus/pull/3045))
- Changed Japanese translations in delegate screen ([PR 3044](https://github.com/input-output-hk/daedalus/pull/3044))
- Updated trezor-connect to v9 ([PR 3038](https://github.com/input-output-hk/daedalus/pull/3038))
- Added analytics data collection ([PR 2927](https://github.com/input-output-hk/daedalus/pull/2927), [PR 2989](https://github.com/input-output-hk/daedalus/pull/2989), [PR 3003](https://github.com/input-output-hk/daedalus/pull/3003), [PR 3028](https://github.com/input-output-hk/daedalus/pull/3028))
- Updated LedgerJS to 5.1.0 ([PR 3036](https://github.com/input-output-hk/daedalus/pull/3036))
Expand Down
15 changes: 9 additions & 6 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ let
};
pkgs = import sources.nixpkgs { inherit system config; };
sources = localLib.sources // {
cardano-wallet = pkgs.runCommand "cardano-wallet" {} ''
cp -r ${localLib.sources.cardano-wallet} $out
chmod -R +w $out
cd $out
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
'';
cardano-wallet =
if target != "aarch64-darwin"
then localLib.sources.cardano-wallet
else pkgs.runCommand "cardano-wallet" {} ''
cp -r ${localLib.sources.cardano-wallet} $out
chmod -R +w $out
cd $out
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
'';
};
haskellNix = import sources."haskell.nix" {};
inherit (import haskellNix.sources.nixpkgs-unstable haskellNix.nixpkgsArgs) haskell-nix;
Expand Down
8 changes: 4 additions & 4 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"cardano-wallet": {
"branch": "v2022-08-16",
"branch": "v2022-10-06",
"description": "Official Wallet Backend & API for Cardano decentralized",
"homepage": null,
"owner": "input-output-hk",
"repo": "cardano-wallet",
"rev": "afe575663a866c612b4a4dc3a90a8a700e387a86",
"sha256": "03shbj5kxvcb22k1bvfcv9q529lg47g9y9pvvwkyb2jy285rwyhv",
"rev": "2130fe0acf19fa218cef8de4ef325ae9078e356e",
"sha256": "0d0wk6n7vij4qkp2qml5qdghk41dvm1078ps48673waf4cxjxaz0",
"type": "tarball",
"url": "https://github.com/input-output-hk/cardano-wallet/archive/afe575663a866c612b4a4dc3a90a8a700e387a86.tar.gz",
"url": "https://github.com/input-output-hk/cardano-wallet/archive/2130fe0acf19fa218cef8de4ef325ae9078e356e.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"cardano-world": {
Expand Down
2 changes: 1 addition & 1 deletion source/renderer/app/i18n/locales/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@
"staking.delegationSetup.chooseStakePool.step.dialog.stepIndicatorLabel": "ステップ{currentStep}/{totalSteps}",
"staking.delegationSetup.chooseStakePool.step.dialog.title": "ステークプールを選択する",
"staking.delegationSetup.chooseWallet.step.dialog.continueButtonLabel": "続ける",
"staking.delegationSetup.chooseWallet.step.dialog.description": "このウォレットには委任を有効にするために必要な最低額{minDelegationFunds} ADAが入っていません。<span>{minDelegationFunds} ADA以上</span>入っているウォレットを選択して、[続ける]をクリックしてください",
"staking.delegationSetup.chooseWallet.step.dialog.description": "委任する資金が入ったウォレットを選択してください。委任をオプションにするためには、選択したウォレットに{minDelegationFunds}ADA以上入っている必要があります",
"staking.delegationSetup.chooseWallet.step.dialog.errorMinDelegationFunds": "選択されたウォレットには委任を有効にするために必要な最低額{minDelegationFunds} ADAが入っていません。<span>{minDelegationFunds} ADA以上</span>入っているウォレットを選択して、[続ける]をクリックしてください。",
"staking.delegationSetup.chooseWallet.step.dialog.errorMinDelegationFundsRewardsOnly": "このウォレットに含まれているのは報酬残高のみであるため、委任はできません。",
"staking.delegationSetup.chooseWallet.step.dialog.errorRestoringWallet": "このウォレットは現在同期中のため委任に使用することができません。",
Expand Down

0 comments on commit 7e1a626

Please sign in to comment.