From 8221a022a38549031f4a31a12c069d3793832eaf Mon Sep 17 00:00:00 2001 From: wowario Date: Fri, 22 May 2020 08:55:47 +0300 Subject: [PATCH] rename to wowlite Signed-off-by: wowario --- .gitignore | 2 +- INSTALL.md | 2 +- src/main/binaries.js | 6 +++--- src/main/config.js | 2 +- src/main/wowrpc.js | 2 +- src/renderer/App.vue | 2 +- src/renderer/components/Landing/LandingPage.vue | 4 ++-- src/renderer/components/Landing/Settings.vue | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index de878e5..740b943 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,6 @@ npm-debug.log.* thumbs.db !.gitkeep .idea -wowlight +wowlite package-lock.json *.log diff --git a/INSTALL.md b/INSTALL.md index b92d809..290d544 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -30,7 +30,7 @@ make -j4 Use `light_patch.diff` that's included in this repository. Move resulting binary into the resources folder: ``` -cp build/release/bin/wownero-wallet-cli wowlight/resources/linux/bin/wowlight +cp build/release/bin/wownero-wallet-cli wowlite/resources/linux/bin/wowlite ``` Build the light wallet: diff --git a/src/main/binaries.js b/src/main/binaries.js index 2bb0b43..cf690b5 100644 --- a/src/main/binaries.js +++ b/src/main/binaries.js @@ -14,9 +14,9 @@ const execPath = IS_PROD ? const cli_binaries = { - 'linux': 'wowlight', - 'mac': 'wowlight', - 'win': 'wowlight.exe' + 'linux': 'wowlite', + 'mac': 'wowlite', + 'win': 'wowlite.exe' } export const cliPath = `${joinPath(execPath, cli_binaries[getPlatform()])}`; diff --git a/src/main/config.js b/src/main/config.js index de5c6ff..dd92866 100644 --- a/src/main/config.js +++ b/src/main/config.js @@ -3,7 +3,7 @@ const fs = require('fs'); export class Config { constructor(wowdir) { - this._path_cfg = `${wowdir}/wowlight.json`; + this._path_cfg = `${wowdir}/wowlite.json`; this.create(); this.data = this.load(); } diff --git a/src/main/wowrpc.js b/src/main/wowrpc.js index 17cc0e4..a57fdb2 100644 --- a/src/main/wowrpc.js +++ b/src/main/wowrpc.js @@ -11,7 +11,7 @@ export class WowRpc { constructor(wowdir, cli_path) { this._wowdir = wowdir; this._cli_process = null; - this._cli_log_path = path.join(os.tmpdir(), 'wowlight-wallet.log'); + this._cli_log_path = path.join(os.tmpdir(), 'wowlite-wallet.log'); if(!cli_path) { this._cli_path = cliPath; } else { diff --git a/src/renderer/App.vue b/src/renderer/App.vue index 9f95215..17446b0 100644 --- a/src/renderer/App.vue +++ b/src/renderer/App.vue @@ -47,7 +47,7 @@