From 0f83f5a1fd4d5bc9fdcea687da83cabb72874dbe Mon Sep 17 00:00:00 2001 From: Alex Yocom-Piatt Date: Fri, 9 Jun 2023 16:09:13 -0500 Subject: [PATCH] Bump v1.8.0 and include first iteration of 1.8.0 release notes (#3878) --- .../ReleaseNotes/Form/Form.module.css | 4 ++ .../ReleaseNotes/ReleaseNotes.jsx | 5 +++ app/helpers/tickets.js | 28 ++++++++++++++ app/i18n/docs/en/ReleaseNotes/v1.8.0.md | 35 ++++++++++++++++++ app/i18n/docs/en/index.js | 1 + app/package.json | 2 +- dex.db.v5.bak | Bin 0 -> 45056 bytes package.json | 2 +- 8 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 app/i18n/docs/en/ReleaseNotes/v1.8.0.md create mode 100644 dex.db.v5.bak diff --git a/app/components/views/GetStartedPage/ReleaseNotes/Form/Form.module.css b/app/components/views/GetStartedPage/ReleaseNotes/Form/Form.module.css index cef1a5e59a..e548c59e8a 100644 --- a/app/components/views/GetStartedPage/ReleaseNotes/Form/Form.module.css +++ b/app/components/views/GetStartedPage/ReleaseNotes/Form/Form.module.css @@ -84,6 +84,10 @@ background-image: var(--release-image-v170); } +.image.v180 { + background-image: var(--release-image-v170); +} + @media (--bg-viewport) { .image { flex: 1; diff --git a/app/components/views/GetStartedPage/ReleaseNotes/ReleaseNotes.jsx b/app/components/views/GetStartedPage/ReleaseNotes/ReleaseNotes.jsx index 57c33b7a4a..5cac13d989 100644 --- a/app/components/views/GetStartedPage/ReleaseNotes/ReleaseNotes.jsx +++ b/app/components/views/GetStartedPage/ReleaseNotes/ReleaseNotes.jsx @@ -3,6 +3,11 @@ import ReleaseNotesForm from "./Form"; // versions with release notes available. From newer to older. const availableVersions = [ + { + version: "1.8.0", + docName: "ReleaseNote1_8_0", + imgClassName: "v180" + }, { version: "1.7.0", docName: "ReleaseNote1_7_0", diff --git a/app/helpers/tickets.js b/app/helpers/tickets.js index 87e90bc0b4..b225a7e88d 100644 --- a/app/helpers/tickets.js +++ b/app/helpers/tickets.js @@ -114,6 +114,20 @@ export function decodeVoteScript(network, outputScript) { choices: { 0x80: "no", 0x100: "yes" }, defaultChoice: "abstain" } + ], + 11: [ + { + mask: 0x0006, + name: "blake3pow", + choices: { 0x0002: "no", 0x0004: "yes" }, + defaultChoice: "abstain" + }, + { + mask: 0x0060, + name: "changesubsidysplitr2", + choices: { 0x0020: "no", 0x0040: "yes" }, + defaultChoice: "abstain" + } ] }, mainnet: { @@ -188,6 +202,20 @@ export function decodeVoteScript(network, outputScript) { choices: { 0x80: "no", 0x100: "yes" }, defaultChoice: "abstain" } + ], + 10: [ + { + mask: 0x0006, + name: "blake3pow", + choices: { 0x0002: "no", 0x0004: "yes" }, + defaultChoice: "abstain" + }, + { + mask: 0x0060, + name: "changesubsidysplitr2", + choices: { 0x0020: "no", 0x0040: "yes" }, + defaultChoice: "abstain" + } ] } }; diff --git a/app/i18n/docs/en/ReleaseNotes/v1.8.0.md b/app/i18n/docs/en/ReleaseNotes/v1.8.0.md new file mode 100644 index 0000000000..c050a14907 --- /dev/null +++ b/app/i18n/docs/en/ReleaseNotes/v1.8.0.md @@ -0,0 +1,35 @@ +This release of Decrediton includes numerous bug fixes and refinement across +all pages/tabs. + +* All pages have had layouts and styling updated to match redesign specs. There + are a few more pages that will receive design updates. Trezor pages + were recently updated and Ledger integration is currently on schedule and + should be included in an upcoming release in the near future. + +* DCRDEX is now at 0.6.1 and has included numerous improvements, as well as new + assets to be able to trade. There are more exciting updates in the future + for DCRDEX as laid out in the recently approved [proposal](https://proposals.decred.org/record/4d2324b). + +* Test coverage has also increased to cover most of the front-end areas. + Hopefully, in a few more releases we'll have the entirity of Decrediton + covered with unit tests that should protect us from most regression errors. + +* The ability to vote on all treasury spending is now active. This can be + done by approving/dis-approving all treasury spending or spending can be voted + on per transaction. + +* Legacy tickets and references to stakepool have been completely removed from + the codebase. + + +## Code Contributors (alphabetical order) + +* Alex Yocom-Piatt +* Amir Massarwa +* artikozel +* bgptr +* Joe Gruffins +* Jonathan Chappelow +* Jonathan Zeppettini +* Matheus Degiovani +* tiagoalvesdulce diff --git a/app/i18n/docs/en/index.js b/app/i18n/docs/en/index.js index 674ab06ac2..d203c295dd 100644 --- a/app/i18n/docs/en/index.js +++ b/app/i18n/docs/en/index.js @@ -32,6 +32,7 @@ export { default as ReleaseNote1_4_0 } from "./ReleaseNotes/v1.4.0.md"; export { default as ReleaseNote1_5_0 } from "./ReleaseNotes/v1.5.0.md"; export { default as ReleaseNote1_6_0 } from "./ReleaseNotes/v1.6.0.md"; export { default as ReleaseNote1_7_0 } from "./ReleaseNotes/v1.7.0.md"; +export { default as ReleaseNote1_8_0 } from "./ReleaseNotes/v1.8.0.md"; export { default as StakingTutorialPage01 } from "./StakingTutorial/Page01.md"; export { default as StakingTutorialPage02 } from "./StakingTutorial/Page02.md"; diff --git a/app/package.json b/app/package.json index 23c850a976..05bc7d3b3f 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "decrediton", "productName": "Decrediton", - "version": "1.7.1", + "version": "1.8.0", "description": "Graphical wallet for Decred supporting staking, privacy, and decentralized exchange.", "main": "./main.js", "author": { diff --git a/dex.db.v5.bak b/dex.db.v5.bak new file mode 100644 index 0000000000000000000000000000000000000000..1a8ff1c378021a60904f3c74a0e5e725b0786dfa GIT binary patch literal 45056 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 v38?

i?_%z3=_|0FJK(77zdeKmZ5;0U!VbfB+Bx0zd!=00AKIX(I41%_%<3 literal 0 HcmV?d00001 diff --git a/package.json b/package.json index 781ceb3672..bf2d405d50 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "decrediton", "productName": "Decrediton", - "version": "1.7.1", + "version": "1.8.0", "description": "Decrediton based on React, React Router, Webpack, React Hot Loader for rapid application development", "main": "main.js", "scripts": {