Skip to content

Commit

Permalink
[RELEASE] Release dApps 2023-06-09 (#1328)
Browse files Browse the repository at this point in the history
Co-authored-by: Dustin Brickwood <[email protected]>
Co-authored-by: Pavan Soratur <[email protected]>
Co-authored-by: vutuanlinh2k2 <[email protected]>
Co-authored-by: drewstone <[email protected]>
Co-authored-by: shekohex <[email protected]>
  • Loading branch information
6 people authored Jun 9, 2023
1 parent 4537ec8 commit 12b6e91
Show file tree
Hide file tree
Showing 19 changed files with 64 additions and 20 deletions.
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.7
https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.8
https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.9
https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.10
https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.11
10 changes: 10 additions & 0 deletions apps/bridge-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Update new deployments
- Add Nix flake devenv
- Fix Bridge Hanging Issue

## [0.0.11] - 2023-06-09

### Fixed, Changed and Added

- Update Orbit Network 06/06/2023 ([#1313](https://github.com/webb-tools/webb-dapp/pull/1313))
- Adds estimated transaction fee tooltip ([#1315](https://github.com/webb-tools/webb-dapp/pull/1315))
- Bridge Mobile UI ([#1285](https://github.com/webb-tools/webb-dapp/pull/1285))
- UI updates for improved transaction flow on bridge ([#1316](https://github.com/webb-tools/webb-dapp/pull/1316))
- Add breakpoint 480px to show one column layout ([#1321](https://github.com/webb-tools/webb-dapp/pull/1321))
2 changes: 1 addition & 1 deletion apps/bridge-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@webb-tools/bridge-dapp",
"version": "0.0.10",
"version": "0.0.11",
"main": "./src/index.js"
}
2 changes: 1 addition & 1 deletion apps/bridge-dapp/src/containers/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const Layout: FC<{ children?: React.ReactNode }> = ({ children }) => {
};

return (
<div className="h-screen min-w-full min-h-full flex flex-col justify-between">
<div className="flex flex-col justify-between h-screen min-w-full min-h-full">
<div className="flex-[1] flex flex-col">
<Header />

Expand Down
6 changes: 3 additions & 3 deletions apps/bridge-dapp/src/pages/PageBridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,13 @@ const PageBridge = () => {
<TabTrigger value="Transfer">Transfer</TabTrigger>
<TabTrigger value="Withdraw">Withdraw</TabTrigger>
</TabsList>
<TabContent className="grow flex flex-col" value="Deposit">
<TabContent className="flex flex-col grow" value="Deposit">
<DepositContainer {...sharedBridgeTabContainerProps} />
</TabContent>
<TabContent className="grow flex flex-col" value="Transfer">
<TabContent className="flex flex-col grow" value="Transfer">
<TransferContainer {...sharedBridgeTabContainerProps} />
</TabContent>
<TabContent className="grow flex flex-col" value="Withdraw">
<TabContent className="flex flex-col grow" value="Withdraw">
<WithdrawContainer {...sharedBridgeTabContainerProps} />
</TabContent>
</TabsRoot>
Expand Down
7 changes: 7 additions & 0 deletions apps/faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Replaces swirl BG image in faucet app to include tangle token.
- Typography system to unify Webbsite/Tangle Site/Faucet.

## [0.0.4] - 2023-06-09

### Fixed, Changed and Added

- Update copy - closes #1323 ([#1324](https://github.com/webb-tools/webb-dapp/pull/1324))
- Integrates Faucet App with Faucet Backend ([#1327](https://github.com/webb-tools/webb-dapp/pull/1327))
2 changes: 1 addition & 1 deletion apps/faucet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webb-tools/faucet",
"version": "0.0.3",
"version": "0.0.4",
"license": "APACHE-2.0",
"description": "Official Webb Faucet"
}
8 changes: 4 additions & 4 deletions apps/faucet/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@ const Page = () => {
<div>
<Typography
variant="mkt-small-caps"
className="text-center font-black text-blue-70"
className="font-black text-center text-blue-70"
>
Get tokens
</Typography>
<Typography
variant="mkt-h3"
className="text-center font-black text-mono-200"
className="font-black text-center text-mono-200"
>
Hubble Bridge Faucet
</Typography>
</div>
<Typography
variant="mkt-body1"
className="text-center font-medium text-mono-140"
className="font-medium text-center text-mono-140"
>
This faucet sends various test tokens on networks supported by the
Hubble Bridge.
</Typography>
<Typography
variant="mkt-body1"
className="text-center font-medium text-mono-140"
className="font-medium text-center text-mono-140"
>
To receive tokens, follow <TwitterLink />
{
Expand Down
6 changes: 6 additions & 0 deletions apps/stats-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixes cumulative proposals graph
- Adds a check for proposal data on proposal detail page to prevent from crashing
- Updates proposals query's fetch policy to always fetch latest data

## [0.0.10] - 2023-06-09

### Fixed, Changed and Added

- Fixes proposal table buggy pagination ([#1310](https://github.com/webb-tools/webb-dapp/pull/1310))
2 changes: 1 addition & 1 deletion apps/stats-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@webb-tools/stats-dapp",
"version": "0.0.9",
"version": "0.0.10",
"main": "./src/index.js"
}
9 changes: 9 additions & 0 deletions apps/tangle-website/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Typography system to unify Webbsite/Tangle Site/Faucet
- Fix content and minor UI as requested
- Add Incentivized Testnet item in Community Section

## [0.0.4] - 2023-06-09

### Fixed, Changed and Added

- Make accordion item in FAQ easier to open and collapsible ([#1311](https://github.com/webb-tools/webb-dapp/pull/1311))
- Remove bottom padding in footer ([#1314](https://github.com/webb-tools/webb-dapp/pull/1314))
- Bridge Mobile UI ([#1285](https://github.com/webb-tools/webb-dapp/pull/1285))
- Add image to Participation Mechanic items ([#1320](https://github.com/webb-tools/webb-dapp/pull/1320))
2 changes: 1 addition & 1 deletion apps/tangle-website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webb-tools/tangle-website",
"version": "0.0.3",
"version": "0.0.4",
"license": "APACHE-2.0",
"description": "Official Tangle Network website"
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const GovernanceSystemSection = () => {
<section className="dark bg-mono-200">
<div className="max-w-[1440px] mx-auto">
<div className="ml-auto mr-0 lg:w-[88.75%] flex flex-col lg:flex-row-reverse lg:gap-6 pt-[40px] pb-[80px] lg:py-[60px]">
<div className="lg:flex-1 flex items-center">
<div className="flex items-center lg:flex-1">
<div className="relative w-[340px] md:w-[600px] lg:w-[708px] h-[367px] md:h-[647.65px] lg:h-[762.75px] ml-auto mr-0">
<Image
src="/static/assets/governance-system.png"
Expand All @@ -38,7 +38,7 @@ export const GovernanceSystemSection = () => {
</div>
</div>

<div className="lg:flex-1 px-5 lg:px-0">
<div className="px-5 lg:flex-1 lg:px-0">
<Typography
variant="mkt-small-caps"
className="font-black dark:text-purple-50"
Expand All @@ -65,7 +65,7 @@ export const GovernanceSystemSection = () => {
{icon}
<Typography
variant="mkt-subheading"
className="font-bold dark:text-mono-0 mt-6 mb-4"
className="mt-6 mb-4 font-bold dark:text-mono-0"
>
{title}
</Typography>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const ParticipationTabTrigger: React.FC<TabTriggerProps> = ({
alt={tabName}
width={48}
height={48}
className="participation-tab-img rounded-full bg-mono-40"
className="rounded-full participation-tab-img bg-mono-40"
/>
<p className="text-[16px] leading-[25.6px] md:text-[24px] md:leading-[40px] font-bold text-inherit">
{tabName}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ export const SupportedBySection = () => {
<div className="md:w-[75%] lg:w-full flex flex-col gap-6 items-start">
<Typography
variant="mkt-h3"
className="text-left font-black text-mono-200"
className="font-black text-left text-mono-200"
>
Tangle Network is supported by...
</Typography>
<Typography
variant="mkt-body1"
className="mt-3 text-left text-mono-140 font-medium"
className="mt-3 font-medium text-left text-mono-140"
>
Tangle Network is built by Webb Foundation, with support from
various established industry programs and partners.
Expand Down
6 changes: 6 additions & 0 deletions apps/webbsite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Typography system to unify Webbsite/Tangle Site/Faucet
- Add 404 page in webbsite
- Deprecates Strapi blog Implementation and updates blog link to Ghost

## [0.0.4] - 2023-06-09

### Fixed, Changed and Added

- Remove bottom padding in footer ([#1314](https://github.com/webb-tools/webb-dapp/pull/1314))
2 changes: 1 addition & 1 deletion apps/webbsite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webb-tools/webbsite",
"version": "0.0.3",
"version": "0.0.4",
"license": "APACHE-2.0",
"description": "Official Webb webbsite"
}
5 changes: 5 additions & 0 deletions libs/webb-ui-components/src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@ export const bottomLinks: ExternalLink[] = [
href: 'https://webb.tools/privacy-policy',
...commonExternalProps,
},
{
name: 'Security',
href: '#',
...commonExternalProps,
},
];

export const defaultSocialConfigs: Array<SocialConfigsType> = [
Expand Down
2 changes: 1 addition & 1 deletion libs/webb-ui-components/src/css/layer-components.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,4 @@
*[data-swipe='cancel'] {
transform: translateX(0);
transition: transform 200ms ease-out;
}
}

0 comments on commit 12b6e91

Please sign in to comment.