Skip to content

Commit

Permalink
Package updates:
Browse files Browse the repository at this point in the history
* Remove unused dependencies
* Update dependencies; notably electron@5, electron-builder@22, [email protected]
* Move to two package.json structure for electron-builder
* Add patch-package and patches for ripemd160 support in electron 5
* Switch from squirrel to NSIS Windows installer
  • Loading branch information
cronicc committed Apr 16, 2020
1 parent 1a9cde2 commit 6ac7127
Show file tree
Hide file tree
Showing 9 changed files with 7,038 additions and 35 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@
[![Code Climate][codeclimate-img]][codeclimate-url]

# User Manuals
- v1.2.4: [Arizen v1.2.4 Wallet User Manual](https://horizenofficial.atlassian.net/wiki/spaces/ZEN/pages/665354259/Arizen+User+Manual)
- v1.2.5: [Arizen v1.2.4 Wallet User Manual](https://horizenofficial.atlassian.net/wiki/spaces/ZEN/pages/665354259/Arizen+User+Manual)

# Version History

## v1.2.5
- [x] Update of dependencies, removal of unused dependencies
- [x] Switch to NSIS Windows installer
- [x] Code Signed releases
- [x] Fix for incorrect fiat price info

## v1.2.4
- [x] Fix for OP_RETURN vout causing balance updates to fail
- [x] Package updates based on results of yarn audit
Expand Down
1 change: 0 additions & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ typings/


.idea/
package-lock.json
.DS_Store


Expand Down
2 changes: 1 addition & 1 deletion app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ function updateMenuAtLogout() {

function createWindow() {
updateMenuAtLogout();
mainWindow = new BrowserWindow({width: 1010, height: 730, resizable: true, icon: "resources/zen_icon.png"});
mainWindow = new BrowserWindow({width: 1010, height: 730, resizable: true, icon: "resources/zen_icon.png", webPreferences: {nodeIntegration: true}});

// mainWindow.webContents.openDevTools();

Expand Down
Loading

0 comments on commit 6ac7127

Please sign in to comment.