Skip to content

Commit

Permalink
New instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
igorls committed Jun 13, 2018
1 parent c1dd49a commit 497168e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 27 deletions.
28 changes: 8 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,39 +59,27 @@ Your private keys are stored locally only and are properly encrypted with a user
### Proxy to fetch external data
External informations outside of the blockchain (such as the Block Producer standard) are fetched via a proxy server provided by EOS Rio, to avoid malformed json data and third-party servers misconfigurations.

## Download
- [Windows]()
- [MacOS]()
## Download a pre-compiled build
- [Windows](https://github.com/eosrio/simpleos/releases/download/v0.3.4/simpleos-setup-0.3.4.exe)
- [MacOS]() - coming soon...
- [Linux]()

## Building Instructions
## Build it yourself

#### Windows
[Yarn](http://yarnpkg.com/) is [strongly](https://github.com/electron-userland/electron-builder/issues/1147#issuecomment-276284477) recommended instead of npm.

Setup sources:
```console
git clone https://github.com/eosrio/simpleos.git
cd simpleos
npm install
npm run build:prod
yarn install
yarn run build:prod
```
Create installer:
```
npm install -g @electron-forge/cli
npm install -g @electron-forge/maker-squirrel
electron-forge make
# installer will be available on ./out/make/...
yarn pack
```

For quick preview:
```console
npm run build:prod && npx @electron-forge/cli start
```

#### MacOS

#### Linux

## Legal Disclaimer

By downloading SimplEOS you agree to the [Terms of Service](https://eosrio.io/terms-of-service/).
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion ng-dist/main.js

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"repository": "https://github.com/eosrio/simpleos",
"license": "UNLICENSED",
"version": "0.3.4",
"version": "0.3.5",
"scripts": {
"ng": "ng",
"start": "ng serve --port 7878",
Expand Down Expand Up @@ -38,9 +38,10 @@
},
"linux": {
"target": [
"deb",
"snap"
]
"deb"
],
"icon": "src/assets/icons/png/256x256.png",
"category": "Network"
},
"win": {
"target": [
Expand All @@ -62,6 +63,9 @@
},
"snap": {
"confinement": "classic"
},
"deb": {
"packageCategory": "Network"
}
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion src/app/dashboard/send/send.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export class SendComponent implements OnInit {
this.unstaked = sel.full_balance - sel.staked;
}
});
this.aService.initFirst();
this.filteredContacts = this.sendForm.get('to').valueChanges.pipe(startWith(''), map(value => this.filter(value, false)));
this.searchedContacts = this.searchForm.get('search').valueChanges.pipe(startWith(''), map(value => this.filter(value, true)));
this.addAccountsAsContacts();
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/wallet/wallet.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class WalletComponent implements OnInit, AfterViewInit {

ngAfterViewInit() {
setTimeout(() => {
this.aService.initFirst();
// this.aService.initFirst();
}, 1000);
}

Expand Down
File renamed without changes

0 comments on commit 497168e

Please sign in to comment.