Skip to content

Commit

Permalink
1.3.0 (#18)
Browse files Browse the repository at this point in the history
* Changed KDF to Scrypt
* Improved input validation
* External Electron links now opens in browser
* Improved test coverage
* Stronger passwords being enforced
* Trustless KT-address import
  • Loading branch information
klassare authored and Dee297 committed Jan 20, 2019
1 parent 0963a72 commit 8336a49
Show file tree
Hide file tree
Showing 80 changed files with 7,765 additions and 5,023 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,11 @@ Package for deployment:
Run during development:

`ng serve --open`

## Troubleshooting
Wallet needs Node v10 and has been built with Angular 5.2.5 and Angular Cli 1.6.8
1) Download and install LTS version https://nodejs.org/en/
2) Upgrade npm: `npm install -g npm`
3) To have a global installation for Angular Cli use the following commands: `npm i -g @angular/[email protected]`
4) Rebuild node-sass: `npm rebuild node-sass`
5) Modify `crypto` from `crypto: 'empty'` to `crypto: true` in \node_modules\@angular\cli\models\webpack-configs\browser.js - line 104
7 changes: 4 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ module.exports = function (config) {
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular/cli/plugins/karma')
require('@angular/cli/plugins/karma'),
require('karma-mocha-reporter')
],
client:{
clearContext: false // leave Jasmine Spec Runner output visible in browser
Expand All @@ -23,12 +24,12 @@ module.exports = function (config) {
angularCli: {
environment: 'dev'
},
reporters: ['progress', 'kjhtml'],
reporters: ['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ['ChromeHeadless'],
singleRun: false
});
};
Loading

0 comments on commit 8336a49

Please sign in to comment.