point help menu items to feishin instead of just electron (#767)
This commit is contained in:
parent
88a951e2e7
commit
cb76436a2a
1 changed files with 8 additions and 8 deletions
|
@ -147,27 +147,27 @@ export default class MenuBuilder {
|
||||||
submenu: [
|
submenu: [
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal('https://electronjs.org');
|
shell.openExternal('https://github.com/jeffvli/feishin');
|
||||||
},
|
},
|
||||||
label: 'Learn More',
|
label: 'Learn More',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal(
|
shell.openExternal(
|
||||||
'https://github.com/electron/electron/tree/main/docs#readme',
|
'https://github.com/jeffvli/feishin?tab=readme-ov-file#getting-started',
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
label: 'Documentation',
|
label: 'Documentation',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal('https://www.electronjs.org/community');
|
shell.openExternal('https://github.com/jeffvli/feishin/discussions');
|
||||||
},
|
},
|
||||||
label: 'Community Discussions',
|
label: 'Community Discussions',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal('https://github.com/electron/electron/issues');
|
shell.openExternal('https://github.com/jeffvli/feishin/issues');
|
||||||
},
|
},
|
||||||
label: 'Search Issues',
|
label: 'Search Issues',
|
||||||
},
|
},
|
||||||
|
@ -246,27 +246,27 @@ export default class MenuBuilder {
|
||||||
submenu: [
|
submenu: [
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal('https://electronjs.org');
|
shell.openExternal('https://github.com/jeffvli/feishin');
|
||||||
},
|
},
|
||||||
label: 'Learn More',
|
label: 'Learn More',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal(
|
shell.openExternal(
|
||||||
'https://github.com/electron/electron/tree/main/docs#readme',
|
'https://github.com/jeffvli/feishin?tab=readme-ov-file#getting-started',
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
label: 'Documentation',
|
label: 'Documentation',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal('https://www.electronjs.org/community');
|
shell.openExternal('https://github.com/jeffvli/feishin/discussions');
|
||||||
},
|
},
|
||||||
label: 'Community Discussions',
|
label: 'Community Discussions',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
click() {
|
click() {
|
||||||
shell.openExternal('https://github.com/electron/electron/issues');
|
shell.openExternal('https://github.com/jeffvli/feishin/issues');
|
||||||
},
|
},
|
||||||
label: 'Search Issues',
|
label: 'Search Issues',
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue