diff --git a/README.md b/README.md
index bcf05541..410034fc 100644
--- a/README.md
+++ b/README.md
@@ -5,81 +5,111 @@
:warning: Disclaimer: this project is under active development. Use at your own risks.
-## Installation
+
-#### Requirements
+> Ledger Live Desktop is a new generation Ledger Wallet application build with React, Redux and Electron to run natively on the web. The main goal of the app is to provide our users with a single wallet for all crypto currencies supported by our devices. To learn more check out [Ledger](https://www.ledgerwallet.com/?utm_source=redirection&utm_medium=variable)
-Project has been tested with
+## Architecture
-- [NodeJS](https://nodejs.org) v9.3.0
-- [Yarn](https://yarnpkg.com) v1.3.0
+From one side Ledger Desktop app connected to the Blockchain via the in-house written C++ library - LibCore and from the other it communicates to the Ledger Hardware Device to securely sign all transactions.
+
+
+
+
+
+## Setup
+
+### Requirements
+
+- [NodeJS](https://nodejs.org) LTS
+- [Yarn](https://yarnpkg.com) LTS
- [Python](https://www.python.org/) v2.7.10 (used by [node-gyp](https://github.com/nodejs/node-gyp) to build native addons)
- You will also need a C++ compiler
-#### Optional
+### Optional
+
+- In the application we use `Museo Sans` font. To include it in the app, you need to have a zip file `museosans.zip` which you should extract and place inside the `static/fonts/museosans` directory
-- `Museo Sans` font - for Ledger guys, [follow that link](https://drive.google.com/drive/folders/14R6kGFtx53DuqTyIOjnT7BGogzeyMSzN), download `museosans.zip` and extract it inside the `static/fonts/museosans` directory
+## Install
-#### Setup
+1. Clone or fork the repo
-1. Install dependencies
+```bash
+git clone git@github.com:LedgerHQ/ledger-live-desktop.git
+```
+
+2. Install dependencies
```bash
yarn
```
-2. Create `.env` file
+## Run
+
+Launch the app
```bash
-# ENV VARIABLES
-# -------------
+yarn start
+```
-# Where errors will be tracked (you may not want to edit this line)
-# SENTRY_URL=
+## Build
-# OPTIONAL ENV VARIABLES
-# ----------------------
+```bash
+# Build & package the whole app
+# Creates a .dmg for Mac, .exe installer for Windows, or .AppImage for Linux
+# Output files will be created in dist/ folder
+yarn dist
+```
-# API base url, fallback to our API if not set
-API_BASE_URL=http://...
+**Note:** Use `yarn dist:dir` to speed up the process: it will skip the packaging step. Handy for debugging builds. You can also use `BUNDLE_ANALYZER=1 yarn dist:dir` to generate [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) report.
-# Setup device debug mode
-DEBUG_DEVICE=0
+---
-# Developer tools position (used only in dev)
-# can be one of: right, bottom, undocked, detach
-DEV_TOOLS_MODE=bottom
+## Config (optional helpers)
-# Filter debug output
-DEBUG=lwd*,-lwd:syncb
+### Create a .env file
-# hide the dev window
-HIDE_DEV_WINDOW=0
+```bash
+SENTRY_URL=... # Edit this line if you want to send errors to your sentry account
+
+API_BASE_URL=http://... # API base url, fallback to our API if not set
+
+DEBUG_DEVICE=0 # Setup device debug mode
+
+DEV_TOOLS_MODE=bottom # Developer tools position (used only in dev). Options: right, bottom, undocked, detach
+
+DEBUG=lwd*,-lwd:syncb # Filter debug output
+
+HIDE_DEV_WINDOW=0 # hide the dev window
+
+SKIP_ONBOARDING=1 # To skip the onboarding
```
-#### Development commands
+### Launch storybook
```bash
-# Launch the app
-yarn start
-
-# Launch the storybook
yarn storybook
+```
-# Code quality checks
+### Run code quality checks
+
+```bash
yarn lint # launch eslint
yarn prettier # launch prettier
yarn flow # launch flow
yarn test # launch unit tests
```
-#### Building from source
+### Programmaically reset hard the app
+
+Stop the app and to clean accounts, settings, etc, run
```bash
-# Build & package the whole app
-# Creates a .dmg for Mac, .exe installer for Windows, or .AppImage for Linux
-# Output files will be created in dist/ folder
-yarn dist
+rm -rf ~/Library/Application\ Support/Electron/
```
-**Note:** Use `yarn dist:dir` to speed up the process: it will skip the packaging step. Handy for debugging builds. You can also use `BUNDLE_ANALYZER=1 yarn dist:dir` to generate [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) report.
+## Additional Info on tools used in the app
+
+- Sentry - error-tracking software, [learn more](https://sentry.io/welcome/)
+- Storybook - UI development environment, [learn more](https://storybook.js.org/)
+- U2F - We use a custom transport encapsulation to pass instructions to the hardware device with U2F protocol. [Learn more about U2F](https://en.wikipedia.org/wiki/Universal_2nd_Factor)
diff --git a/src/components/modals/AccountSettingRenderBody.js b/src/components/modals/AccountSettingRenderBody.js
index 8e02f6b0..510613d2 100644
--- a/src/components/modals/AccountSettingRenderBody.js
+++ b/src/components/modals/AccountSettingRenderBody.js
@@ -92,9 +92,14 @@ class HelperComp extends PureComponent {
const { updateAccount, setDataModal } = this.props
const { accountName, accountUnit } = this.state
+ const sanitizedAccountName = accountName ? accountName.replace(/\s+/g, ' ').trim() : null
- if (accountName !== '') {
- account = { ...account, unit: accountUnit || account.unit }
+ if (account.name || sanitizedAccountName) {
+ account = {
+ ...account,
+ unit: accountUnit || account.unit,
+ name: sanitizedAccountName || account.name,
+ }
updateAccount(account)
setDataModal(MODAL_SETTINGS_ACCOUNT, { account })
onClose()
diff --git a/static/docs/architecture.jpg b/static/docs/architecture.jpg
new file mode 100644
index 00000000..8046a9e4
Binary files /dev/null and b/static/docs/architecture.jpg differ
diff --git a/static/docs/ledgerLogo.png b/static/docs/ledgerLogo.png
new file mode 100644
index 00000000..2a45816b
Binary files /dev/null and b/static/docs/ledgerLogo.png differ