-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #745 from nervosnetwork/rc/v0.16.0-alpha.1
[ᚬmaster] Rc/v0.16.0 alpha.1
- Loading branch information
Showing
88 changed files
with
1,518 additions
and
1,510 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# [0.16.0-alpha.1](https://github.com/nervosnetwork/neuron/compare/v0.16.0-alpha.0...v0.16.0-alpha.1) (2019-07-26) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **neuron-wallet:** check min capacity ([ad77232](https://github.com/nervosnetwork/neuron/commit/ad77232)) | ||
|
||
|
||
### Features | ||
|
||
* Trigger auto update on app launch ([a2ad858](https://github.com/nervosnetwork/neuron/commit/a2ad858)) | ||
* **neuron-ui:** call generate mnemonic method from neuron-wallet in neuron-ui with remote module ([5a27c7b](https://github.com/nervosnetwork/neuron/commit/5a27c7b)) | ||
* **neuron-ui:** call networks controller's methods by remote module ([c4bc431](https://github.com/nervosnetwork/neuron/commit/c4bc431)) | ||
* **neuron-ui:** call transactions controller methods with remote module ([4751817](https://github.com/nervosnetwork/neuron/commit/4751817)) | ||
* **neuron-ui:** remove UILayer ([f2f3145](https://github.com/nervosnetwork/neuron/commit/f2f3145)) | ||
* **neuron-ui:** subscribe current network id from neuron-wallet in neuron-ui ([1173622](https://github.com/nervosnetwork/neuron/commit/1173622)) | ||
* **package:** Rename package task to release, publish to GitHub ([e3d473e](https://github.com/nervosnetwork/neuron/commit/e3d473e)) | ||
* call methods of app controller with remote module ([cdc93a0](https://github.com/nervosnetwork/neuron/commit/cdc93a0)) | ||
* subscribe network list from neuron-wallet in neuron-ui ([b56ae1c](https://github.com/nervosnetwork/neuron/commit/b56ae1c)) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,17 @@ | |
"name": "@nervosnetwork/neuron", | ||
"productName": "Neuron", | ||
"description": "CKB Neuron Wallet", | ||
"version": "0.16.0-alpha.0", | ||
"version": "0.16.0-alpha.1", | ||
"private": true, | ||
"author": { | ||
"name": "Nervos Core Dev", | ||
"email": "[email protected]", | ||
"url": "https://github.com/nervosnetwork/neuron" | ||
}, | ||
"repository": { | ||
"type" : "git", | ||
"url" : "https://github.com/nervosnetwork/neuron" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 12.0", | ||
|
@@ -25,7 +29,7 @@ | |
"clean": "lerna run --stream clean", | ||
"prebuild": "yarn clean", | ||
"build": "lerna run --stream build", | ||
"package": "yarn build && ./scripts/copy-ui-files.sh && ./scripts/package.sh", | ||
"release": "yarn build && ./scripts/copy-ui-files.sh && ./scripts/release.sh", | ||
"test": "lerna run --parallel test", | ||
"test:e2e": "yarn build && ./scripts/copy-ui-files.sh && lerna run --parallel test:e2e", | ||
"lint": "lerna run --stream lint", | ||
|
@@ -45,7 +49,6 @@ | |
"@typescript-eslint/parser": "1.10.2", | ||
"concurrently": "4.1.1", | ||
"cross-env": "5.2.0", | ||
"cz-conventional-changelog": "2.1.0", | ||
"eslint": "5.16.0", | ||
"eslint-config-airbnb": "17.1.0", | ||
"eslint-config-prettier": "4.3.0", | ||
|
@@ -62,10 +65,5 @@ | |
"typescript": "3.5.3", | ||
"wait-on": "3.3.0" | ||
}, | ||
"dependencies": {}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
} | ||
"dependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
{ | ||
"name": "@nervosnetwork/neuron-ui", | ||
"version": "0.16.0-alpha.0", | ||
"version": "0.16.0-alpha.1", | ||
"private": true, | ||
"author": { | ||
"name": "Nervos Core Dev", | ||
"email": "[email protected]", | ||
"url": "https://github.com/nervosnetwork/neuron" | ||
}, | ||
"repository": { | ||
"type" : "git", | ||
"url" : "https://github.com/nervosnetwork/neuron" | ||
}, | ||
"homepage": "./", | ||
"main": "./build", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.