Skip to content

Commit

Permalink
chore: bump manifest version v1.19.2 (#1680)
Browse files Browse the repository at this point in the history
  • Loading branch information
mchappell committed Jan 29, 2025
1 parent 47891d7 commit 41fdfbd
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/browser-extension-wallet/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "$WALLET_MANIFEST_NAME",
"description": "One fast, accessible, and secure platform for digital assets, DApps, NFTs, and DeFi.",
"version": "1.19.1",
"version": "1.19.2",
"manifest_version": 3,
"key": "$LACE_EXTENSION_KEY",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion apps/browser-extension-wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lace/browser-extension-wallet",
"version": "1.19.1",
"version": "1.19.2",
"description": "A fully capable wallet packaged as browser extensions for Chrome, Firefox, and Edge",
"homepage": "https://github.com/input-output-hk/lace/blob/master/apps/browser-extension-wallet/README.md",
"bugs": {
Expand Down
17 changes: 17 additions & 0 deletions apps/browser-extension-wallet/src/release-notes/1_19_2.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* eslint-disable camelcase */
import React from 'react';

const ReleaseNote_1_19_2 = (): React.ReactElement => (
<>
<p>This release:</p>
<ul style={{ listStyleType: 'disc', margin: 0 }}>
<li>Fixes an issue with the initial load of the DApp explorer</li>
<li>Improves wallet onboarding performance for multi-address accounts</li>
<li>Optimizes idle detection</li>
<li>Slightly extends the background fetch interval</li>
<li>Prevent crashing when removing the last wallet when in Nami mode</li>
</ul>
</>
);

export default ReleaseNote_1_19_2;

0 comments on commit 41fdfbd

Please sign in to comment.