diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 43b522dd3..8a1669767 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -653,10 +653,6 @@ "message": "Go to Release Notes", "description": "" }, - "goToForums": { - "message": "Go to Forums", - "description": "Item under the Help menu, takes you to the forums" - }, "goToSupportPage": { "message": "Go to Support Page", "description": "Item under the Help menu, takes you to the support page" diff --git a/app/menu.js b/app/menu.js index 9c938700a..f690c5105 100644 --- a/app/menu.js +++ b/app/menu.js @@ -7,7 +7,6 @@ exports.createTemplate = (options, messages) => { const { includeSetup, - openForums, openNewBugForm, openReleaseNotes, openSupportPage, @@ -136,10 +135,6 @@ exports.createTemplate = (options, messages) => { { type: 'separator', }, - { - label: messages.goToForums.message, - click: openForums, - }, { label: messages.goToSupportPage.message, click: openSupportPage, diff --git a/main.js b/main.js index 253ba553c..510579edd 100644 --- a/main.js +++ b/main.js @@ -392,24 +392,20 @@ function createWindow() { function openReleaseNotes() { shell.openExternal( - `https://github.com/signalapp/Signal-Desktop/releases/tag/v${app.getVersion()}` + `https://github.com/loki-project/loki-messenger/releases/tag/v${app.getVersion()}` ); } function openNewBugForm() { - shell.openExternal('https://github.com/signalapp/Signal-Desktop/issues/new'); + shell.openExternal('https://github.com/loki-project/loki-messenger/issues/new'); } function openSupportPage() { shell.openExternal( - 'https://support.signal.org/hc/en-us/categories/202319038-Desktop' + 'https://loki-project.github.io/loki-docs/LokiServices/Messenger/' ); } -function openForums() { - shell.openExternal('https://community.signalusers.org/'); -} - function setupWithImport() { if (mainWindow) { mainWindow.webContents.send('set-up-with-import'); @@ -826,7 +822,6 @@ function setupMenu(options) { openReleaseNotes, openNewBugForm, openSupportPage, - openForums, platform, setupWithImport, setupAsNewDevice, diff --git a/test/app/fixtures/menu-mac-os-setup.json b/test/app/fixtures/menu-mac-os-setup.json index 980d26124..103a86a8a 100644 --- a/test/app/fixtures/menu-mac-os-setup.json +++ b/test/app/fixtures/menu-mac-os-setup.json @@ -186,10 +186,6 @@ { "type": "separator" }, - { - "label": "Go to Forums", - "click": null - }, { "label": "Go to Support Page", "click": null diff --git a/test/app/fixtures/menu-mac-os.json b/test/app/fixtures/menu-mac-os.json index 66d2d3f4d..9a32a57dd 100644 --- a/test/app/fixtures/menu-mac-os.json +++ b/test/app/fixtures/menu-mac-os.json @@ -173,10 +173,6 @@ { "type": "separator" }, - { - "label": "Go to Forums", - "click": null - }, { "label": "Go to Support Page", "click": null diff --git a/test/app/fixtures/menu-windows-linux-setup.json b/test/app/fixtures/menu-windows-linux-setup.json index e0551dc4a..f3b9058c1 100644 --- a/test/app/fixtures/menu-windows-linux-setup.json +++ b/test/app/fixtures/menu-windows-linux-setup.json @@ -125,10 +125,6 @@ { "type": "separator" }, - { - "label": "Go to Forums", - "click": null - }, { "label": "Go to Support Page", "click": null diff --git a/test/app/fixtures/menu-windows-linux.json b/test/app/fixtures/menu-windows-linux.json index 61366d03c..675bca005 100644 --- a/test/app/fixtures/menu-windows-linux.json +++ b/test/app/fixtures/menu-windows-linux.json @@ -114,10 +114,6 @@ { "type": "separator" }, - { - "label": "Go to Forums", - "click": null - }, { "label": "Go to Support Page", "click": null diff --git a/test/app/menu_test.js b/test/app/menu_test.js index a29a1838a..e84f8f115 100644 --- a/test/app/menu_test.js +++ b/test/app/menu_test.js @@ -46,7 +46,6 @@ describe('SignalMenu', () => { }, }; const options = { - openForums: null, openNewBugForm: null, openReleaseNotes: null, openSupportPage: null,