Skip to content

Commit

Permalink
Changed bug report url since gitreports is down
Browse files Browse the repository at this point in the history
  • Loading branch information
frodal committed May 6, 2022
1 parent b586075 commit aaf8278
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions GUI/src/javascript/mainmenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ const path = require('path');
const appName = app.name;
const appIconPath = path.join(__dirname, '../../assets/icons/png/512x512.png');
const appIcon = nativeImage.createFromPath(appIconPath);
const bugReportURL = 'https://gitreports.com/issue/frodal/FC-Taylor';
const LearnMoreURL = 'https://folk.ntnu.no/frodal/Cite/Projects/FC-Taylor.html'; // TODO: Change this to the Github page once it is public
const bugReportURL = LearnMoreURL; // TODO: Change this to the Github issues URL once it is public
const defaultLicenseString = 'Copyright (c) 2018-2022 Bjørn Håkon Frodal';
let licenseString = '';

Expand Down Expand Up @@ -53,7 +54,7 @@ function CreateMenu(template = [
},
{
label: 'Learn More',
click() { shell.openExternal('https://folk.ntnu.no/frodal/Cite/Projects/FC-Taylor.html') }
click() { shell.openExternal(LearnMoreURL) }
},
{
type: 'separator'
Expand Down

0 comments on commit aaf8278

Please sign in to comment.