diff --git a/build/download-binaries.js b/build/download-binaries.js index 7bbfb62..0674629 100644 --- a/build/download-binaries.js +++ b/build/download-binaries.js @@ -15,7 +15,7 @@ async function download () { .map(asset => asset["browser_download_url"]) .find(url => { if (platform === "darwin") { - return url.includes("osx-x64-v6.0.2.zip") + return url.includes("osx-x64-v6.1.0.zip") } else if (platform === "win32") { return url.includes("win64") } diff --git a/package-lock.json b/package-lock.json index 8923cdc..774bf42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "arqma-electron-wallet", - "version": "3.0.3", + "version": "3.0.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b682348..1600c75 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "arqma-electron-wallet", - "version": "3.0.3", - "daemonVersion": "6.0.2", + "version": "3.0.4", + "daemonVersion": "6.1.0", "description": "Modern GUI interface for Arqma Currency", "productName": "Arqma Electron Wallet", "repository": { diff --git a/src-electron/main-process/modules/backend.js b/src-electron/main-process/modules/backend.js index dcb6459..98a9c1a 100644 --- a/src-electron/main-process/modules/backend.js +++ b/src-electron/main-process/modules/backend.js @@ -321,7 +321,7 @@ export class Backend { } if (path) { - const baseUrl = net_type === "testnet" ? "https://stageblocks.arqma.com/" : "https://explorer.arqma.com/" + const baseUrl = net_type === "testnet" ? "https://stageblocks.arqma.com" : "https://explorer.arqma.com" const url = `${baseUrl}/${path}/` require("electron").shell.openExternal(url + params.id) }