Closed rgooding closed 2 months ago
@rgooding this is done here. I think what we can put in here is limited.
@mhmdkrmabd do you have any ideas on how we could line these both up. Could we use About in the menu bar to launch our about dialog?
eg (or something like that)
const { Menu } = require('electron');
const menuTemplate = [
{
label: 'Help',
submenu: [
{
label: 'About',
click: () => createAboutWindow()
}
]
}
];
const menu = Menu.buildFromTemplate(menuTemplate);
Menu.setApplicationMenu(menu);
See #83
@millerjp
The
About
dialog in an application is supposed to be just that - it tells you about the application, we seem to have missed that part when designing ours! The first thing I would expect to see when opening theAbout
dialog is something showing the name of the application, the company who produced it, the copyright year and most importantly the version number.