Skip to content

Commit

Permalink
Bump package version (#202)
Browse files Browse the repository at this point in the history
* Bump package version

* Update dockerfile to node:16-alpine

* Use alpine for runtime container

* Try new yarn version

* finalize Dockerfile update
  • Loading branch information
qrtp authored Sep 23, 2024
1 parent 3e5cb30 commit 6c970b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
9 changes: 2 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###########################################################
# Build container
###########################################################
FROM launcher.gcr.io/google/nodejs AS builder
FROM node:16 AS builder

# Prepare arguments
ARG service
Expand All @@ -20,10 +20,6 @@ ENV CLIENT_URL $CLIENT_URL
ENV NEXT_TELEMETRY_DISABLED 1
ENV YARN_IGNORE_NODE 1

# Prepare dependencies
RUN install_node v16.13.0
RUN yarn set version 3.2.0

# Copy project files
WORKDIR /app
COPY . .
Expand All @@ -41,15 +37,14 @@ RUN rm -rf .yarn/cache
###########################################################
# Runtime container
###########################################################
FROM launcher.gcr.io/google/nodejs
FROM node:16-alpine

# Runtime environment variables
ARG service
ENV NEXT_TELEMETRY_DISABLED 1
ENV YARN_IGNORE_NODE 1

# Runtime dependencies
RUN install_node v16.13.0
RUN yarn set version 3.2.0

# Copy project files
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@unstoppabledomains/ui-components",
"version": "0.0.48-browser-extension.12",
"version": "0.0.49-browser-extension.1",
"private": true,
"description": "An open and reusable suite of Unstoppable Domains management components",
"keywords": [
Expand Down
16 changes: 9 additions & 7 deletions packages/ui-components/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,26 +262,26 @@
"show": "Show"
},
"extension": {
"version":"Version",
"welcomeToVersion":"Welcome to version {{version}}!",
"enableWallet":"Enable Wallet Features",
"continueWithoutWallet":"Continue without wallet",
"compatibilityMode": "Compatibility Mode",
"compatibilityModeCta": "Enable compatibility mode? This extension can override other wallets like MetaMask for enhanced functionality. You can update your preference from the settings menu.",
"compatibilityModeDescription": "Unstoppable Lite Wallet can override MetaMask in apps to ensure maximum compatibility. Enabling this setting may interfere with other extensions.",
"compatibilityModeEnabled": "Compatibility mode is enabled, but will not take effect on open tabs until you refresh the page.",
"connect": "connect to Unstoppable Lite Wallet",
"connectRequest": "request permission to view your wallet and prompt for transactions",
"connectToChain": "connect to {{chainName}}",
"continueWithoutWallet": "Continue without wallet",
"decentralizedBrowsing": "Decentralized Browsing",
"decentralizedBrowsingDescription": "Level up your browser by resolving onchain domains. Names like lisa.x or sandy.nft can be looked up using the DNS alternatives configured below.",
"enableWallet": "Enable Wallet Features",
"noWalletConnections": "No authorized connections",
"refreshNow": "Refresh now",
"sherlockAssistant": "Sherlock Assistant",
"sherlockAssistantDescription": "Gain insight into apps by automatically detecting wallet addresses associated with onchain domains. Augments apps in this browser with rich identity details.",
"unsupportedChain": "Cannot connect to unsupported network ({{originalChainId}}). The Unstoppable Lite Wallet browser extension supports Ethereum, Polygon and Base networks.",
"version": "Version",
"walletConnections": "Wallet Connections",
"walletConnectionsDescription": "You have authorized the following websites to connect to Unstoppable Lite Wallet."
"walletConnectionsDescription": "You have authorized the following websites to connect to Unstoppable Lite Wallet.",
"welcomeToVersion": "Welcome to version {{version}}!"
},
"footer": {
"copyright": "© Unstoppable Domains Inc. All Rights Reserved.",
Expand Down Expand Up @@ -710,7 +710,7 @@
"communitiesRequireADomain": "To start discovering groups you need to add a Web3 domain to this wallet.",
"configure": "Enable Unstoppable Messaging on this device for {{domain}}",
"decrypting": "Loading message...",
"description": "Chat securely with friends using Unstoppable Messaging, powered by XMTP and Push Protocol.",
"description": "Connect with friends using Unstoppable Messaging, powered by XMTP. Over 2 million onchain identities use XMTP for secure, private, and portable messaging.",
"domainRequiredUpload": "A domain is required to upload attachments",
"dropToUpload": "Drop file to upload...",
"emptyNotifications": "No App Notifications",
Expand Down Expand Up @@ -795,6 +795,7 @@
"openMessaging": "View Messages",
"poweredBy": "Powered by",
"signAndEnable": "Enable on this Device",
"signedIn": "You're signed in!",
"subscriptions": "Confirming account configuration...",
"subscriptionsDescription": "Checking your account to make sure it's ready for the best messaging experience.",
"success": "Success",
Expand Down Expand Up @@ -915,8 +916,9 @@
"onboardConfirmationDescription": "## Confirm email address\nThe one-time code sent to **{{emailAddress}}** is required to create your wallet.",
"onboardingMessage": "## Let's get you a wallet...\nWe couldn't find a wallet account for **{{emailAddress}}**. Don't worry, creating a new wallet is easy!",
"onboardSuccessDescription": "In a few moments we'll send an email to **{{emailAddress}}** with a new one-time code and your wallet recovery kit.",
"onboardSuccessTitle": "Creating your wallet...",
"onboardSuccessTitle": "Creating your wallet. Leave this window open until complete...",
"onboardWithEmailDescription": "## Create wallet\nEnter your email address and select a password for your new wallet.",
"readyToUse": "Sign in successful! Your wallet is ready to use, click to open.",
"receiveAddressCaption": "**Warning: Use supported tokens.** This address can only receive {{symbol}} on the {{blockchain}} network.",
"receiveAddressCaptionWithDomains": "**Warning: Use supported tokens.** This address can only receive {{symbol}} and Unstoppable Domains NFTs on the {{blockchain}} network.",
"recipient": "Recipient",
Expand Down

0 comments on commit 6c970b7

Please sign in to comment.