We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63bb080 commit 26f71e7Copy full SHA for 26f71e7
main.js
@@ -208,10 +208,26 @@ function getTemplate() {
208
label: '&Help',
209
role: 'help',
210
submenu: [
211
+ {
212
+ label: 'About AboutCode Manager',
213
+ click: function(item, focusedWindow) {
214
+ var win = new BrowserWindow({ frame: true, width: 250, height: 200 });
215
+ win.on('closed', function () { win = null });
216
+ win.loadURL('file://' + __dirname + '/about.html');
217
+ win.show();
218
+
219
+ },
220
221
222
+ type: 'separator'
223
224
{
225
label: `Version ${packageJson.version}`,
226
enabled: false
227
},
228
229
230
231
232
label: 'Learn More',
233
click: function() {
0 commit comments