Skip to content

Commit f26a526

Browse files
committed
patch release
1 parent a7f0d59 commit f26a526

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chainguardian",
33
"productName": "ChainGuardian",
4-
"version": "0.7.0",
4+
"version": "0.7.1",
55
"description": "Eth2.0 desktop validator client",
66
"keywords": [
77
"eth2",
@@ -28,7 +28,7 @@
2828
"engines": {
2929
"node": "^12.4.0"
3030
},
31-
"homepage": "https://chainguardian.nodefactory.io",
31+
"homepage": "https://chainguardian.chainsafe.io/",
3232
"scripts": {
3333
"build-main": "cross-env NODE_ENV=production webpack --config webpack.main.prod.config.js",
3434
"build-renderer": "cross-env NODE_ENV=production webpack --config webpack.renderer.prod.config.js",

src/main/menu/menu.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ const template = [
2222
{
2323
label: "Homepage",
2424
click: async (): Promise<void> => {
25-
await shell.openExternal("https://chainguardian.nodefactory.io/");
25+
await shell.openExternal("https://chainguardian.chainsafe.io/");
2626
},
2727
},
2828
{
2929
label: "Discord",
3030
click: async (): Promise<void> => {
31-
await shell.openExternal("https://discord.gg/4GBwH52cFb");
31+
await shell.openExternal("https://discord.gg/ATcsRSN24v");
3232
},
3333
},
3434
...(isMac
@@ -90,7 +90,7 @@ const template = [
9090
{
9191
label: "Discord Support",
9292
click: async (): Promise<void> => {
93-
await shell.openExternal("https://discord.gg/uM9rZFDefm");
93+
await shell.openExternal("https://discord.gg/ATcsRSN24v");
9494
},
9595
},
9696
{

src/renderer/overlays/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {ipcRenderer} from "electron";
1212

1313
export const Overlays: React.FC = () => {
1414
const onDiscordClick = (): void => {
15-
shell.openExternal("https://discord.gg/uM9rZFDefm");
15+
shell.openExternal("https://discord.gg/ATcsRSN24v");
1616
};
1717

1818
const history = useHistory();

0 commit comments

Comments
 (0)