Skip to content

Commit f597735

Browse files
ci(release): publish latest release
1 parent c0b0e83 commit f597735

9 files changed

Lines changed: 26 additions & 13 deletions

File tree

RELEASE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmXmCr4zVm9CsAdfhk7Zqx1K5JPMQVA49gjcXDR7d5o1P4`
3-
- CIDv1: `bafybeieman22eudzcuyr4a4umsavv5afrbunimnnkvpmvcp5si7slum4n4`
2+
- CIDv0: `QmaAPxGWx578fPij3zJxixZffLaJViSqns2BkKMjyHXYw1`
3+
- CIDv1: `bafybeifpvpacimasf7mlsdlvo3wngmzk4q6fh5mlat5yxwthv5lkzvryza`
44

55
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66

@@ -10,5 +10,5 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeieman22eudzcuyr4a4umsavv5afrbunimnnkvpmvcp5si7slum4n4.ipfs.dweb.link/
14-
- [ipfs://QmXmCr4zVm9CsAdfhk7Zqx1K5JPMQVA49gjcXDR7d5o1P4/](ipfs://QmXmCr4zVm9CsAdfhk7Zqx1K5JPMQVA49gjcXDR7d5o1P4/)
13+
- https://bafybeifpvpacimasf7mlsdlvo3wngmzk4q6fh5mlat5yxwthv5lkzvryza.ipfs.dweb.link/
14+
- [ipfs://QmaAPxGWx578fPij3zJxixZffLaJViSqns2BkKMjyHXYw1/](ipfs://QmaAPxGWx578fPij3zJxixZffLaJViSqns2BkKMjyHXYw1/)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.148.4
1+
web/5.148.5

apps/web/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,16 @@
5555
url('/fonts/Basel-Grotesk-Book.woff') format('woff');
5656
}
5757

58+
/* Subsetted Inter Regular, fetched lazily only when the Privy watermark renders (PrivyWatermark.tsx). */
59+
@font-face {
60+
font-family: 'Inter';
61+
font-weight: 400;
62+
font-style: normal;
63+
font-display: swap;
64+
unicode-range: U+0020-007E, U+00A0-024F, U+1E00-1EFF;
65+
src: url('/fonts/Inter-Regular-Latin.woff2') format('woff2');
66+
}
67+
5868
@supports (font-variation-settings: normal) {
5969
* {
6070
font-family: 'Basel', sans-serif;
13.7 KB
Binary file not shown.

apps/web/src/components/NavBar/DownloadApp/Modal/KeyManagement.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ describe('KeyManagementModal', () => {
2424
expect(getByText('Your wallet. Your crypto.')).toBeVisible()
2525
})
2626

27-
it('renders Secured by text', () => {
27+
it('renders Protected by text', () => {
2828
const { getByText } = render(<KeyManagementModal setPage={mockSetPage} goBack={mockGoBack} onClose={mockOnClose} />)
29-
expect(getByText('Secured by')).toBeVisible()
29+
expect(getByText('Protected by')).toBeVisible()
3030
})
3131

3232
it('Continue button calls setPage(Page.PasskeyGeneration)', () => {

apps/web/src/components/NavBar/DownloadApp/Modal/__snapshots__/KeyManagement.test.tsx.snap

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,11 @@ exports[`KeyManagementModal > renders correctly 1`] = `
129129
class="_display-flex _flexBasis-auto _boxSizing-border-box _position-relative _minHeight-0px _minWidth-0px _flexShrink-0 _flexDirection-row _alignItems-center _justifyContent-center _gap-t-space-spa94665593 _pt-t-space-spa1360334047"
130130
>
131131
<span
132-
class="font_body _display-inline _boxSizing-border-box _whiteSpace-pre-wrap _mt-0px _mr-0px _mb-0px _ml-0px _color-neutral3 _fontFamily-f-family _wordWrap-break-word _fontSize-f-size-smal108 _fontWeight-f-weight-bo3548 _lineHeight-f-lineHeigh1269072494"
132+
class="font_body _display-inline _boxSizing-border-box _whiteSpace-pre-wrap _mt-0px _mr-0px _mb-0px _ml-0px _color-neutral3 _fontFamily-f-family _wordWrap-break-word _fontSize-f-size-medi3736 _fontWeight-f-weight-bo3548 _lineHeight-f-lineHeigh507465454"
133133
data-disable-theme="true"
134+
style="font-family: Inter; font-size: 13px; font-weight: 400; line-height: 16px;"
134135
>
135-
Secured by
136+
Protected by
136137
</span>
137138
<a
138139
class="sc-bRKDuR dvTvpU"

apps/web/src/components/Passkey/PrivyWatermark.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export function PrivyWatermark(props: FlexProps) {
77
const { t } = useTranslation()
88
return (
99
<Flex row alignItems="center" justifyContent="center" gap="$spacing8" {...props}>
10-
<Text variant="body3" color="$neutral3">
10+
{/* Inter Regular 13: scoped @font-face in apps/web/index.html */}
11+
<Text color="$neutral3" style={{ fontFamily: 'Inter', fontSize: 13, fontWeight: '400', lineHeight: 16 }}>
1112
{t('onboarding.keyManagement.securedBy')}
1213
</Text>
1314
<ExternalLink href="https://www.privy.io/user-help-center" style={{ stroke: 'none' }}>

apps/web/src/components/Passkey/__snapshots__/AddBackupLoginModal.test.tsx.snap

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,11 @@ exports[`AddBackupLoginModal > renders snapshot at method select step 1`] = `
219219
class="_display-flex _flexBasis-auto _boxSizing-border-box _position-relative _minHeight-0px _minWidth-0px _flexShrink-0 _flexDirection-row _alignItems-center _justifyContent-center _gap-t-space-spa94665593"
220220
>
221221
<span
222-
class="font_body _display-inline _boxSizing-border-box _whiteSpace-pre-wrap _mt-0px _mr-0px _mb-0px _ml-0px _color-neutral3 _fontFamily-f-family _wordWrap-break-word _fontSize-f-size-smal108 _fontWeight-f-weight-bo3548 _lineHeight-f-lineHeigh1269072494"
222+
class="font_body _display-inline _boxSizing-border-box _whiteSpace-pre-wrap _mt-0px _mr-0px _mb-0px _ml-0px _color-neutral3 _fontFamily-f-family _wordWrap-break-word _fontSize-f-size-medi3736 _fontWeight-f-weight-bo3548 _lineHeight-f-lineHeigh507465454"
223223
data-disable-theme="true"
224+
style="font-family: Inter; font-size: 13px; font-weight: 400; line-height: 16px;"
224225
>
225-
Secured by
226+
Protected by
226227
</span>
227228
<a
228229
class="sc-bRKDuR dvTvpU"

packages/uniswap/src/i18n/locales/source/en-US.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,7 @@
14781478
"onboarding.intro.mobileScan.button": "Scan QR code to import",
14791479
"onboarding.intro.mobileScan.title": "Have the Uniswap app?",
14801480
"onboarding.keyManagement.description": "Uniswap uses advanced encryption so only you can access your funds. You can export your wallet any time.",
1481-
"onboarding.keyManagement.securedBy": "Secured by",
1481+
"onboarding.keyManagement.securedBy": "Protected by",
14821482
"onboarding.keyManagement.title": "Your wallet. Your crypto.",
14831483
"onboarding.landing.button.add": "Add an existing wallet",
14841484
"onboarding.landing.button.create": "Create a wallet",

0 commit comments

Comments
 (0)