Skip to content

Commit

Permalink
Merge pull request #770 from secretkeylabs/release/v0.29.0
Browse files Browse the repository at this point in the history
release: v0.29.0 to main
  • Loading branch information
yknl authored Jan 31, 2024
2 parents c6ee41b + 5474dea commit 6fbad7b
Show file tree
Hide file tree
Showing 113 changed files with 2,044 additions and 1,385 deletions.
134 changes: 47 additions & 87 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xverse-web-extension",
"description": "A Bitcoin wallet for Web3",
"version": "0.28.1",
"version": "0.29.0",
"private": true,
"engines": {
"node": "^18.18.2"
Expand All @@ -10,8 +10,8 @@
"@ledgerhq/hw-transport-webusb": "^6.27.13",
"@phosphor-icons/react": "^2.0.10",
"@react-spring/web": "^9.6.1",
"@scure/btc-signer": "^1.1.1",
"@secretkeylabs/xverse-core": "8.0.1",
"@scure/btc-signer": "1.2.1",
"@secretkeylabs/xverse-core": "9.1.2",
"@stacks/connect": "7.4.1",
"@stacks/stacks-blockchain-api-types": "6.1.1",
"@stacks/transactions": "6.9.0",
Expand Down Expand Up @@ -62,7 +62,7 @@
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-state-sync": "^3.1.4",
"sats-connect": "1.3.0",
"sats-connect": "1.4.0",
"stream-browserify": "^3.0.0",
"string-to-color": "^2.2.2",
"styled-components": "^5.3.5",
Expand Down
4 changes: 2 additions & 2 deletions scripts/find-tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ if cat releases.json | jq '.[].tag_name' | grep $TAG; then
echo $TAG was already released
exit 1;
elif [[ -n "$LATEST_RC" ]]; then
((LATEST_RC++))
NEXT_TAG="$TAG-rc.$LATEST_RC"
echo incrementing rc
NEXT_TAG="$TAG-rc.$((LATEST_RC+1))"
fi
else
echo no releases matching $TAG yet
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/accountHeader/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import threeDotsIcon from '@assets/img/dots_three_vertical.svg';
import AccountRow from '@components/accountRow';
import PasswordInput from '@components/passwordInput';
import ResetWalletPrompt from '@components/resetWallet';
Expand All @@ -11,6 +10,7 @@ import styled from 'styled-components';
import OptionsDialog, { OPTIONS_DIALOG_WIDTH } from '@components/optionsDialog/optionsDialog';
import useSeedVault from '@hooks/useSeedVault';
import useWalletSelector from '@hooks/useWalletSelector';
import { DotsThreeVertical } from '@phosphor-icons/react';

const SelectedAccountContainer = styled.div<{ showBorderBottom?: boolean }>((props) => ({
display: 'flex',
Expand Down Expand Up @@ -177,7 +177,7 @@ function AccountHeaderComponent({
/>
{!disableMenuOption && (
<OptionsButton onClick={openOptionsDialog}>
<img src={threeDotsIcon} alt="Options" />
<DotsThreeVertical size={20} fill="white" />
</OptionsButton>
)}
{showOptionsDialog && (
Expand Down
Loading

0 comments on commit 6fbad7b

Please sign in to comment.