Skip to content

Commit

Permalink
Update manifest and UI for Iron Age Testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
rileystephens28 committed May 15, 2024
1 parent 219fa66 commit 8335ec0
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
6 changes: 3 additions & 3 deletions manifest/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Pelagus",
"name": "Pelagus (Iron Age)",
"version": "0.5.4",
"description": "The community owned and operated Quai Web3 wallet.",
"description": "The community owned and operated Quai Iron Age Testnet wallet (Deprecated).",
"homepage_url": "https://pelaguswallet.io",
"author": "https://pelaguswallet.io",
"manifest_version": 3,
Expand Down Expand Up @@ -47,7 +47,7 @@
"128": "icon-128.png"
},
"action": {
"default_title": "Pelagus",
"default_title": "Pelagus (Iron Age)",
"default_popup": "popup.html"
},
"permissions": [
Expand Down
2 changes: 1 addition & 1 deletion ui/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
"tip": "Pelagus offers the possibility of adding multiple recovery phrases."
},
"default": {
"fact1": "Pelagus Wallet, the first web wallet for Quai Network is coming soon.",
"fact1": "Compatible only with Quai's Iron Age Testnet.",
"fact2": "Accessible to everyone",
"fact3": "100% open source",
"fact4": "For Quai Network"
Expand Down
24 changes: 22 additions & 2 deletions ui/components/TabBar/TabBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export default function TabBar(): ReactElement {
)

return (
<>
<nav aria-label="Main">
{tabs
.filter((tab) => isTabSupportedByNetwork(tab, selectedNetwork))
Expand All @@ -67,7 +68,11 @@ export default function TabBar(): ReactElement {
/>
)
})}
<style jsx>
</nav>
<div >
FOR USE WITH IRON AGE TESTNET ONLY
</div>
<style jsx>
{`
nav {
width: 100%;
Expand All @@ -81,8 +86,23 @@ export default function TabBar(): ReactElement {
box-shadow: 0 0 5px rgba(0, 20, 19, 0.5);
z-index: 10;
}
div {
width: 100%;
height: 25px;
background-color: red;
display: flex;
justify-content: space-around;
box-sizing: border-box;
align-items: center;
text-align: center;
flex-shrink: 0;
z-index: 10;
color: white;
font-size: 14px;
font-weight: 600;
}
`}
</style>
</nav>
</>
)
}
Binary file modified ui/public/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8335ec0

Please sign in to comment.