From cea262ace4f6ac15e744f4d24677ed8d2538eeaf Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 7 Jul 2020 10:34:49 -0700 Subject: [PATCH 1/2] fix(gatsby-ipfs-web-wallet): Bumping version --- package-lock.json | 12 ++++++------ package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8a86311..d90f51f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20807,9 +20807,9 @@ } }, "gatsby-ipfs-web-wallet": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/gatsby-ipfs-web-wallet/-/gatsby-ipfs-web-wallet-1.1.1.tgz", - "integrity": "sha512-bhXhddzd2SjgTnzXek2FT+V90w79M9GmiWlBCpdz+xRpIXtj4SnRyw4C5ZZlVVXcftabjKw39DWfP3uYzlE2eA==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/gatsby-ipfs-web-wallet/-/gatsby-ipfs-web-wallet-1.1.4.tgz", + "integrity": "sha512-+akLqaJwv2D6gXeNK4xRaJNa5LafIo/WpdsyxZJmkuDfQkClr43ojgTKXoZHUkTCvkk2tMtLh1FQHCPEzvidPw==", "requires": { "adminlte-2-react": "^0.1.27", "gatsby": "^2.23.7", @@ -35721,9 +35721,9 @@ } }, "tar-stream": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.2.tgz", - "integrity": "sha512-UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.3.tgz", + "integrity": "sha512-Z9yri56Dih8IaK8gncVPx4Wqt86NDmQTSh49XLZgjWpGZL9GK9HKParS2scqHCC4w6X9Gh2jwaU45V47XTKwVA==", "requires": { "bl": "^4.0.1", "end-of-stream": "^1.4.1", diff --git a/package.json b/package.json index 3127628..085553a 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ }, "dependencies": { "gatsby": "^2.23.7", - "gatsby-ipfs-web-wallet": "^1.1.3" + "gatsby-ipfs-web-wallet": "^1.1.4" }, "repository": { "type": "git", From 230133ec79b9ecc926f6e7c22f4185d75ab617c1 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 7 Jul 2020 10:38:19 -0700 Subject: [PATCH 2/2] Adding site-config file --- .../components/site-config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/gatsby-ipfs-web-wallet/components/site-config.js diff --git a/src/gatsby-ipfs-web-wallet/components/site-config.js b/src/gatsby-ipfs-web-wallet/components/site-config.js new file mode 100644 index 0000000..60bbaf2 --- /dev/null +++ b/src/gatsby-ipfs-web-wallet/components/site-config.js @@ -0,0 +1,13 @@ +/* + This file is intended to be overwritten. It provides a common place to store + site configuration data. +*/ + +const config = { + title: 'Wallet Demo', + titleShort: 'Demo', + balanceText: 'BCH Balance', + balanceIcon: 'fab-bitcoin' +} + +module.exports = config