Skip to content

Commit

Permalink
fix: resource links in menus
Browse files Browse the repository at this point in the history
  • Loading branch information
Belar committed Nov 6, 2024
1 parent 5c391e8 commit 6699240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/process/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ module.exports = {
label: 'Source Code',
click: async () => {
const { shell } = require('electron')
await shell.openExternal('https://sudovanilla.com/code/Korbs/Penpot-Desktop/-/tree/main')
await shell.openExternal('https://github.com/author-more/penpot-desktop')
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions src/process/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ module.exports = {
ipcMain.on('MaximizeWindow', () => {mainWindow.maximize()})
ipcMain.on('UnmaximizeWindow', () => {mainWindow.restore()})
ipcMain.on('MinimizeWindow', () => {mainWindow.minimize()})
ipcMain.on('OpenHelp', () => {shell.openExternal('https://sudovanilla.com/docs/penpot-desktop/')})
ipcMain.on('OpenOffline', () => {shell.openExternal('https://sudovanilla.com/docs/penpot-desktop/features/offline-use/')})
ipcMain.on('OpenHelp', () => {shell.openExternal('https://github.com/author-more/penpot-desktop/wiki')})
ipcMain.on('OpenOffline', () => {shell.openExternal('https://github.com/author-more/penpot-desktop/wiki/Self%E2%80%90hosting')})

if (process.platform === 'darwin') {
// Move Tabs when entering or existing fullscreen on macOS
Expand Down

0 comments on commit 6699240

Please sign in to comment.