Skip to content

Commit

Permalink
Bump version to latest daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
ArqTras committed Aug 21, 2020
1 parent bef4e42 commit 6e5fd88
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/download-binaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src-electron/main-process/modules/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 6e5fd88

Please sign in to comment.