From 4a2da0375bc10b628d3e05e733bc332fc3bdb808 Mon Sep 17 00:00:00 2001 From: Tobiasz Cudnik Date: Fri, 14 Jun 2019 11:39:43 +0200 Subject: [PATCH] - release v1.3.0-beta1 - added CHANGELOG --- CHANGELOG.md | 63 ++++++++++++++++++++++++++++++++++++++++++++ desktop/package.json | 2 +- package.json | 2 +- 3 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b571466 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,63 @@ +# RISE Wallet changelog + +### RISE Wallet 1.3 beta + +- ability to verify the mnemonic in the settings +- import / export of account and contacts +- fixed 1e-9 input in the Send dialog + +### RISE Wallet 1.2 beta 2 + +- switched to the webusb transport for Ledger Nano (fixes #224) +- misc bugfixes + +### RISE Wallet 1.1.3 + +- updated Ledger libs to the newest versions +- added workarounds for the Ledger timeout issue + +### RISE Wallet 1.1 + +- offline support +- connection status icon +- better mobile support (mostly iOS) +- easier installation on mobile and desktop Chrome +- fixes for websocket updates +- bugfixes +- Dutch translation (by multipasser) +- Polish translation (by sexor (minions)) + +### RISE Wallet 1.0.6 + +- fixed the service worker +- fixed the websocket connection +- fixed rounding of amounts +- fixed 2 bugs related to vote transactions +- fixed locking of Ledger Nano +- fixed fullscreen on ios when added to home screen +- archives for reduced size and easier usage on Linux / MacOS +- French translation (superjp) + + +### RISE Wallet 1.0 + +- Desktop versions require Chrome 71 or newer to be installed (stable channel) +- Web version has to be served from an HTTPS web server with the content of the archive available in the root dir +- Windows version opens two windows (one console) +- MacOS and Linux files need executable permissions to be added chmod +x rise-wallet-... + +### RISE Wallet 1.0 beta6 + +- replaced Electron with Carlo +- Node Switcher for custom networks + +### RISE Wallet 1.0 beta5 + +- desktop versions (windows, linux, macos) +- UI fixes for mobile +- many minor UX enhancements +- version number in the footer + +### RISE Wallet 1.0 beta3 + +- initial release diff --git a/desktop/package.json b/desktop/package.json index 07f3b8b..65372ed 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,7 +1,7 @@ { "name": "rise-wallet-desktop", "description": "Rise Wallet", - "version": "1.2.0-beta2", + "version": "1.3.0-beta1", "author": "rise.vision", "engines": { "yarn": "^1.10.1" diff --git a/package.json b/package.json index 5c465a0..15c1e1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rise-wallet", - "version": "1.2.0-beta2", + "version": "1.3.0-beta1", "engines": { "yarn": "^1.10.1" },