From 4183828fa7b34d0e0a80ed8def2cc691229dca29 Mon Sep 17 00:00:00 2001 From: JSKitty Date: Sat, 26 Oct 2024 17:00:39 +0100 Subject: [PATCH] v2.0.1 finalised (#419) * v2.0.1 version bump + changelog * Skip plaintext line trimming This accidentally trimmed one-letter line starts, i.e: "A patch" was trimmed to "Apatch". * Add missing Rewards Counter fix to changelog * Add automatic node switching to Changelog * Update changelog --------- Co-authored-by: Alessandro Rezzi --- changelog.md | 26 +++++++++++++++++++++++++- package-lock.json | 4 ++-- package.json | 2 +- scripts/changelog.js | 2 +- 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/changelog.md b/changelog.md index 8fd0584c4..39f4e15a1 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 24341f4ef..4b05c285f 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 547b11aea..784e0ac33 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 3681e5c8b..07538e13b 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; } }