Skip to content

Commit a912680

Browse files
authored
Merge pull request #1300 from nervosnetwork/rc/v0.26.2
[ᚬmaster] Rc/v0.26.2
2 parents ecb939a + 57ff495 commit a912680

File tree

6 files changed

+41
-6
lines changed

6 files changed

+41
-6
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# [0.26.2](https://github.com/nervosnetwork/neuron/compare/v0.26.0...v0.26.2) (2020-01-06)
2+
3+
Happy New Year and welcome to the v0.26.2 release of Neuron!
4+
5+
Note: v0.26.2 is a hotfix release for v0.26.1, which addressed a font rendering issue on Linux and Windows.
6+
7+
### New look and feel
8+
9+
Neuron has a new look and feel that we hope you will like. We're still designing and tweaking many of the UI parts so please stay tuned as there're more to come in future releases.
10+
11+
### Bundled CKB node
12+
13+
CKB v0.26.1 was released on Dec 30th, 2019. This version of CKB node is now bundled and preconfigured in Neuron.
14+
15+
### Nervos DAO
16+
17+
There're many improvements for Nervos DAO feature, some of the key changes include:
18+
19+
* Allow depositing all balance to Nervos DAO. When the user does so, show hint to remind them to reserve some CKB for withdraw operation.
20+
* Added the Current Compensation Period dialog showing explanation of epochs period.
21+
* Label Nervos DAO transactions in recent activities.
22+
23+
### Electron 7
24+
25+
We updated to Electron 7 in this release. Electron 7 added `ipcRenderer.invoke()` and `ipcMain.handle()` for asynchronous request/response-style IPC, which are recommended over the `remote` module. To take advantage of that, we refactored data flow between wallet core and UI layers, replacing `remote` usage with `ipcRenderer.invoke()` and `ipcMain.handle()`.
26+
27+
### Bug fixes
28+
29+
* Fixed a lot of bugs related to block syncing.
30+
* Fixed minor bugs with Nervos DAO feature.
31+
* Fixed an issue that transaction detail window shows blank content.
32+
* Fixed a bug that allows transaction fee price to be set as non-integer number.
33+
34+
35+
136
# [0.26.1](https://github.com/nervosnetwork/neuron/compare/v0.26.0...v0.26.1) (2020-01-06)
237

338
Happy New Year and welcome to the v0.26.1 release of Neuron!

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.26.1",
5+
"version": "0.26.2",
66
"npmClient": "yarn",
77
"useWorkspaces": true
88
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "neuron",
33
"productName": "Neuron",
44
"description": "CKB Neuron Wallet",
5-
"version": "0.26.1",
5+
"version": "0.26.2",
66
"private": true,
77
"author": {
88
"name": "Nervos Core Dev",

packages/neuron-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neuron-ui",
3-
"version": "0.26.1",
3+
"version": "0.26.2",
44
"private": true,
55
"author": {
66
"name": "Nervos Core Dev",

packages/neuron-wallet/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"productName": "Neuron",
44
"description": "CKB Neuron Wallet",
55
"homepage": "https://www.nervos.org/",
6-
"version": "0.26.1",
6+
"version": "0.26.2",
77
"private": true,
88
"author": {
99
"name": "Nervos Core Dev",
@@ -69,7 +69,7 @@
6969
"electron-devtools-installer": "2.2.4",
7070
"electron-notarize": "0.2.1",
7171
"lint-staged": "9.2.5",
72-
"neuron-ui": "0.26.1",
72+
"neuron-ui": "0.26.2",
7373
"rimraf": "3.0.0",
7474
"spectron": "9.0.0",
7575
"ts-transformer-imports": "0.4.3",

scripts/release-checksums.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
linux_appimage = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-x86_64.AppImage"
1313

1414
def get_sha256_checksum(url)
15-
content = open(url).read
15+
content = URI.open(url).read
1616
Digest::SHA256.hexdigest(content)
1717
end
1818

0 commit comments

Comments
 (0)