Skip to content

Commit

Permalink
Merge pull request #497 from jplomas/master
Browse files Browse the repository at this point in the history
Add support for QRL node v2.1.2
  • Loading branch information
jplomas authored Aug 19, 2021
2 parents 4fca669 + fee95a4 commit 66cb3e7
Show file tree
Hide file tree
Showing 10 changed files with 15,194 additions and 8,099 deletions.
2 changes: 1 addition & 1 deletion .electrify/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ app.on('ready', function() {
if (process.platform === 'darwin') {
app.setAboutPanelOptions({
applicationName: "QRL Wallet",
applicationVersion: "1.7.1",
applicationVersion: "1.7.2",
version: "Electron 10.1.7",
copyright: "Die QRL Stiftung, Zug Switzerland",
credits: "The QRL Developers"
Expand Down
2 changes: 1 addition & 1 deletion .electrify/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .electrify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "QRLWallet",
"productName": "QRLWallet",
"projectName": "qrl-wallet",
"version": "1.7.1",
"version": "1.7.2",
"main": "index.js",
"dependencies": {
"@theqrl/electrify-qrl": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.14.0
v12.22.1
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ All secure XMSS operations are run in a web assembly compiled version of [qrllib

The following dependencies are required for a functional local development environment.

[NodeJS](https://nodejs.org/en/) v12.14.x
[NodeJS](https://nodejs.org/en/) v12

We recommend using nvm to manage NodeJS versions.
We recommend using nvm to manage NodeJS versions and using the version of NodeJS as specified in the .nvmrc file

[Meteor](https://www.meteor.com/install)

Expand All @@ -30,6 +30,9 @@ We recommend using nvm to manage NodeJS versions.

npm install -g node-gyp

Linux only: libudev-dev
sudo apt-get install libudev-dev

Mac only: create-dmg

npm install --global create-dmg
Expand Down
16 changes: 15 additions & 1 deletion imports/startup/both/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import './nodes.js'
SHOR_PER_QUANTA = 1000000000

// qrl-wallet Version
WALLET_VERSION = '1.7.1'
WALLET_VERSION = '1.7.2'

// qrl.proto sha256 sum for each release of QRL Node
QRLPROTO_SHA256 = [
Expand Down Expand Up @@ -222,6 +222,20 @@ QRLPROTO_SHA256 = [
objectSha256:
'7fe0b06018c4b455dcf45ee573d6307d470814d7fc469e735144959a034f1bce',
},
{
version: '2.1.2 python (null)',
protoSha256:
'0d70a3372c4668a1bf4fd42983ae01f2e0fb54b4030b808bbea78e5adadb23f0',
objectSha256:
'7fe0b06018c4b455dcf45ee573d6307d470814d7fc469e735144959a034f1bce',
},
{
version: '2.1.2 python',
protoSha256:
'0d70a3372c4668a1bf4fd42983ae01f2e0fb54b4030b808bbea78e5adadb23f0',
objectSha256:
'7fe0b06018c4b455dcf45ee573d6307d470814d7fc469e735144959a034f1bce',
},
// testnet public release
{
version: '0.2.0 python',
Expand Down
Loading

0 comments on commit 66cb3e7

Please sign in to comment.