diff --git a/changelog.md b/changelog.md index 8fd0584c..39f4e15a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,28 @@ -# The Big Upgrade +# Patch 1 +A patch for MPW v2.0, primarily resolving stability, performance and minor UX issues. + +# Improvements +- Persistant Wallet Mode. +- Shield sync is visually smoother. +- Shield sync is persisted better between restarts. +- Shield now syncs faster, via Nodes. +- Added notification stacking (no more spam!). +- Automatic Node switching. +- Added Duddino2 Node & Explorer. +- Faster TXDB initialisation. + +# Removals +- Legacy DB migration system. + +# Bug Fixes +- Fixed missed Sapling Root validation. +- Fixed issues with persisted unconfirmed Txs. +- Fixed a case in which Txs load in an incorrect order. +- Fixed Total Rewards counter. +- Fixed 'Max' button not updating currency. +- Fixed old v1.0 branding remnant. + +# v2.0 - Major Update This is the largest MPW upgrade since Shield; containing an incredible array of improvements and polish, with the aim of bringing MPW to a professional wallet standard, welcome to v2.0. There are over 15k line changes in v2.0, this changelog will only show a small subset of notable changes, for more, head to GitHub. diff --git a/package-lock.json b/package-lock.json index 24341f4e..4b05c285 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mypivxwallet", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mypivxwallet", - "version": "2.0.0", + "version": "2.0.1", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 547b11ae..784e0ac3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mypivxwallet", - "version": "2.0.0", + "version": "2.0.1", "description": "Wallet for PIVX", "main": "scripts/index.js", "type": "module", diff --git a/scripts/changelog.js b/scripts/changelog.js index 3681e5c8..07538e13 100644 --- a/scripts/changelog.js +++ b/scripts/changelog.js @@ -56,7 +56,7 @@ export function renderChangelog() { break; default: // If no element was recognised, it's just a plaintext line - strHTML += `

${sanitizeHTML(type + line)}

`; + strHTML += `

${sanitizeHTML(rawLine)}

`; break; } }