From cef3187598a4412d3f401958e8603318281f84e3 Mon Sep 17 00:00:00 2001 From: ConFI <59952071+ConfluxBot@users.noreply.github.com> Date: Fri, 27 Mar 2020 18:44:26 +0800 Subject: [PATCH] Version v0.1.0 RC (#64) * Sync Version v0.0.9 RC (#58) from master (#60) * Version v0.0.8 (#49) Co-authored-by: yqrashawn * Fix: changelog.md (#50) * Fix e2e tests (#56) * Add: arrow-parens eslint rule * Attempt ENS resolution on any valid domain name (#8059) ENS currently supports a variety of tlds in addition to `.eth`, and more will be supported in the future. Rather than hard-code a list of supported ENS tlds, all valid domain names will now be interpreted as potential ENS addresses in our address input component. Closes #7978 * Remove unused sinon sandboxes (#8063) These sandboxes were created, then not utilized at all. * Enable core ESLint no-mixed-operators rule * Update redux-related dependencies (#8068) * Add optional chaining (#8052) * Add plugin-proposal-optional-chaining * Use optional chaining to provide error fallback * Remove redux-test-utils dependency (#8070) * Remove usages of redux-test-utils * Remove redux-test-utils dependency * Use react-redux@7.2.0 (#8069) * Implementation encrypt/decrypt feature (#7831) Implement `eth_decrypt` and `eth_getEncryptionPublicKey`. This allows decryption backed by the user's private key. The message decryption uses a confirmation flow similar to the messaging signing flow, where the message to be decrypted is also able to be decrypted inline for the user to read directly before confirming. * Fix: handle getCode error * Fix: e2e WIP * Add: tmp for dev * Fix: getCode error * Fix: remove max gas limit * Add: use new version of conflux-local-network-lite * Fix: raise gas for create token contract * Fix: hide edit button when use advanced gas inputs only * Fix: more e2e fix WIP * Fix: hide more currency * Fix: more e2e * Fix: lint * Fix: second e2e test * Fix: responsive ui e2e test * Fix: rest e2e test * Fix: lint * Fix: more delay to get the right gas limit * Fix: respect max gas limit, set nonce in estimate gas params * Fix: more gas * Fix: lint * Fix: estimate gas, disable infura controller * Fix: remove debugger * Fix: modal block clickable element * Fix: e2e, locate reject button * Fix: disable ens resolution * Fix: e2e confirm and reject together * Fix: tiny deplay before input state check * Fix: sentry url * Fix: getCode cb error * Fix: currency input remove onblur * Fix: lint, remove currency input onBlur code * Add: e2e test back to all test pass Co-authored-by: Mark Stacey Co-authored-by: Whymarrh Whitby Co-authored-by: ricky Co-authored-by: Konstantin * Add rlp to support new version of testnet (#57) * Add: new version of local lite * Add: missing svg file * Add: use new version of testnet * Fix: e2e test * Version v0.0.9 Co-authored-by: yqrashawn Co-authored-by: Mark Stacey Co-authored-by: Whymarrh Whitby Co-authored-by: ricky Co-authored-by: Konstantin Co-authored-by: Conflux Bot Co-authored-by: Conflux Bot <59952071+ConfluxBot@users.noreply.github.com> Co-authored-by: Mark Stacey Co-authored-by: Whymarrh Whitby Co-authored-by: ricky Co-authored-by: Konstantin Co-authored-by: Conflux Bot * new sign logic (#62) * Add: sign logic * Add: disable eth-contract-registry * Fix: e2e test * Change logo, mail, faq, tos links (#63) * Add: logo change * Add: use static image instead of 3d model * Add: remove ens description * Add: hide conversion rate ui * Add: hide some help link * Add: change support mail address, ConfluxPortal -> Conflux Portal * Fix: lint * Add: change mail tos policy link * Add: changelog * Version v0.1.0 Co-authored-by: yqrashawn Co-authored-by: Mark Stacey Co-authored-by: Whymarrh Whitby Co-authored-by: ricky Co-authored-by: Konstantin Co-authored-by: Conflux Bot --- CHANGELOG.md | 9 ++++++++ app/manifest.json | 40 +++++++++++++++++++++++++++-------- development/auto-changelog.sh | 2 +- 3 files changed, 41 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88f425101e80..009c842cd700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ ## Current Develop Branch +## 0.1.0 Fri Mar 27 2020 +- Sync Version v0.0.9 RC (#58) from master (#60) +- new sign logic (#62) +- Change logo, mail, faq, tos links (#63) + ## 0.0.9 Thu Mar 12 2020 +- Version v0.0.8 (#49) +- Fix: changelog.md (#50) +- Fix e2e tests (#56) +- Add rlp to support new version of testnet (#57) ## 0.0.8 Tue Feb 20 2020 - update/cleanup packages (#46) diff --git a/app/manifest.json b/app/manifest.json index de00bf4599cb..c6da615363bd 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_appName__", "short_name": "__MSG_appName__", - "version": "0.0.9", + "version": "0.1.0", "manifest_version": 2, "author": "https://conflux-chain.org", "description": "__MSG_appDescription__", @@ -32,7 +32,11 @@ }, "default_locale": "en", "background": { - "scripts": ["chromereload.js", "bg-libs.js", "background.js"], + "scripts": [ + "chromereload.js", + "bg-libs.js", + "background.js" + ], "persistent": true }, "browser_action": { @@ -50,14 +54,24 @@ }, "content_scripts": [ { - "matches": ["file://*/*", "http://*/*", "https://*/*"], - "js": ["contentscript.js"], + "matches": [ + "file://*/*", + "http://*/*", + "https://*/*" + ], + "js": [ + "contentscript.js" + ], "run_at": "document_start", "all_frames": true }, { - "matches": ["*://connect.trezor.io/*/popup.html"], - "js": ["vendor/trezor/content-script.js"] + "matches": [ + "*://connect.trezor.io/*/popup.html" + ], + "js": [ + "vendor/trezor/content-script.js" + ] } ], "permissions": [ @@ -72,9 +86,17 @@ "*://*.eth/", "notifications" ], - "web_accessible_resources": ["inpage.js", "phishing.html"], + "web_accessible_resources": [ + "inpage.js", + "phishing.html" + ], "externally_connectable": { - "matches": ["https://metamask.io/*", "https://conflux-chain.org/*"], - "ids": ["*"] + "matches": [ + "https://metamask.io/*", + "https://conflux-chain.org/*" + ], + "ids": [ + "*" + ] } } diff --git a/development/auto-changelog.sh b/development/auto-changelog.sh index e49328f56f22..e682ff18b734 100755 --- a/development/auto-changelog.sh +++ b/development/auto-changelog.sh @@ -8,7 +8,7 @@ set -o pipefail git fetch --tags -most_recent_tag="$(git describe --tags "$(git rev-list --tags --max-count=1)")" +most_recent_tag="$(git describe --tags "$(git rev-list --tags='v0.*.*' --max-count=1)")" git rev-list "${most_recent_tag}"..HEAD | while read -r commit do