Skip to content

Commit

Permalink
Bump v1.8.0 and include first iteration of 1.8.0 release notes (#3878)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlyp committed Jun 9, 2023
1 parent e446972 commit 0f83f5a
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@
background-image: var(--release-image-v170);
}

.image.v180 {
background-image: var(--release-image-v170);

This comment has been minimized.

Copy link
@davecgh

davecgh Jun 9, 2023

Member

180?

}

@media (--bg-viewport) {
.image {
flex: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
28 changes: 28 additions & 0 deletions app/helpers/tickets.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -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"
}
]
}
};
Expand Down
35 changes: 35 additions & 0 deletions app/i18n/docs/en/ReleaseNotes/v1.8.0.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions app/i18n/docs/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Binary file added dex.db.v5.bak
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 0f83f5a

Please sign in to comment.