(zipPath, entryPath)
| 2565 | label: 'FAQ', |
| 2566 | click: async () => { |
| 2567 | await shell.openExternal('https://printventory.com/faq.html'); |
| 2568 | } |
| 2569 | }, |
| 2570 | { |
| 2571 | label: 'About', |
| 2572 | click: async () => { |
| 2573 | // Send event to renderer to open the about dialog |
| 2574 | mainWindow.webContents.send('open-about'); |
| 2575 | |
| 2576 | // Log for debugging |
| 2577 | console.log('About menu item clicked'); |
| 2578 | } |
| 2579 | }, |
| 2580 | { type: 'separator' }, |
| 2581 | { |
| 2582 | label: 'Discord', |
| 2583 | click: async () => { |
| 2584 | await shell.openExternal('https://discord.gg/JXcZHT77ua'); |
no outgoing calls
no test coverage detected