Skip to content

Commit 972c01b

Browse files
authored
Release/2.4.1 (#1307)
* Bump version to 2.4.0 and update @bringweb3/chrome-extension-kit to 1.6.0 * Refactor account list item and header connection status components to improve layout structure and alignment. * Update transfer pages to suggest adding recipient as contact only when not in wallet accounts * Update "Select Account" page to disable "Next" button when no accounts are connected or selected * Refactor connection approval text logic for improved readability and reusability. * Disable Hot Module Replacement (HMR) and live reload to prevent infinite reloading on dev server, update non-hot-reload configuration to include background and sdk scripts. * Add overlay banner theme variables for dark and light modes * Add system color scheme handling to settings reducer and selectors * Add connection approval flow with balance and account info integration * Refactor token icon rendering logic to use SVG as default and simplify format checks. * Add activity feed UI with corresponding business logic * Add CsprTrade market data provider icon and mapping to price provider assets * Bump version to 2.4.0 and update build scripts and Xcode project configuration * Update `casper-wallet-core` dependency and remove unused Xcode resource references. * Update label from "Cost" to "Charged amount" in deploy details page. * Fix `recipientPublicKey` null check in `shouldSuggestAddContact` logic. * Wrap `AccountInfoIcon` in a `<div>` to resolve layout issue in `auction-deploy-rows.tsx`. * Update `casper-wallet-core`, replace `Identicon` with `AccountInfoIcon`, and remove unused `useTheme`. * Update `@bringweb3/chrome-extension-kit` to version 1.6.2. * Update `casper-wallet-core` dependency to latest commit hash. * Prevent default form submission behavior in `PopupLayout` and `LayoutWindow`. * Add collapsible results section to `TransactionContainer` and improve result display logic. * Bump version to 2.4.0rc5 and update build script and Xcode project with new project version. * Update `casper-wallet-core` dependency to new commit hash and include `deepmerge` dependency. * Fix incorrect `collectionHash` prop by replacing `deploy.contractHash` with `action.collectionHash`. * Replace `AccountInfoRow` with `ContractInfoRow` where applicable and integrate `useFetchContractPackage` for improved contract package handling. * Integrate `HashTooltip` and `PortalTooltip` into `common.tsx`, enhance layout with overflow handling, and improve contract info display. * Release 2.4.0 version * Improve e2e tests robustness with added content script checks and extended timeouts, update Playwright version, and refine popup interaction flows. * Release 2.4.1 version
1 parent 7e07cd5 commit 972c01b

3 files changed

Lines changed: 64 additions & 13 deletions

File tree

package-lock.json

Lines changed: 57 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Casper Wallet",
33
"description": "Securely manage your CSPR tokens and interact with dapps with the self-custody wallet for the Casper blockchain.",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"author": "MAKE LLC",
66
"scripts": {
77
"devtools:redux": "redux-devtools --hostname=localhost",
@@ -52,7 +52,7 @@
5252
"styled-components": "^5"
5353
},
5454
"dependencies": {
55-
"@bringweb3/chrome-extension-kit": "^1.6.2",
55+
"@bringweb3/chrome-extension-kit": "1.6.3",
5656
"@formatjs/intl": "2.10.4",
5757
"@hookform/resolvers": "2.9.10",
5858
"@lapo/asn1js": "1.2.4",
@@ -71,7 +71,7 @@
7171
"base64-loader": "1.0.0",
7272
"big.js": "^6.2.1",
7373
"casper-js-sdk": "5.0.10",
74-
"casper-wallet-core": "git+ssh://git@github.com:make-software/casper-wallet-core.git#v1.2.0",
74+
"casper-wallet-core": "git+ssh://git@github.com:make-software/casper-wallet-core.git#0fb57d84b85ca2812ca8845a24a7c5552603e9bb",
7575
"date-fns": "^2.30.0",
7676
"dotenv-webpack": "^8.1.0",
7777
"i18next": "^23.11.0",

xcode-project/Casper Wallet/Casper Wallet.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@
636636
CODE_SIGN_ENTITLEMENTS = "Casper Wallet/Casper Wallet.entitlements";
637637
CODE_SIGN_STYLE = Automatic;
638638
COMBINE_HIDPI_IMAGES = YES;
639-
CURRENT_PROJECT_VERSION = 150;
639+
CURRENT_PROJECT_VERSION = 151;
640640
ENABLE_HARDENED_RUNTIME = YES;
641641
GENERATE_INFOPLIST_FILE = YES;
642642
INFOPLIST_FILE = "Casper Wallet/Info.plist";
@@ -650,7 +650,7 @@
650650
"@executable_path/../Frameworks",
651651
);
652652
MACOSX_DEPLOYMENT_TARGET = 10.14;
653-
MARKETING_VERSION = 2.4.0;
653+
MARKETING_VERSION = 2.4.1;
654654
OTHER_LDFLAGS = (
655655
"-framework",
656656
SafariServices,
@@ -673,7 +673,7 @@
673673
CODE_SIGN_ENTITLEMENTS = "Casper Wallet/Casper Wallet.entitlements";
674674
CODE_SIGN_STYLE = Automatic;
675675
COMBINE_HIDPI_IMAGES = YES;
676-
CURRENT_PROJECT_VERSION = 150;
676+
CURRENT_PROJECT_VERSION = 151;
677677
ENABLE_HARDENED_RUNTIME = YES;
678678
GENERATE_INFOPLIST_FILE = YES;
679679
INFOPLIST_FILE = "Casper Wallet/Info.plist";
@@ -687,7 +687,7 @@
687687
"@executable_path/../Frameworks",
688688
);
689689
MACOSX_DEPLOYMENT_TARGET = 10.14;
690-
MARKETING_VERSION = 2.4.0;
690+
MARKETING_VERSION = 2.4.1;
691691
OTHER_LDFLAGS = (
692692
"-framework",
693693
SafariServices,

0 commit comments

Comments
 (0)