Skip to content

Commit f2b11f4

Browse files
committed
Add link to Github page
Closes #671
1 parent a3278ff commit f2b11f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NotepadNext/dialogs/MainWindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -706,9 +706,9 @@ MainWindow::MainWindow(NotepadNextApplication *app) :
706706
ui->actionAboutNotepadNext->setShortcut(QKeySequence::HelpContents);
707707
connect(ui->actionAboutNotepadNext, &QAction::triggered, this, [=]() {
708708
QMessageBox::about(this, QString(),
709-
QStringLiteral("<h3>%1 v%2%3</h3>"
709+
QStringLiteral("<h3>%1 v%2 %3</h3>"
710710
"<p>%4</p>"
711-
"<p>This program does stuff.</p>"
711+
"<p><a href=\"https://github.com/dail8859/NotepadNext\">Notepad Next Home Page</a></p>"
712712
R"(<p>This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.</p> <p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</p> <p>You should have received a copy of the GNU General Public License along with this program. If not, see &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</p>)")
713713
.arg(QApplication::applicationDisplayName(), APP_VERSION, APP_DISTRIBUTION, QStringLiteral(APP_COPYRIGHT).toHtmlEscaped()));
714714
});

0 commit comments

Comments
 (0)