From c3140f0b7880e58f0121c0aa87d9a74ca387636c Mon Sep 17 00:00:00 2001 From: satindergrewal Date: Tue, 2 Jan 2018 04:50:46 +1300 Subject: [PATCH] barterdex menu links updated for komodo platform --- private/mainmenu.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/private/mainmenu.js b/private/mainmenu.js index 07cbbdf..7d3cacb 100644 --- a/private/mainmenu.js +++ b/private/mainmenu.js @@ -91,12 +91,12 @@ const template = [ label: 'Support', submenu: [ { - label: 'Supernet.org', + label: 'komodoplatform.com', click () { if (process.platform === 'linux') { - require('child_process').exec('xdg-open http://support.supernet.org'); + require('child_process').exec('xdg-open https://www.komodoplatform.com'); } else { - shell.openExternal('http://support.supernet.org'); + shell.openExternal('https://www.komodoplatform.com'); } } }, @@ -104,9 +104,9 @@ const template = [ label: 'Slack', click () { if (process.platform === 'linux') { - require('child_process').exec('xdg-open https://sprnt.slack.com/messages/support'); + require('child_process').exec('xdg-open https://www.komodoplatform.com/en/slack-invite'); } else { - shell.openExternal('https://sprnt.slack.com/messages/support'); + shell.openExternal('https://www.komodoplatform.com/en/slack-invite'); } } }, @@ -114,9 +114,9 @@ const template = [ label: 'Github', click () { if (process.platform === 'linux') { - require('child_process').exec('xdg-open https://github.com/SuperNETorg/iguana/issues'); + require('child_process').exec('xdg-open https://github.com/KomodoPlatform/BarterDEX/issues'); } else { - shell.openExternal('https://github.com/SuperNETorg/iguana/issues'); + shell.openExternal('https://github.com/KomodoPlatform/BarterDEX/issues'); } } }