diff --git a/app/src/electron.js b/app/src/electron.js index 3e80ef66e..a9b4a57f0 100644 --- a/app/src/electron.js +++ b/app/src/electron.js @@ -112,29 +112,30 @@ function buildMenu() { }, }, { - label: 'dbgate.org', + label: 'DbGate web', click() { electron.shell.openExternal('https://dbgate.org'); }, }, - { - label: 'DbGate on GitHub', - click() { - electron.shell.openExternal('https://github.com/dbgate/dbgate'); - }, - }, - { - label: 'DbGate on docker hub', - click() { - electron.shell.openExternal('https://hub.docker.com/r/dbgate/dbgate'); - }, - }, { label: 'Report problem or feature request', click() { electron.shell.openExternal('https://github.com/dbgate/dbgate/issues/new'); }, }, + { + label: 'Become sponsor', + click() { + electron.shell.openExternal('https://opencollective.com/dbgate'); + }, + }, + { + label: 'Discussions', + click() { + electron.shell.openExternal('https://github.com/dbgate/dbgate/discussions'); + }, + }, + { type: 'separator' }, commandItem('tabs.changelog'), commandItem('about.show'), ],