diff --git a/desktop/src/main/init.ts b/desktop/src/main/init.ts index 4ae187d212963183d7dab3ff257511de6118b1a9..c7d8435e81242713f4a01e63bdfc836e941df38b 100644 --- a/desktop/src/main/init.ts +++ b/desktop/src/main/init.ts @@ -94,7 +94,7 @@ export const setupTrayItem = (mainWindow: BrowserWindow) => { ); const trayIcon = nativeImage.createFromPath(trayImgPath); const tray = new Tray(trayIcon); - tray.setToolTip("Ente"); + tray.setToolTip("Ente Photos"); tray.setContextMenu(createTrayContextMenu(mainWindow)); }; diff --git a/desktop/src/main/menu.ts b/desktop/src/main/menu.ts index c6ac1688a3f3072b5eb7afdc6cf0e3ad109118d9..f6b37e9b003132efecc7a1232f60e7eb6bd759bc 100644 --- a/desktop/src/main/menu.ts +++ b/desktop/src/main/menu.ts @@ -53,7 +53,7 @@ export const createApplicationMenu = async (mainWindow: BrowserWindow) => { return Menu.buildFromTemplate([ { - label: "ente", + label: "Ente Photos", submenu: [ ...macOSOnly([ { @@ -155,7 +155,7 @@ export const createApplicationMenu = async (mainWindow: BrowserWindow) => { { type: "separator" }, { label: "Bring All to Front", role: "front" }, { type: "separator" }, - { label: "Ente", role: "window" }, + { label: "Ente Photos", role: "window" }, ]), ], },