Skip to content

Commit

Permalink
v2.0.1 finalised (#419)
Browse files Browse the repository at this point in the history
* 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 <alessandrorezzi2000@gmail.com>
  • Loading branch information
JSKitty and panleone authored Oct 26, 2024
1 parent c536245 commit 4183828
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
26 changes: 25 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mypivxwallet",
"version": "2.0.0",
"version": "2.0.1",
"description": "Wallet for PIVX",
"main": "scripts/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion scripts/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function renderChangelog() {
break;
default:
// If no element was recognised, it's just a plaintext line
strHTML += `<p>${sanitizeHTML(type + line)}</p>`;
strHTML += `<p>${sanitizeHTML(rawLine)}</p>`;
break;
}
}
Expand Down

0 comments on commit 4183828

Please sign in to comment.