Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v0.29.0 to main #770

Merged
merged 27 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cd127f2
Merge pull request #761 from secretkeylabs/release/v0.28.1
teebszet Jan 17, 2024
43f157a
ENG-3498: Control STX display via Manage Tokens Screen (#757)
jordankzf Jan 18, 2024
61af7b1
fix: translation strings (#764)
teebszet Jan 18, 2024
dbb2266
fix: wrong variable used in validation to show top divider for first …
fedeerbes Jan 22, 2024
562ca71
fix: rare sats icon shape and remove extra props from rare sat icon c…
fedeerbes Jan 22, 2024
df93395
chore: use new core version with btc signer version upgrade (#763)
fedeerbes Jan 23, 2024
85f91aa
[ENG-3036] feat: Rename accounts from the change account screen (#740)
dhriaznov Jan 24, 2024
35d76d0
[ENG-3614] feat: Ability to manage a BRC-20 token's visibility (hide)…
jordankzf Jan 24, 2024
e366817
Revert to procedural calls (#769)
jordankzf Jan 25, 2024
156995f
release: v0.29.0
Jan 25, 2024
dd3cfd3
Merge remote-tracking branch 'origin/main' into release/v0.29.0
teebszet Jan 25, 2024
17746b3
chore: fix update description on build-rc workflow
teebszet Jan 25, 2024
be39b42
fix: hide stx in receive modal when stx token is disabled in token ma…
fedeerbes Jan 25, 2024
30c65f5
Merge remote-tracking branch 'origin/main' into release/v0.29.0
teebszet Jan 25, 2024
bf9f939
Merge branch 'develop' into release/v0.29.0
teebszet Jan 25, 2024
d69c863
chore: use POSIX compliant shell increment
teebszet Jan 25, 2024
b47bf6d
[ENG-3513] feat: View accounts balances in the Change Account screen …
dhriaznov Jan 25, 2024
a7e2abb
Merge branch 'develop' into release/v0.29.0
teebszet Jan 26, 2024
d543038
[ENG-3370] feat: improve get address screen (#715)
m-aboelenein Jan 26, 2024
2c88276
Merge branch 'develop' into release/v0.29.0
teebszet Jan 26, 2024
f1455c1
disable continue button on confirm password (#776)
m-aboelenein Jan 26, 2024
31c61a4
Merge branch 'develop' into release/v0.29.0
teebszet Jan 26, 2024
f5ccbfd
Ensure correct ordinal is shown in ordinal detail view (#779)
victorkirov Jan 26, 2024
410001a
fix: fetch of brc20 in token management screen (#782)
fedeerbes Jan 26, 2024
7ae43a5
Connection Screens Revamp Follow-up (#780)
m-aboelenein Jan 26, 2024
4cc5a42
fix: reset balance state between change accounts (#783)
teebszet Jan 29, 2024
5474dea
chore: bump core version to fix ledger tr signing
teebszet Jan 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading