feat/sidebar-socials: add socials to sidebar footer

This commit is contained in:
Guilherme Viana 2024-04-19 08:51:52 -03:00
parent 2893ff559f
commit 68e4612f47
13 changed files with 139 additions and 34 deletions

View file

@ -86,6 +86,7 @@ contextBridge.exposeInMainWorld("electron", {
ping: () => ipcRenderer.invoke("ping"),
getVersion: () => ipcRenderer.invoke("getVersion"),
getDefaultDownloadsPath: () => ipcRenderer.invoke("getDefaultDownloadsPath"),
openExternalUrl: (url: string) => ipcRenderer.invoke("openExternalUrl", url),
showOpenDialog: (options: Electron.OpenDialogOptions) =>
ipcRenderer.invoke("showOpenDialog", options),
platform: process.platform,