Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# 0.103.1 (2022-06-11)

### New features
* #2375: Adapt new testnet URL(@yanguoyu)
* #2400: Support send acp/sudt to any address.(@yanguoyu)
* #2406: Refine export tx(@yanguoyu)
* #2408: add address format toggle in receive tabs(@Keith-CY)


### Bug fixes
* #2344: Delete unnecessary conditions. Retry should await.(@yanguoyu)
* #2390: Fix unmatched cheque lockHash(@yanguoyu)
* #2405: Remove covering above `update` button(@yanguoyu)
* #2409: Remove scroll(@yanguoyu)
* #2410: style of release note(@Keith-CY)


### Refactor
* #2368: Use blake160 replace addresse. Rename 'multi-sign' to 'multisig'(@yanguoyu)
* #2373, #2412: improve neuron-ui typescript, tests, deps and bundle(@qiweiii)


**Full Changelog**: https://github.com/nervosnetwork/neuron/compare/v0.103.0...v0.103.1



# 0.103.0 (2022-05-10)

### Hardfork
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.103.0",
"version": "0.103.1",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/neuron-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neuron-ui",
"version": "0.103.0",
"version": "0.103.1",
"private": true,
"author": {
"name": "Nervos Core Dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@
"extra-ckb-send-to-unknow": {
"label": "Receive address has an unknown lock script, please make sure receiver knowns how to handle it, and extra {{extraCKB}} CKBytes will be sent along with {{assetName}} to hold the asset"
},
"select-option": "Please select option"
"select-option": "Please confirm the above option before submitting"
},
"receive": {
"notation": "Accept {{symbol}} only"
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/locales/zh-tw.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@
"extra-ckb-send-to-unknow": {
"label": "收款地址包含未知 Lock Script, 請確保接收者知道如何處理該資產, 額外 {{extraCKB}} CKBytes 將與 {{assetName}} 壹同發給收款方用於維持資產"
},
"select-option": "請選擇對應的選項"
"select-option": "提交前請確認上述選項"
},
"receive": {
"notation": "只接收 {{symbol}} 轉賬"
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@
"extra-ckb-send-to-unknow": {
"label": "收款地址包含未知 Lock Script, 请确保接收者知道如何处理该资产, 额外 {{extraCKB}} CKBytes 将与 {{assetName}} 一同发给收款方用于维持资产"
},
"select-option": "请选择对应的选项"
"select-option": "提交前请确认上述选项"
},
"receive": {
"notation": "只接收 {{symbol}} 转账"
Expand Down
4 changes: 2 additions & 2 deletions packages/neuron-wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "Neuron",
"description": "CKB Neuron Wallet",
"homepage": "https://www.nervos.org/",
"version": "0.103.0",
"version": "0.103.1",
"private": true,
"author": {
"name": "Nervos Core Dev",
Expand Down Expand Up @@ -91,7 +91,7 @@
"eslint-plugin-prettier": "3.1.1",
"jest-when": "2.7.2",
"lint-staged": "9.2.5",
"neuron-ui": "0.103.0",
"neuron-ui": "0.103.1",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"ttypescript": "1.5.10",
Expand Down
1 change: 0 additions & 1 deletion scripts/release-checksums.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
require "digest"

tag = ARGV[0]
puts "Generating release checksums for #{tag}, this could take a while..."

windows_exe = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-setup.exe"
macos_zip = "https://github.com/nervosnetwork/neuron/releases/download/#{tag}/Neuron-#{tag}-mac.zip"
Expand Down