Prechádzať zdrojové kódy

Update to the new product name where possible

(without breaking auto-updates)
Manav Rathi 1 rok pred
rodič
commit
c73c674ee4
2 zmenil súbory, kde vykonal 3 pridanie a 3 odobranie
  1. 1 1
      desktop/src/main/init.ts
  2. 2 2
      desktop/src/main/menu.ts

+ 1 - 1
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));
 };
 

+ 2 - 2
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" },
                 ]),
             ],
         },